]> matita.cs.unibo.it Git - helm.git/blob - helm/DEVEL/lablgtkmathview/gMathView.mli
- the mathql interpreter is not helm-dependent any more
[helm.git] / helm / DEVEL / lablgtkmathview / gMathView.mli
1 (* Copyright (C) 2000-2003, Luca Padovani <luca.padovani@cs.unibo.it>,
2  *                          Claudio Sacerdoti Coen <sacerdot@cs.unibo.it>.
3  *
4  * This file is part of lablgtkmathview, the Ocaml binding
5  * for the GtkMathView widget.
6  * 
7  * lablgtkmathview is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  *
12  * lablgtkmathview is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with lablgtkmathview; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20  * 
21  * For details, send a mail to the author.
22  *)
23
24 exception ErrorLoadingFile of string
25 exception ErrorWritingFile of string
26 exception ErrorLoadingDOM
27 exception NoSelection
28
29 class math_view_signals :
30   ([> `container | `widget | `base | `math_view] as 'b) Gtk.obj ->
31   object ('a)
32     inherit GContainer.container_signals
33     val obj: 'b Gtk.obj
34     method click :
35       callback:(Gdome.element option -> int -> unit) -> GtkSignal.id
36     method element_over :
37       callback:(Gdome.element option -> int -> unit) -> GtkSignal.id
38     method select_begin :
39       callback:(Gdome.element option -> int -> unit) -> GtkSignal.id
40     method select_over :
41       callback:(Gdome.element option -> int -> unit) -> GtkSignal.id
42     method select_end :
43       callback:(Gdome.element option -> int -> unit) -> GtkSignal.id
44     method select_abort :
45       callback:(unit -> unit) -> GtkSignal.id
46   end
47
48 class math_view_skel :
49   (Gtk_mathview.math_view Gtk.obj as 'a)->
50   object
51     inherit GContainer.container
52     method freeze : unit
53     method thaw : unit
54     method export_to_postscript :
55       ?width:int ->
56       ?height:int ->
57       ?x_margin:int ->
58       ?y_margin:int ->
59       ?disable_colors:bool -> filename:string -> unit -> unit
60     method get_anti_aliasing : bool
61     method get_buffer : Gdk.pixmap
62     method get_font_manager_type : [ `font_manager_gtk | `font_manager_t1]
63     method get_font_size : int
64     method get_frame : GBin.frame
65     method get_drawing_area : GMisc.drawing_area
66     method get_hadjustment : GData.adjustment
67     method get_height : int
68     method get_log_verbosity : int
69     method get_top : int * int
70     method get_transparency : bool
71     method get_vadjustment : GData.adjustment
72     method get_width : int
73     method load_uri : filename:string -> unit
74     method load_doc : dom:Gdome.document -> unit
75     method set_adjustments : GData.adjustment -> GData.adjustment -> unit
76     method set_anti_aliasing : bool -> unit
77     method set_font_manager_type :
78       fm_type:[ `font_manager_gtk | `font_manager_t1] -> unit
79     method set_font_size : int -> unit
80     method set_log_verbosity : int -> unit
81     method select : Gdome.element -> unit
82     method unselect : Gdome.element -> unit
83     method get_element_at : int -> int -> Gdome.element option
84     method is_selected : Gdome.element -> bool
85     method set_top : int -> int -> unit
86     method set_transparency : bool -> unit
87     method unload : unit
88     val obj : 'a
89   end
90
91 class math_view :
92   Gtk_mathview.math_view Gtk.obj ->
93   object
94     inherit math_view_skel
95     method connect : math_view_signals
96   end
97
98 val math_view :
99   ?adjustmenth:GData.adjustment ->
100   ?adjustmentv:GData.adjustment ->
101   ?font_size:int ->
102   ?font_manager:[ `font_manager_gtk | `font_manager_t1] ->
103   ?border_width:int ->
104   ?width:int ->
105   ?height:int ->
106   ?packing:(GObj.widget -> unit) -> ?show:bool -> unit -> math_view