6 class ['a] window_skel : 'b obj ->
8 inherit GContainer.container
9 constraint 'a = 'a #window_skel
10 constraint 'b = [>`widget|`container|`window]
12 method activate_default : unit -> unit
13 method activate_focus : unit -> unit
14 method add_accel_group : accel_group -> unit
15 method event : event_ops
16 method as_window : Gtk.window obj
17 method set_allow_grow : bool -> unit
18 method set_allow_shrink : bool -> unit
19 method set_auto_shrink : bool -> unit
20 method set_default_size : width:int -> height:int -> unit
21 method set_modal : bool -> unit
22 method set_position : Tags.window_position -> unit
23 method set_resize_mode : Tags.resize_mode -> unit
24 method set_title : string -> unit
25 method set_transient_for : 'a -> unit
26 method set_wm_class : string -> unit
27 method set_wm_name : string -> unit
28 method show : unit -> unit
31 class window : [>`window] obj ->
33 inherit [window] window_skel
34 val obj : Gtk.window obj
35 method connect : GContainer.container_signals
38 ?kind:Tags.window_type ->
42 ?position:Tags.window_position ->
50 ?width:int -> ?height:int -> ?show:bool -> unit -> window
52 class dialog : [>`dialog] obj ->
54 inherit [window] window_skel
55 val obj : Gtk.dialog obj
56 method action_area : GPack.box
57 method connect : GContainer.container_signals
58 method event : event_ops
59 method vbox : GPack.box
65 ?position:Tags.window_position ->
73 ?width:int -> ?height:int -> ?show:bool -> unit -> dialog
75 class color_selection_dialog : Gtk.color_selection_dialog obj ->
77 inherit [window] window_skel
78 val obj : Gtk.color_selection_dialog obj
79 method cancel_button : GButton.button
80 method colorsel : GMisc.color_selection
81 method connect : GContainer.container_signals
82 method help_button : GButton.button
83 method ok_button : GButton.button
85 val color_selection_dialog :
89 ?position:Tags.window_position ->
97 ?width:int -> ?height:int -> ?show:bool -> unit -> color_selection_dialog
99 class file_selection : Gtk.file_selection obj ->
101 inherit [window] window_skel
102 val obj : Gtk.file_selection obj
103 method cancel_button : GButton.button
104 method connect : GContainer.container_signals
105 method get_filename : string
106 method help_button : GButton.button
107 method ok_button : GButton.button
108 method set_filename : string -> unit
109 method set_fileop_buttons : bool -> unit
114 ?fileop_buttons:bool ->
117 ?position:Tags.window_position ->
118 ?allow_shrink:bool ->
125 ?width:int -> ?height:int -> ?show:bool -> unit -> file_selection
127 class font_selection_dialog : Gtk.font_selection_dialog obj ->
129 inherit [window] window_skel
130 val obj : Gtk.font_selection_dialog obj
131 method apply_button : GButton.button
132 method cancel_button : GButton.button
133 method connect : GContainer.container_signals
134 method selection : GMisc.font_selection
135 method ok_button : GButton.button
137 val font_selection_dialog :
141 ?position:Tags.window_position ->
142 ?allow_shrink:bool ->
149 ?width:int -> ?height:int -> ?show:bool -> unit -> font_selection_dialog
151 class plug : Gtk.plug obj -> window
156 ?width:int -> ?height:int -> ?show:bool -> unit -> plug