1 (* Copyright (C) 2000-2002, HELM Team.
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.
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.
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.
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,
22 * For details, see the HELM World-Wide-Web page,
23 * http://cs.unibo.it/helm/.
26 (*****************************************************************************)
30 (* Claudio Sacerdoti Coen <sacerdot@cs.unibo.it> *)
34 (*****************************************************************************)
38 (* A WIDGET TO ENTER CIC TERMS *)
40 class type term_editor =
42 method coerce : GObj.widget
43 (* get_as_string returns the unquoted string *)
44 method get_as_string : string
45 method get_metasenv_and_term :
46 context:Cic.context ->
47 metasenv:Cic.metasenv ->
48 Cic.metasenv * Cic.term * CicUniv.universe_graph
50 (* The input of set_term is unquoted *)
51 method set_term : string -> unit
52 method environment : DisambiguatingParser.EnvironmentP3.t ref
55 module Make(C:DisambiguateTypes.Callbacks) =
58 module Disambiguate' = DisambiguatingParser.Make(C);;
60 class term_editor_impl ~(dbd:Mysql.dbd) ?packing ?width ?height
61 ?isnotempty_callback ?share_environment_with () : term_editor
64 match share_environment_with with
65 None -> ref (*DisambiguateTypes.empty_environment*)
66 (DisambiguatingParser.EnvironmentP3.of_string
67 DisambiguatingParser.EnvironmentP3.empty)
68 | Some obj -> obj#environment
70 let input = GText.view ~editable:true ?width ?height ?packing () in
72 match isnotempty_callback with
75 ignore(input#buffer#connect#changed
76 (function () -> callback (input#buffer#char_count > 0)))
80 method coerce = input#coerce
83 input#buffer#delete input#buffer#start_iter input#buffer#end_iter
84 (* CSC: txt is now a string, but should be of type Cic.term *)
88 ignore (input#buffer#insert txt)
90 (* CSC: this method should disappear *)
91 (* get_as_string returns the unquoted string *)
92 method get_as_string = input#buffer#get_text ()
94 method get_metasenv_and_term ~context ~metasenv =
102 let environment',metasenv,expr,ugraph =
104 Disambiguate'.disambiguate_term ~dbd context metasenv
105 (input#buffer#get_text ()) ~initial_ugraph:CicUniv.empty_ugraph
108 [environment',metasenv,expr,u] -> environment',metasenv,expr,u
111 environment := environment';
112 (metasenv, expr,ugraph)
113 (* TASSI: FIXME ?are we sure we have to keep this? *)
115 method environment = environment
118 let term_editor = new term_editor_impl