Gtk_Toolbox
Gtk_Toolbox is a widget-library simplifying the design of GUI's with GTK+.
Gtk_Toolbox is a C - library with sampleprograms.
Gtk_Toolbox works with Linux, Unix, MS-Windows.
Gtk_Toolbox contains complete sourcecode (GPL - OpenSource).
THERE IS NO WARRANTY FOR THE PROGRAM.
THE ENTIRE RISK IS WITH YOU.
The sourcecode for Gtk_Toolbox (for Unix and MS-Windows) is in
package gCAD3D-devel.
>>> gCAD3D_en.htm
Prerequisites MS-Windows:
Windows XP or W2000,
Microsoft-C-Compiler,
gtk-libraries (included in package gCAD3D)
Prerequisites Linux:
gtk-devel-package, gcc.
Prerequisites AIX:
rpm, gtk-devel, xlc.
Prerequisites HP-UX:
gtk-devel, gcc.
V1.2 / 2003-11-16 PathSelectionDialog added.
V1.1 / 2002-02-16 sample-programs for OpenGL added.
V1.0 / 2001-10-20 first release.
GTK: www.gtk.org.
GTK for MS-Windows:
http://www.gimp.org/~tml/gimp/win32/.
see also: http://web.tiscali
.it/shacka/gkube.html
Gtk_Toolbox is (as Gtk) made with C; this provides the maximum
processingspeed.
Gtk_Toolbox simplifies GUI-design because it provides a direct API for most
widgettypes.
Example: definition of a button in Gtk:
UI_act_wi = gtk_button_new_with_label ("Clear");
gtk_signal_connect (GTK_OBJECT (UI_act_wi), "clicked",
(GtkSignalFunc) UI_CB1, NULL);
gtk_container_add (GTK_CONTAINER (box1), UI_act_wi);
gtk_container_border_width(GTK_CONTAINER(UI_act_wi), 2);
gtk_widget_show (UI_act_wi);
Example: definition of a button in Gtk_Toolbox:
GUI_Butt (box1, "Clear", UI_CB1, NULL, 2);
franz.reiter@cadcam.co.at