8 inherit GObj.gtkobj_signals
9 constraint 'a = [>`data]
11 method disconnect_data : callback:(unit -> unit) -> GtkSignal.id
14 class adjustment_signals :
18 constraint 'a = [>`adjustment|`data]
20 method changed : callback:(unit -> unit) -> GtkSignal.id
21 method value_changed : callback:(unit -> unit) -> GtkSignal.id
24 class adjustment : Gtk.adjustment obj ->
27 val obj : Gtk.adjustment obj
28 method as_adjustment : Gtk.adjustment obj
29 method clamp_page : lower:float -> upper:float -> unit
30 method connect : adjustment_signals
31 method set_value : float -> unit
35 method step_increment : float
36 method page_increment : float
37 method page_size : float
44 ?page_incr:float -> ?page_size:float -> unit -> adjustment
46 val as_adjustment : adjustment -> Gtk.adjustment obj
52 val obj : Gtk.tooltips obj
53 method as_tooltips : Gtk.tooltips obj
54 method connect : data_signals
55 method disable : unit -> unit
56 method enable : unit -> unit
57 method set_delay : int -> unit
58 method set_tip : ?text:string -> ?privat:string -> GObj.widget -> unit
60 val tooltips : ?delay:int -> unit -> tooltips