radare2/sys/ui/r2-install.gtkon

19 lines
289 B
Plaintext

Window $Main using=Gtk {
VBox {
Label label="hello world";
HBox {
Button label="Install";
Button label="Update";
Button label="Deinstall";
}
}
-{
public static void main(string[] args) {
Gtk.init (ref args);
var m = new Main ();
m.show_all();
Gtk.main();
}
}-
}