]> matita.cs.unibo.it Git - helm.git/commitdiff
* add ocamldoc comments to .mli interface files
authorStefano Zacchiroli <zack@upsilon.cc>
Sat, 8 Sep 2007 10:11:43 +0000 (10:11 +0000)
committerStefano Zacchiroli <zack@upsilon.cc>
Sat, 8 Sep 2007 10:11:43 +0000 (10:11 +0000)
DEVEL/lablgtkmathview/debian/changelog
DEVEL/lablgtkmathview/gMathView.mli
DEVEL/lablgtkmathview/gMathViewAux.mli

index c2107bea71e52891bb11d4a3442e5e94e4280e99..91003c55a3a284e6ad6d31557346e7417184e2c7 100644 (file)
@@ -1,12 +1,13 @@
-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
 
index d116c527d8f9077d2197999ae22b1094c69c44d0..08299209185e8f1da5aa8696fdc8fc11f0670c48 100644 (file)
  * 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)
@@ -48,6 +53,7 @@ class math_view_signals :
       callback:(unit -> unit) -> GtkSignal.id
   end
 
+(** GtkMathView core methods *)
 class math_view_skel :
   (Gtk_mathview.math_view Gtk.obj as 'a)->
   object
@@ -83,6 +89,7 @@ class math_view_skel :
     method unselect : Gdome.element -> unit
   end
 
+(** GtkMathView standard class *)
 class math_view :
   Gtk_mathview.math_view Gtk.obj ->
   object
@@ -90,6 +97,9 @@ class math_view :
     method connect : math_view_signals
   end
 
+(** {2 Constructors} *)
+
+(** math_view constructor *)
 val math_view :
   ?hadjustment:GData.adjustment ->
   ?vadjustment:GData.adjustment ->
@@ -99,7 +109,7 @@ val math_view :
   ?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.
index 299328733ab498602215ed1ab3ee50e1d3831caf..9e47e419a93d2957351f98c56acd34fbaf53136e 100644 (file)
  * 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) ->
@@ -32,6 +37,7 @@ class single_selection_math_view_signals :
     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
@@ -42,6 +48,7 @@ class single_selection_math_view :
     method action_toggle : Gdome.element -> bool
   end
 
+(** single_selection_math_view constructor *)
 val single_selection_math_view :
   ?hadjustment:GData.adjustment ->
   ?vadjustment:GData.adjustment ->
@@ -54,6 +61,9 @@ val single_selection_math_view :
   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
@@ -64,6 +74,7 @@ class multi_selection_math_view :
     method get_selections : Gdome.element list
   end
 
+(** multi_selection_math_view constructor *)
 val multi_selection_math_view :
   ?hadjustment:GData.adjustment ->
   ?vadjustment:GData.adjustment ->