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 -> Cic.metasenv * Cic.term
49 (* The input of set_term is unquoted *)
50 method set_term : string -> unit
51 method environment : DisambiguatingParser.EnvironmentP3.t ref
54 module Make(C:DisambiguateTypes.Callbacks) =
57 module Disambiguate' = DisambiguatingParser.Make(C);;
59 class term_editor_impl mqi_handle ?packing ?width ?height
60 ?isnotempty_callback ?share_environment_with () : term_editor
63 match share_environment_with with
65 (DisambiguatingParser.EnvironmentP3.of_string
66 DisambiguatingParser.EnvironmentP3.empty)
67 | Some obj -> obj#environment
69 let input = GText.view ~editable:true ?width ?height ?packing () in
71 match isnotempty_callback with
74 ignore(input#buffer#connect#changed
75 (function () -> callback (input#buffer#char_count > 0)))
79 method coerce = input#coerce
82 input#buffer#delete input#buffer#start_iter input#buffer#end_iter
83 (* CSC: txt is now a string, but should be of type Cic.term *)
87 ignore (input#buffer#insert txt)
89 (* CSC: this method should disappear *)
90 (* get_as_string returns the unquoted string *)
91 method get_as_string = input#buffer#get_text ()
93 method get_metasenv_and_term ~context ~metasenv =
101 let environment',metasenv,expr =
103 Disambiguate'.disambiguate_term mqi_handle context metasenv
104 (input#buffer#get_text ()) !environment
106 [environment',metasenv,expr] -> environment',metasenv,expr
109 environment := environment';
112 method environment = environment
115 let term_editor = new term_editor_impl