]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/matita/matitaGtkMisc.mli
packaging cleanup: get rid of ancient debhelpers, use dh_install
[helm.git] / helm / matita / matitaGtkMisc.mli
index 8a9f8d6fbbd763129fc0e823e063fb8ca2b338d6..91a3e495bae5eefcf04515438c320b171d954fd2 100644 (file)
@@ -70,16 +70,29 @@ val connect_key:
   (unit -> unit) -> (* callback *)
     unit
 
+  (** n-ary string column list *)
+class multiStringListModel:
+  cols:int ->
+  GTree.view ->
+  object
+    method list_store: GTree.list_store (** list_store forwarding *)
+
+    method easy_mappend:     string list -> unit        (** append + set *)
+    method easy_minsert:     int -> string list -> unit (** insert + set *)
+    method easy_mselection:  unit -> string list list
+  end
+  
   (** single string column list *)
 class stringListModel:
   GTree.view ->
   object
-    method list_store: GTree.list_store (** list_store forwarding *)
+    inherit multiStringListModel
 
     method easy_append:     string -> unit        (** append + set *)
     method easy_insert:     int -> string -> unit (** insert + set *)
     method easy_selection:  unit -> string list
   end
+  
 
   (** as above with Pixbuf associated to each row. Each time an insert is
    * performed a string tag should be specified, the corresponding pixbuf in the
@@ -112,7 +125,7 @@ val ask_confirmation:
   title:string -> 
   message:string -> 
   ?parent:#GWindow.window_skel ->
-    unit -> bool
+    unit -> [`YES | `NO | `CANCEL]
 
 val report_error:
   title:string ->