5 Sep
2005
5 Sep
'05
2:38 p.m.
Hi there,
While not a strictly Inkscape-related question, Inkscape is one of the best gtkmm/c++ apps around (or at least I hope, as I noticed you started with gtk/c), so I thought you might be able to help.
I'm experimenting with gtkmm and have the simplest program as outlined in the docs compiled as a Windows .exe, here's the code:
#include <gtkmm.h>
int main(int argc, char* argv[]) { Gtk::Main kit(argc, argv);
Gtk::Window window;
Gtk::Main::run(window);
return 0; }
My problem is that the resulting .exe opens the console Window along with the GUI, Inkscape doesn't do this, and I wondered how you achieved that.
I know this list isn't for general Q&A, but if you have the time that'd be great, if not no worries.
Kind regards, Hal