[ruby-gnome2-doc-cvs] [Hiki] update - Gtk

Back to archive index

ruby-****@sourc***** ruby-****@sourc*****
2005年 2月 12日 (土) 02:41:34 JST


-------------------------
REMOTE_ADDR = 218.114.126.13
REMOTE_HOST = 
        URL = http://ruby-gnome2.sourceforge.jp/ja/?Gtk
-------------------------
  = Gtkモジュール
  Gtkモジュールはライブラリの初期化、メインイベントループ、イベントのような関数と一般的な定数を含みます。
  
  Ruby/GTKを使う前には、ウインドウシステムディスプレイへの接続の初期化と、いくつかの標準的なコマンドライン引数の構文解析を行う必要があります。
  Gtk.init関数はRuby/GTKを初期化します。
  他の全てのGUIツールキットのように
  Ruby/GTKはイベント駆動プログラミングモデルを用います。
  ユーザーが何もしなかった場合、Ruby/GTKはメインループに入り入力を待ちます。
  もし何らかのアクション(例えばマウスクリックのような)を行うとメインループは"目を覚ま"し、Ruby/GTKにイベントを届けます。
  Ruby/GTKは一つかそれ以上のウィジェットにイベントを転送します。
  
  ウィジェットがイベントを受け取ったとき、それらはしばしば一つかより多くのシグナルを発します。
  シグナルはあなたのプログラムに"何か興味深い出来事が起こったぞ"と、あなたがシグナルにGLib::Instantiable#signal_connectと共に関連付けたブロックを呼び出すことで通知します。
  ブロックはシグナルに関連付けられ、多くの場合コールバックと呼ばれます。
  
  あなたのコールバックが呼び出されたとき、通常は何らかのアクションをするでしょう。
  例えば、「開く」ボタンが押されたときGtk::FileSelectionDialogを表示するかも知れません。
  コールバックが終わった後、Ruby/GTKはメインループに戻りユーザーの次の入力を待ちます。
  
  == モジュール関数
  --- Gtk.set_locale
      GTK+に対する国際化サポートを初期化します。Gtk.initは自動的にこれを実行しますが、通常はこの関数を呼び出す意味はありません。
      もしあなたがGTK+が初期化された後でロケールを変更したいとしたら、この関数を呼ぶとわずかに助けになるかも知れません。(注記:しかしながらGTK+が初期化された後にロケールを変更することは、矛盾した結果を引き起こすかも知れず本来はサポート外です)
      正確には現在のロケールはプログラムの実行環境に従いセットされます。これはCライブラリ関数のsetlocale(LC_ALL, "")と同じですが、GDKを利用したウィンドウ・システムのある特定な設定をも配慮したものになっています。
      ((* Note *)):Ruby-GNOME2は恐らくこの関数を将来的にはサポートしません。なぜならsetlocaleはRubyにマッチしないからです。
      * 戻り値:ロケールの型に対応した文字列で、通常はlang_COUNTRYという形式です。langにはISO-639の文字コードが、COUNTRYにはISO-3166の国コードが入ります。Unixではこれはsetlocale()の結果と一致し、Windowsのような他のプラットフォームでもよく使われていますが、Cライブラリの場合は異なる結果を返します。この文字列はGTK+によって保持され、変更されたり解放されることはありません。 
  
  --- Gtk.disable_setlocale
      Gtk.initのsetlocale(LC_ALL, "")の呼び出しを防ぎます。あなたのプログラムをユーザーのロケールより別のロケールにセットしたい場合や、異なるロケールのカテゴリに異なる値を割り当てたい場合にこの関数を使いたくなるかも知れません。しかし、ほとんどのプログラムではこの関数を呼ぶ必要はないはずです。
      ((* Note *)):Ruby-GNOME2は恐らくこの関数を将来的にはサポートしません。なぜならsetlocaleはRubyにマッチしないからです。
      * 戻り値:nil
  
  --- Gtk.default_language
      今現在のデフォルトの言語に対するPango::Languageを返します。(これは一つのアプリケーションの実行中に切り替えることが可能なことに注意して下さい)デフォルトの言語は現在のロケールから生成されます。これは例えばGTK+が文字の方向が右から左か、左から右かを決定したりすることに使われます。Windows上での挙動についての_gtk_get_lc_ctype()に対する記述もご覧下さい。
      * 戻り値:デフォルトの言語のPango::Language
  
  --- Gtk.init(argv = ARGV)
      この関数をあなたのGUIアプリケーションの中で他のGTK+関数を呼び出す前に呼んでください。ツールキットを操作するために必要な全てを初期化し、標準的なコマンドライン引数を解析します。argvはそれにより調整され、結果的にあなた自身のコードからはそれらの標準的な引数は決して見えなくなります。
      
      注記:この関数は何らかの理由でGUIが初期化できなかった場合、RuntimeErrorを投げます。
      * argv:ARGVの値です。全てのパラメータはあなたのコードに戻る前に分解され、Gtk.initにより解釈されます。
      * 戻り値:self
  
  --- Gtk.events_pending?
      処理待ちのイベントがあるかチェックします。この関数はGUIの更新やタイムアウトの呼び出し等に用いることができます。例えば、しばらく重い処理を行うときは次のようにします。
  
        while (Gtk.events_pending?)
          Gtk.main_iteration
        end
  
      * 戻り値:処理待ちのイベントがある場合true、そうでない場合はfalse
  
  --- Gtk.main
      Gtk.main_quitが呼ばれるまでメインループを実行します。Gtk.mainの呼び出しはネストすることができます。
      その場合はGtk.main_quitは最も深くネストされたメインループの実行から戻ります。
      * 戻り値:nil
  
  --- Gtk.main_level
      メインループの現在のネストレベルを問い合わせます。これはGtk.quit_addを使う際に便利です。
      * 戻り値:現在実行中のメインループのネストレベル
  
  --- Gtk.main_quit
      コントロールを取り戻したいときに、最も深くネストされたメインループの実行から戻ります。
      * 戻り値:nil
  
  --- Gtk.main_iteration
      一度だけメインループ処理を行います。待機しているイベントが無かった場合、Gtk+は次のイベントが通知されるまでブロックします。もしブロックを望まないならばGtk.main_iteration_doを検討するか、まず最初にGtk.events_pending?で待機中のイベントがないかチェックして下さい。
      * 戻り値:Gtk.main_quitが最も深くネストされたメインループに対して呼ばれた場合true
  --- Gtk.main_iteration_do(blocking)
      一度だけメインループ処理を行います。待機しているイベントが無かった場合に戻るかブロックするかはblockingの値によります。
      * blocking:待機中のイベントが存在せず、GTK+がブロックして欲しいならばtrue 
      * 戻り値:Gtk.main_quitが最も深くネストされたメインループに対して呼ばれた場合true
  
  --- Gtk.main_do_event(event)
      GDKイベントを一つだけ実行します。これはGDKとGTK+の間にあるイベントのフィルタリングを可能にするだけのものです。通常は、この関数を直接呼ぶ必要はありませんが、どのようにイベントを正確に処理されているのかを知りたいと思うかも知れません。そのため、ここではこの関数がイベントを使って何をするかを説明します:
      (1) enter/leave通知イベントを押し込みます。引き渡されたイベントが(GDKから見た)次のイベントを使ってenter/leaveのペアを組み上げると、それらのイベントは両方とも破棄されます。これはポインタが交差するウィジェットを(非)強調表示するという余計な処理を避けるためのものです。
      (2) イベントを取得したウィジェットを検索します。そのようなウィジェットが見つからなければ、そのイベントは INCRトランザクションに入っていない限り破棄されます。そのような場合イベントは(GTK+の内部関数である)gtk_selection_incr_event()に渡されます。
      (3) それからイベントはスタックに積まれ、現在の処理対象のイベントをGtk.current_eventを使って問い合わせられるようになります。
      
      (4) イベントがウィジェットに送られます。グラブ (イベント受け入れ口) が、グラブウィジェット内に含まれないウィジェットに対する全てのイベントに有効ならば、イベントはいくつかの例外を除いて遅れて送信されます。その例外とは
          * 削除とdestruction(破壊)イベント。これらはその明白な理由より、上記にも関わらずイベントウィジェットに送信されます。
          * イベントウィジェットの視覚的な表現に直接関係するイベント。
          * イベントウィジェットにenterイベントが配送済みであり、且つそれのペアのleaveイベントが配送されていない場合のleaveイベント。これはそのウィジェットに対して配送されます。
          * ドラッグ関連のイベント。これはドラッグして結果的に何をするかがその時点では不明なために配送されません。
          他に重要な点として、全てのキーイベントは最初にキー押下感知関数を通して引き渡されるかもしれないことがあります。この機能が必要ならばGtk.key_snooper_installの記述をご覧下さい。
      (5) イベントの配送が終了した後、イベントスタックから一つ取り出されます。
      * event:GDKによって渡された(普通に)処理されるGdk::Event
  
  --- Gtk.current_event
      現在GTK+によって処理されているイベントのコピーを取得します。例えばGtk::Buttonから"clicked"シグナルを得た場合、現在のイベントは"clicked"シグナルを始動させたGdk::EventButtonになります。もし現在のイベントが無ければこの関数はnilを返します。
      * 戻り値:現在のイベントのコピー。現在のイベントが無ければnil
  
  --- Gtk.grab_add(widget)
      widgetを処理の対象となるべきウィジェットにします。これは同じアプリケーションの中で他のウィジットと相互に作用することを止め、キーボードのイベントの他にマウスのイベントもこのwidgetに配送されることを意味しています。
      * widget:キーボードとポインタのイベントを受け取るウィジェット
      * 戻り値:nil
  
  --- Gtk.current
      現在のイベントの受け入れ口(grab)を問い合わせます。
      * 戻り値:現在のイベント受け入れ口(grab)。有効なものがなければnil
  
  --- Gtk.grab_remove(widget)
      指定したウィジェットからイベント受け入れ口(grab)を取り除きます。Gtk.grab_addとGtk.grab_removeは対で呼び出して下さい。
      * widget:イベント受け入れ口(grab)を剥奪するウィジェット
      * 戻り値:nil
  
  --- Gtk.init_add { ... }
      メインループが開始したら呼び出されるブロックを登録します。
      * { ... }:Gtk.mainが次に呼び出されたとき、呼び出されるブロック
      * 戻り値:nil
  
  --- Gtk.quit_add(main_level) { ... }
      メインループのインスタンスが無くなったときに呼び出されるブロックを登録します。
      * main_level:関数が呼び出されて終了するメインループのレベル。0を指定すると、現在処理中のメインループが終了する際に呼び出される関数になる。
      * { ... }:呼び出すブロック。これは終了ハンドラの一覧から削除されたことを意味するtrueを戻さなければならない。それ以外の戻り値は、この関数が再び呼び出されることを意味する。
      * 戻り値:この終了ハンドラに対する(Gtk.quit_removeを呼び出す際に必要となる)ハンドルID
  
  --- Gtk.quit_remove(handler_id)
      終了ハンドラの識別子を使って、終了ハンドラを削除します。
      * handler_id:ハンドラを登録した際に返される識別子
      * 戻り値:handler_id
  
  --- Gtk.timeout_add(interval){ ... }
      周期的に呼び出されるブロックをセットします。これはデフォルトの優先度ではGLib::PRIORITY_DEFAULTです。このブロックは繰り返し呼ばれますが、タイムアウトが自動的に破棄された時点で呼ばれなくなりfalseを返します。ブロックに対する最初の呼び出しは最初の待ち時間の終わりで行われます。
      タイムアウト時の動作は他のイベントソースの処理のために遅れるかもしれないことに注意して下さい。従って、正確なタイミングをそれに頼るべきではありません。次のタイムアウト時間は毎回のタイムアウト動作の呼び出し後に、現在の時刻と与えられたintervalを元に再計算されます。(遅延によって失われた時間を'補正する'ことは試みません)
      * interval:ブロックが呼ばれる時間間隔で、単位はミリセカンド(1/1000秒)
      * { ... }:呼ばれるブロック
      * 戻り値:イベントソースのtimeout_handler_id
  
  --- Gtk.timeout_remove(timeout_handler_id)
      与えられたタイムアウト処理の全ての情報を破壊して削除します。
      * timeout_handler_id:タイムアウト処理を登録した際に返される識別子
      * 戻り値:nil
  
  --- Gtk.idle_add { ... }
      処理すべき優先度が高いイベントが無いときは、常にメインループ中で与えられたブロックを呼び出します。デフォルトの優先度はGLib::PRIORITY_DEFAULTで、やや低いものとなります。
      * { ... }:呼ばれるブロック
      * 戻り値:この登録に対しての一意なハンドル
  
  --- Gtk.idle_add_priority(priority) { ... }
