]> matita.cs.unibo.it Git - helm.git/blob - helm/gTopLevel/termViewer.mli
c043f5cb6338574eba8dd9b0134f93e3ebef2829
[helm.git] / helm / gTopLevel / termViewer.mli
1 (* Copyright (C) 2000-2002, 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://cs.unibo.it/helm/.
24  *)
25
26 (******************************************************************************)
27 (*                                                                            *)
28 (*                               PROJECT HELM                                 *)
29 (*                                                                            *)
30 (*                Claudio Sacerdoti Coen <sacerdot@cs.unibo.it>               *)
31 (*                                 29/01/2003                                 *)
32 (*                                                                            *)
33 (*                                                                            *)
34 (******************************************************************************)
35
36 (** A widget to render sequents **)
37
38 class sequent_viewer :
39   Gtk_mathview.math_view Gtk.obj ->
40   object
41     inherit GMathViewAux.multi_selection_math_view
42
43     (* returns the list of selected terms         *)
44     (* selections which are not terms are ignored *)
45     method get_selected_terms : Cic.term list
46
47     (* returns the list of selected hypotheses         *)
48     (* selections which are not hypotheses are ignored *)
49     method get_selected_hypotheses : Cic.hypothesis list
50
51     method load_sequent : Cic.metasenv -> Cic.conjecture -> unit
52   end
53
54 val sequent_viewer :
55   ?adjustmenth:GData.adjustment ->
56   ?adjustmentv:GData.adjustment ->
57   ?font_size:int ->
58   ?font_manager:[ `font_manager_gtk | `font_manager_t1] ->
59   ?border_width:int ->
60   ?width:int ->
61   ?height:int ->
62   ?packing:(GObj.widget -> unit) ->
63   ?show:bool ->
64   unit -> sequent_viewer
65
66 (** A widget to render proofs **)
67
68 class proof_viewer :
69   Gtk_mathview.math_view Gtk.obj ->
70   object
71     inherit GMathViewAux.single_selection_math_view
72
73     (* the new current sequent becomes the one obtained *)
74     (* perforating the proof where the selection is     *)
75     method make_sequent_of_selected_term : unit
76
77     (* the new current sequent becomes the one obtained *)
78     (* focusing the proof on the selected metavariable  *)
79     method focus_sequent_of_selected_term : unit
80
81     (* load_proof also returns the annotated cic term and the *)
82     (* ids_to_inner_types and ids_to_inner_sorts maps.        *)
83     method load_proof :
84      UriManager.uri -> Cic.obj ->
85       Cic.annobj * (Cic.id, Cic2acic.anntypes) Hashtbl.t *
86        (Cic.id, string) Hashtbl.t
87
88   end
89
90 val proof_viewer :
91   ?adjustmenth:GData.adjustment ->
92   ?adjustmentv:GData.adjustment ->
93   ?font_size:int ->
94   ?font_manager:[ `font_manager_gtk | `font_manager_t1] ->
95   ?border_width:int ->
96   ?width:int ->
97   ?height:int ->
98   ?packing:(GObj.widget -> unit) ->
99   ?show:bool ->
100   unit -> proof_viewer