module Dbf_columnGUI: sig .. end
type sopts_view = {
|
sopt_view : GTree.view; |
|
sopt_string : GTree.view_column; |
}
class specific_opts_store : unit -> object .. end
val ask_for_a_specific_option : ?parent:#GWindow.window_skel -> string -> (string * string) option
type column_gui_type = {
|
cgi_name : string; |
|
cgi_comment : string; |
|
cgi_type : Dbf_sql.SQL_db.ty; |
|
cgi_nullable : bool; |
|
cgi_options : string list Dbf_misc.StringMap.t; |
|
cgi_spec_ty : string Dbf_misc.StringMap.t; |
|
cgi_ocaml_type : string; |
|
cgi_sql2ml : string; |
|
cgi_ml2sql : string; |
}
class column_gui : (column_gui_type -> 'a) -> column_gui_type -> object .. end