-     Like Gtk.idle_add this function allows you to have a function called when the event loop is idle. The difference is that you can give a priority different from GLib::PRIORITY_DEFAULT to the idle function. 
-     * priority: The priority which should not be above GLib::PRIORITY_HIGH_IDLE. Note that you will interfere with GTK+ if you use a priority above Gtk::PRIORITY_RESIZE.  
+     Gtk.idle_addのように、この関数はイベントループがアイドル状態になったら呼び出すブロックを登録します。Gtk.idle_addとの違いはGLib::PRIORITY_DEFAULTと異なる優先度をアイドル時に呼び出されるブロックに設定できることです。
+     * priority:GLib::PRIORITY_HIGH_IDLEより高くない優先度。Gtk::PRIORITY_RESIZEより高い優先度を使う場合はGTK+を使ってインタフェースを作成する必要があることに注意。
  
  --- Gtk.idle_remove(idle_handler_id)
-     Removes the idle function with the given id. 
-     * idle_handler_id: Identifies the idle function to remove.  
-     * Returns: nil
+     指定した識別子のアイドル時に動作するブロックを削除します。
+     * idle_handler_id:削除するアイドルブロックの識別子
+     * 戻り値:nil
  
  --- Gtk.key_snooper_install {|grab_widget, event| ... }
