-lablgtkmathview (0.7.3-3) unstable; urgency=low
+lablgtkmathview (0.7.8-1) unstable; urgency=low
+ * add ocamldoc comments to .mli interface files
* debian/control
- port Vcs-Svn field to the new syntax
- add XS-Vcs-Browser field pointing to HELM's repository browser
* debian/rules
- enable ocamldoc api reference generation (via CDBS)
- -- Stefano Zacchiroli <zack@debian.org> Sat, 08 Sep 2007 11:53:07 +0200
+ -- Stefano Zacchiroli <zack@debian.org> Sat, 08 Sep 2007 12:10:44 +0200
lablgtkmathview (0.7.3-2) experimental; urgency=low
* For details, send a mail to the authors.
*)
+(** {1 Main interface to LablGtkMathView} *)
+
exception ErrorLoadingFile of string
exception ErrorWritingFile of string
exception ErrorLoadingDOM
+(** {2 Standard classes} *)
+
+(** Signals emitted by GtkMathView widgets *)
class math_view_signals :
([> `gtk | `mathview_gmetadom | `widget] as 'b) Gtk.obj ->
object ('a)
callback:(unit -> unit) -> GtkSignal.id
end
+(** GtkMathView core methods *)
class math_view_skel :
(Gtk_mathview.math_view Gtk.obj as 'a)->
object
method unselect : Gdome.element -> unit
end
+(** GtkMathView standard class *)
class math_view :
Gtk_mathview.math_view Gtk.obj ->
object
method connect : math_view_signals
end
+(** {2 Constructors} *)
+
+(** math_view constructor *)
val math_view :
?hadjustment:GData.adjustment ->
?vadjustment:GData.adjustment ->
?height:int ->
?packing:(GObj.widget -> unit) -> ?show:bool -> unit -> math_view
-(** {2 Global configuration for all math_view instances *)
+(** {2 Global configuration for all math_view instances} *)
(** @param fname file name to be added to the list of configuration files read
* at initialization time.
* For details, send a mail to the authors.
*)
+(** {1 Selection-enabled GtkMathView classes} *)
+
+(** {2 Single-selection} *)
+
+(** signals *)
class single_selection_math_view_signals :
([> `gtk | `mathview_gmetadom | `widget] as 'b) Gtk.obj ->
((Gdome.element option -> unit) -> unit) ->
method selection_changed : (Gdome.element_of_node option -> unit) -> unit
end
+(** main class *)
class single_selection_math_view :
Gtk_mathview.math_view Gtk.obj ->
object
method action_toggle : Gdome.element -> bool
end
+(** single_selection_math_view constructor *)
val single_selection_math_view :
?hadjustment:GData.adjustment ->
?vadjustment:GData.adjustment ->
unit ->
single_selection_math_view
+(** {2 Multiple-selection} *)
+
+(** main class, extends single_selection_math_view *)
class multi_selection_math_view :
Gtk_mathview.math_view Gtk.obj ->
object
method get_selections : Gdome.element list
end
+(** multi_selection_math_view constructor *)
val multi_selection_math_view :
?hadjustment:GData.adjustment ->
?vadjustment:GData.adjustment ->