]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matitaMathView.mli
snapshot, notably:
[helm.git] / helm / matita / matitaMathView.mli
1 (* Copyright (C) 2004, HELM Team.
2  * 
3  * This file is part of HELM, an Hypertextual, Electronic
4  * Library of Mathematics, developed at the Computer Science
5  * Department, University of Bologna, Italy.
6  * 
7  * HELM 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  * HELM 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 HELM; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20  * MA  02111-1307, USA.
21  * 
22  * For details, see the HELM World-Wide-Web page,
23  * http://helm.cs.unibo.it/
24  *)
25
26 class type proof_viewer =
27   object
28     inherit GMathViewAux.single_selection_math_view
29
30     method load_proof: StatefulProofEngine.proof_status -> unit
31   end
32
33 class type sequent_viewer =
34   object
35     inherit GMathViewAux.multi_selection_math_view
36
37       (** @return the list of selected terms. Selections which are not terms are
38       * ignored *)
39     method get_selected_terms: Cic.term list
40
41       (** @return the list of selected hypothese. Selections which are not
42       * hypotheses are ignored *)
43     method get_selected_hypotheses: Cic.hypothesis list
44
45       (** load a sequent and render it into parent widget *)
46     method load_sequent: Cic.metasenv -> int -> unit
47   end
48
49 class type sequents_viewer =
50   object
51     method reset: unit
52     method load_sequents: Cic.metasenv -> unit
53     method goto_sequent: int -> unit  (* to be called _after_ load_sequents *)
54   end
55
56 val proof_viewer:
57   ?hadjustment:GData.adjustment ->
58   ?vadjustment:GData.adjustment ->
59   ?font_size:int ->
60   ?log_verbosity:int ->
61   ?width:int ->
62   ?height:int ->
63   ?packing:(GObj.widget -> unit) ->
64   ?show:bool ->
65   unit ->
66     proof_viewer
67
68   (** singleton proof_viewer instance.
69   * Uses singleton GUI instance *)
70 val proof_viewer_instance: unit -> proof_viewer
71
72 val sequent_viewer:
73   ?hadjustment:GData.adjustment ->
74   ?vadjustment:GData.adjustment ->
75   ?font_size:int ->
76   ?log_verbosity:int ->
77   ?width:int ->
78   ?height:int ->
79   ?packing:(GObj.widget -> unit) ->
80   ?show:bool ->
81   unit ->
82     sequent_viewer
83
84 val sequents_viewer:
85   notebook:GPack.notebook ->
86   sequent_viewer:sequent_viewer ->
87   set_goal:(int -> unit) ->
88   unit ->
89     sequents_viewer
90
91 val mathViewer: unit -> MatitaTypes.mathViewer
92