-     Installs a key snooper block, which will get called on all key events before delivering them normally. 
-     * {|grab_widget, event| ... }: a key snooper block which called before normal event delivery. They can be used to implement custom key event handling. 
-       * grab_widget: the widget to which the event will be delivered.  
-       * event: the key event(Gdk::EventKey).  
-       * Returns: true to stop further processing of event, false to continue.  
-     * Returns: a unique id for this key snooper for use with Gtk.key_snooper_remove.  
+     全てのキーイベントが通常の配送先に届けられる前に呼び出されるキースヌーパー(覗き見)ブロックを登録します。
+     * {|grab_widget, event| ... }:通常のイベントが配送される前に呼び出されるキースヌーパーブロックです。これはよくカスタムキーイベント処理を実装するために用いられます。
+       * grab_widget:イベントが配送されるウィジェット
+       * event:覗き見たキーイベント(Gdk::EventKey)
+       * 戻り値:イベントの処理をさらに続けるならfalse、停止するならtrueを返さなければならない
+     * 戻り値;Gtk.key_snooper_removeで使う、このキースヌーパーに固有なID
  
  --- Gtk.key_snooper_remove(handler_id)
-     Removes the key snooper function with the given id. 
-     * handler_id: Identifies the key snooper to remove
+     与えられたIDに対応するキースヌーパー(覗き見)ブロックを取り除きます。
+     * handler_id:取り除かれるキースヌーパーの識別子
  
  --- Gtk.current_event
      Obtains a copy of the event currently being processed by GTK+. For example, if you get a "clicked" signal from Gtk::Button, the current event will be the Gdk::EventButton that triggered the "clicked" signal. If there is no current event, the function returns nil.
      * Returns: a copy of the current event, or nil if no current event.  
  
  --- Gtk.current_event_time
