Data update
This commit is contained in:
parent
81fd053722
commit
52a6ef48dd
10248 changed files with 63654 additions and 6775 deletions
|
|
@ -0,0 +1,13 @@
|
|||
open GMain
|
||||
|
||||
let window = GWindow.window ~border_width:2 ()
|
||||
let vbox = GPack.vbox ~packing:window#add ()
|
||||
let label = GMisc.label ~text:"There have been no clicks yet" ~packing:vbox#pack ()
|
||||
let button = GButton.button ~label:"click me" ~packing:vbox#pack ()
|
||||
|
||||
let () =
|
||||
window#event#connect#delete ~callback:(fun _ -> true);
|
||||
window#connect#destroy ~callback:Main.quit;
|
||||
button#connect#clicked ~callback:window#destroy;
|
||||
window#show ();
|
||||
Main.main ()
|
||||
Loading…
Add table
Add a link
Reference in a new issue