ruby-****@sourc*****
ruby-****@sourc*****
2005年 10月 19日 (水) 14:09:23 JST
------------------------- REMOTE_ADDR = 202.214.246.94 REMOTE_HOST = REMOTE_USER = ruby-gnome2-hiki URL = /ja/hiki.cgi?Gtk%3A%3AScrolledWindow ------------------------- @@ -8,13 +8,17 @@ これらのウィジェットは Gtk::Adjustment を“スロット”として持っています。 Gtk::TreeView, Gtk::TextView, Gtk::Layout が該当します。 + この場合、これらのウィジェットは Gtk::Container#add メソッドで Gtk::ScrolledWindow の子ウィジェットとして + 登録できます。 * ウィジェット自体では、スクロールをサポートしていないもの この場合、アダプタークラスとして Gtk::Viewport を使い、スクロールを実現します。 Gtk::Table, Gtk::Box 等が該当します。 - -If a widget has native scrolling abilities, it can be added to the Gtk::ScrolledWindow with Gtk::Container#add. If a widget does not, you must first add the widget to a Gtk::Viewport, then add the Gtk::Viewport to the scrolled window. The convenience method Gtk::ScrolledWindow#add_with_viewport does exactly this, so you can ignore the presence of the viewport. + まず、Gtk::Viewport をこれらのウィジェットに追加し、スクロールがサポートされるようにします。 + この後、上記と同様に、 Gtk::Container#add メソッドで Gtk::ScrolledWindow の子ウィジェットとして + 登録します。ここで、Gtk::ScrolledWindow#add_with_viewport メソッドを使えば、Gtk::Viewport を + 意識することもないでしょう。 The position of the scrollbars is controlled by the scroll adjustments. See Gtk::Adjustment for the fields in an adjustment - for Gtk::Scrollbar, used by Gtk::ScrolledWindow, the "value" field represents the position of the scrollbar, which must be between the "lower" field and "upper - page_size." The "page_size" field represents the size of the visible scrollable area. The "step_increment" and "page_increment" fields are used when the user asks to step down (using the small stepper arrows) or page down (using for example the PageDown key).