-     If there is a current event and it has a timestamp, return that timestamp, otherwise return Gdk::Event::CURRENT_TIME.
-     * Returns: the timestamp from the current event, or Gdk::Event::CURRENT_TIME.  
+     現在イベントが存在し、タイムスタンプを持つときそのタイムスタンプを返します。そうでなければGdk::Event::CURRENT_TIMEを返します。
+     * 戻り値:現在のイベントのタイムスタンプ。またはGdk::Event::CURRENT_TIME
  
  --- Gtk.current_event_state
      If there is a current event and it has a state field, return the state, otherwise return nil.
      * Returns: the state of the current event(((<GdkModifierType|Gdk::Window::GdkModifierType>))) or nil.
  
  --- Gtk.get_event_widget(event = nil)
      If event is nil or the event was not associated with any widget, returns nil, otherwise returns the widget that received the event originally.
      * event: a Gdk::Event  
      * Returns: the widget that originally received event, or nil  
  
  --- Gtk.propagate_event(widget, event)
      Sends an event to a widget, propagating the event to parent widgets if the event remains unhandled. Events received by GTK+ from GDK normally begin in Gtk.main_do_event. Depending on the type of event, existence of modal dialogs, grabs, etc., the event may be propagated; if so, this function is used. Gtk.propagate_event calls Gtk::Widget#event on each widget it decides to send the event to. So Gtk::Widget#event is the lowest-level function; it simply emits the "event" and possibly an event-specific signal on a widget. Gtk.propagate_event is a bit higher-level, and Gtk.main_do_event is the highest level. 
      All that said, you most likely don't want to use any of these functions; synthesizing events is rarely needed. Consider asking on the mailing list for better ways to achieve your goals. For example, use gdk_window_invalidate_rect() or gtk_widget_queue_draw() instead of making up expose events.
      * widget: a Gtk::Widget  
      * event: an Gdk::Event  
  
  --- Gtk.check_version(required_major, required_minor, required_micro)
      Checks that the GTK+ library in use is compatible with the given version. Generally you would pass in the constants Gtk::MAJOR_VERSION, Gtk::MINOR_VERSION, Gtk::MICRO_VERSION as the three arguments to this function; that produces a check that the library in use is compatible with the version of GTK+ the application or module was compiled against.
      Compatibility is defined by two things: first the version of the running library is newer than the version required_major.required_minor.required_micro. Second the running library must be binary compatible with the version required_major.required_minor.required_micro (same major version.)
      This function is primarily for GTK+ modules; the module can call this function to check that it wasn't loaded into an incompatible version of GTK+. However, such a a check isn't completely reliable, since the module may be linked against an old version of GTK+ and calling the old version of Gtk.check_version, but still get loaded into an application using a newer version of GTK+.
      * required_major: the required major version.
      * required_minor: the required major version.
      * required_micro: the required major version.
      * Returns: nil if the GTK+ library is compatible with the given version, or a string describing the version mismatch. 
  
  --- Gtk.check_version?(required_major, required_minor, required_micro)
      Same as Gtk.check_version, but returns true if the library is compatible with the given version, otherwise false.
      * required_major: the required major version.
      * required_minor: the required major version.
      * required_micro: the required major version.
      * Returns: true if the library is compatible with the given version, otherwise false.   
  
  == Constants
  === GtkAccelFlags
  --- ACCEL_VISIBLE
      = 1 << 0
  --- ACCEL_LOCKED
      = 1 << 1
  --- ACCEL_MASK
      = 0x07
  
  === GtkAnchorType
  --- ANCHOR_CENTER
  --- ANCHOR_NORTH
  --- ANCHOR_NORTH_WEST
  --- ANCHOR_NORTH_EAST
  --- ANCHOR_SOUTH
  --- ANCHOR_SOUTH_WEST
  --- ANCHOR_SOUTH_EAST
  --- ANCHOR_WEST
  --- ANCHOR_EAST
  --- ANCHOR_N
          = ANCHOR_NORTH
  --- ANCHOR_NW
          = ANCHOR_NORTH_WEST
  --- ANCHOR_NE
          = ANCHOR_NORTH_EAST
  --- ANCHOR_S
          = ANCHOR_SOUTH
  --- ANCHOR_SW
          = ANCHOR_SOUTH_WEST
  --- ANCHOR_SE
          = ANCHOR_SOUTH_EAST
  --- ANCHOR_W
          = ANCHOR_WEST
  --- ANCHOR_E
          = ANCHOR_EAST
  
  === GtkAttachOptions
  Denotes the expansion properties that a widget will have when it (or it's parent) is resized. 
  --- EXPAND
      = 1 << 0. The widget should expand to take up any extra space in its container that has been allocated.  
  --- SHRINK
      = 1 << 1. The widget should shrink as and when possible.  
  --- FILL
      = 1 << 2. The widget should fill the space allocated to it. 
  
  === GtkCornerType
  Specifies which corner a child widget should be placed in when packed into a Gtk::ScrolledWindow. This is effectively the opposite of where the scroll bars are placed. 
  --- CORNER_TOP_LEFT
         Place the scrollbars on the right and bottom of the widget (default behaviour).
  --- CORNER_BOTTOM_LEFT
         Place the scrollbars on the top and right of the widget. 
  --- CORNER_TOP_RIGHT
         Place the scrollbars on the left and bottom of the widget.
  --- CORNER_BOTTOM_RIGHT
         Place the scrollbars on the top and left of the widget.
  
  === GtkDeleteType
  --- DELETE_CHARS
  --- DELETE_WORD_ENDS
         delete only the portion of the word to the left/right of cursor if we're in the middle of a word.
  --- DELETE_WORDS
  --- DELETE_DISPLAY_LINES
  --- DELETE_DISPLAY_LINE_ENDS
  --- DELETE_PARAGRAPH_ENDS
         like C-k in Emacs (or its reverse)
  --- DELETE_PARAGRAPHS
         C-k in pico, kill whole line
  --- DELETE_WHITESPACE
          M-\ in Emacs
  
  === GtkDirectionType
  --- DIR_TAB_FORWARD
  --- DIR_TAB_BACKWARD
  --- DIR_UP
  --- DIR_DOWN
  --- DIR_LEFT
  --- DIR_RIGHT
  
  === GtkExpanderStyle
  Used to specify the style of the expanders drawn by a Gtk::TreeView. 
  --- EXPANDER_COLLAPSED
      The style used for a collapsed subtree. 
  --- EXPANDER_SEMI_COLLAPSED
      Intermediate style used during animation.
  --- EXPANDER_SEMI_EXPANDED
      Intermediate style used during animation.
  --- EXPANDER_EXPANDED
      The style used for an expanded subtree.  
  
  
  === GtkIMPreeditStyle
  --- IM_PREEDIT_NOTHING
  --- IM_PREEDIT_CALLBACK
  
  === GtkIMStatusStyle
  --- IM_STATUS_NOTHING
  --- IM_STATUS_CALLBACK
  
  === GtkJustification
  Used for justifying the text inside a Gtk::Label widget. (See also Gtk::Alignment). 
  --- JUSTIFY_LEFT
         The text is placed at the left edge of the label.
  --- JUSTIFY_RIGHT
         The text is placed at the right edge of the label. 
  --- JUSTIFY_CENTER
         The text is placed in the center of the label. 
  --- JUSTIFY_FILL
         The text is placed is distributed across the label.
  
  === GtkMetricType
  Used to indicate which metric is used by a Gtk::Ruler. 
  --- PIXELS
  --- INCHES
  --- CENTIMETERS
  
  === GtkMovementStep
  --- MOVEMENT_LOGICAL_POSITIONS 
         move by forw/back graphemes 
  --- MOVEMENT_VISUAL_POSITIONS  
         move by left/right graphemes 
  --- MOVEMENT_WORDS                
         move by forward/back words 
  --- MOVEMENT_DISPLAY_LINES      
         move up/down lines (wrapped lines) 
  --- MOVEMENT_DISPLAY_LINE_ENDS 
         move up/down lines (wrapped lines) 
  --- MOVEMENT_PARAGRAPHS          
         move up/down paragraphs (newline-ended lines) 
  --- MOVEMENT_PARAGRAPH_ENDS     
         move to either end of a paragraph 
  --- MOVEMENT_PAGES
         move by pages 
  --- MOVEMENT_BUFFER_ENDS        
         move to ends of the buffer 
  --- MOVEMENT_HORIZONTAL_PAGES   
         move horizontally by pages 
  
  === GtkOrientation
  Represents the orientation of widgets which can be switched between horizontal and vertical orientation on the fly, like Gtk::Toolbar. 
  --- ORIENTATION_HORIZONTAL
      The widget is in horizontal orientation.
  --- ORIENTATION_VERTICAL
      The widget is in vertical orientation.  
  
  === GtkPackType
  Represents the packing location Gtk::Box children. (See: Gtk::VBox, Gtk::HBox, and Gtk::ButtonBox). 
  --- PACK_START
         The child is packed into the start of the box
  --- PACK_END
         The child is packed into the end of the box  
  
  === GtkPathPriorityType
  --- PATH_PRIO_LOWEST
      = 0
  --- PATH_PRIO_GTK
      = 4
  --- PATH_PRIO_APPLICATION
      = 8
  --- PATH_PRIO_THEME
      = 10
  --- PATH_PRIO_RC
      = 12
  --- PATH_PRIO_HIGHEST
      = 15
  
  === GtkPathType
  --- PATH_WIDGET
  --- PATH_WIDGET_CLASS
  --- PATH_CLASS
  
  === GtkPolicyType
  Determines when a scroll bar will be visible. 
  --- POLICY_ALWAYS
         The scrollbar is always visible.
  --- POLICY_AUTOMATIC
         The scrollbar will appear and disappear as necessary. 
  --- POLICY_NEVER
         The scrollbar will never appear. 
  
  === GtkPositionType
  Describes which edge of a widget a certain feature is positioned at, e.g. the tabs of a Gtk::Notebook, the handle of a Gtk::HandleBox or the label of a Gtk::Scale. 
  --- POS_LEFT
      The feature is at the left edge.
  --- POS_RIGHT
      The feature is at the right edge. 
  --- POS_TOP
      The feature is at the top edge. 
  --- POS_BOTTOM
      The feature is at the bottom edge. 
  
  === GtkReliefStyle
  Indicated the relief to be drawn around a Gtk::Button. 
  --- RELIEF_NORMAL
      Draw a normal relief.
  --- RELIEF_HALF
      A half relief. 
  --- RELIEF_NONE
      No relief. 
  
  === GtkResizeMode
  --- RESIZE_PARENT		
      Pass resize request to the parent 
  --- RESIZE_QUEUE		
      Queue resizes on this widget 
  --- RESIZE_IMMEDIATE		
      Perform the resizes now 
  
  === GtkScrollType
  --- SCROLL_NONE
  --- SCROLL_JUMP
  --- SCROLL_STEP_BACKWARD
  --- SCROLL_STEP_FORWARD
  --- SCROLL_PAGE_BACKWARD
  --- SCROLL_PAGE_FORWARD
  --- SCROLL_STEP_UP
  --- SCROLL_STEP_DOWN
  --- SCROLL_PAGE_UP
  --- SCROLL_PAGE_DOWN
  --- SCROLL_STEP_LEFT
  --- SCROLL_STEP_RIGHT
  --- SCROLL_PAGE_LEFT
  --- SCROLL_PAGE_RIGHT
  --- SCROLL_START
  --- SCROLL_END
  
  === GtkSelectionMode
  Used to control what selections users are allowed to make. 
  --- SELECTION_NONE
      No selection is possible. 
  --- SELECTION_SINGLE
      Zero or one element may be selected. 
  --- SELECTION_BROWSE
      Exactly one element is selected. In some circumstances, such as initially or during a search operation, it's possible for no element to be selected with Gtk::SELECTION_BROWSE. What is really enforced is that the user can't deselect a currently selected element except by selecting another element. 
  --- SELECTION_MULTIPLE
      Any number of elements may be selected. Clicks toggle the state of an item. Any number of elements may be selected. Click-drag selects a range of elements; the Ctrl key may be used to enlarge the selection, and Shift key to select between the focus and the child pointed to. 
  
  === GtkShadowType
  Used to change the appearance of an outline typically provided by a Gtk::Frame. 
  --- SHADOW_NONE
         No outline.
  --- SHADOW_IN
         The outline is bevelled inwards.
  --- SHADOW_OUT
         The outline is bevelled outwards like a button. 
  --- SHADOW_ETCHED_IN
         The outline itself is an inward bevel, but the frame does
  --- SHADOW_ETCHED_OUT
  
  
  === GtkStateType
  This type indicates the current state of a widget; the state determines how the widget is drawn. The GtkStateType is also used to identify different colors in a Gtk::Style for drawing, so states can be used for subparts of a widget as well as entire widgets. 
  --- STATE_NORMAL
         State during normal operation.
  --- STATE_ACTIVE
         State of a currently active widget, such as a depressed button. 
  --- STATE_PRELIGHT
         State indicating that the mouse pointer is over the widget and the widget will respond to mouse clicks. 
  --- STATE_SELECTED
         State of a selected item, such the selected row in a list. 
  --- STATE_INSENSITIVE
         State indicating that the widget is unresponsive to user actions.  
  
  === GtkUpdateType
  --- UPDATE_CONTINUOUS
  --- UPDATE_DISCONTINUOUS
  --- UPDATE_DELAYED
  
  === GtkVisibility
  --- VISIBILITY_NONE
      The row is not visible.
  --- VISIBILITY_PARTIAL
      The row is partially visible.
  --- VISIBILITY_FULL
      The row is fully visible. 
  
  === GtkSortType
  Determines the direction of a sort. 
  --- SORT_ASCENDING
      Sorting is in ascending order. 
  --- SORT_DESCENDING
      Sorting is in descending order.
  
  - ((<Masao>))





ruby-gnome2-cvs メーリングリストの案内
Back to archive index