]> matita.cs.unibo.it Git - helm.git/blob - helm/DEVEL/lablgtkmathview/gMathViewAux.mli
added warning comment about using unstable stuff
[helm.git] / helm / DEVEL / lablgtkmathview / gMathViewAux.mli
1 (* Copyright (C) 2000, Luca Padovani <luca.padovani@cs.unibo.it>.
2  *
3  * This file is part of lablgtkmathview, the Ocaml binding
4  * for the GtkMathView widget.
5  * 
6  * lablgtkmathview is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  *
11  * lablgtkmathview is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with lablgtkmathview; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19  * 
20  * For details, send a mail to the author.
21  *)
22
23 class single_selection_math_view_signals :
24   ([> `container | `widget | `base | `math_view] as 'b) Gtk.obj ->
25   ((Gdome.element option -> unit) -> unit) ->
26  object
27   inherit GMathView.math_view_signals
28   method selection_changed : (Gdome.element_of_node option -> unit) -> unit
29  end
30
31 class single_selection_math_view :
32   Gtk_mathview.math_view Gtk.obj ->
33   object
34     inherit GMathView.math_view_skel
35     method connect : single_selection_math_view_signals
36     method get_selection : Gdome.element option
37     method set_selection : Gdome.element option -> unit
38   end
39
40 val single_selection_math_view :
41   ?adjustmenth:GData.adjustment ->
42   ?adjustmentv:GData.adjustment ->
43   ?font_size:int ->
44   ?font_manager:[ `font_manager_gtk | `font_manager_t1] ->
45   ?border_width:int ->
46   ?width:int ->
47   ?height:int ->
48   ?packing:(GObj.widget -> unit) ->
49   ?show:bool ->
50   unit -> single_selection_math_view
51
52   (** EXPERIMENTAL STUFF from now on: use with care and at your own risk! *)
53
54 class multi_selection_math_view :
55   Gtk_mathview.math_view Gtk.obj ->
56   object
57     inherit single_selection_math_view
58     method remove_selection : Gdome.element -> unit
59     method remove_selections : unit
60     method add_selection : Gdome.element -> unit
61     method get_selections : Gdome.element list
62   end
63
64 val multi_selection_math_view :
65   ?adjustmenth:GData.adjustment ->
66   ?adjustmentv:GData.adjustment ->
67   ?font_size:int ->
68   ?font_manager:[ `font_manager_gtk | `font_manager_t1] ->
69   ?border_width:int ->
70   ?width:int ->
71   ?height:int ->
72   ?packing:(GObj.widget -> unit) ->
73   ?show:bool ->
74   unit -> multi_selection_math_view
75
76