> Hello! > > is there an eclipse plugin that will speed up and ease the UI > development with GTKmm. I would like to find out if there is a > development kit that will allow me to drag and drop the widgets/objects > (buttons, ...), and the kit will generate the GTKmm code... Is there > maybe an eclipse plugin that can do that? > > Thnx, > Sasa
The bad news first: AFAIK there isn't any kind of UI wizard eclipse plug-in for any kind of C/C++ GUI-toolkit. The good new: GLADE! http://glade.gnome.org/ The UI you created with glade is stored into a xml file. There is no need to generate code: http://gtkmm.org/docs/gtkmm-2.4/docs/tutorial/html/ch23.html (Note: a >library< named "libglademm" does the work) For learning gtkmm it may also be useful to generate code out of glades xml files. This can be done by: a >application< named "glademm" - http://home.wtal.de/petig/Gtk/ Regards, Maik _______________________________________________ gtkmm-list mailing list [email protected] http://mail.gnome.org/mailman/listinfo/gtkmm-list
