On 12/18/07, Bruce Sherwood <Bruce_Sherwood ncsu edu> wrote:
Somewhere I thought I read that one should explicitly set_position
before doing the move, so I tried this:
Gtk::WindowPosition initpos = WIN_POS_NONE;
window->set_position(initpos);
window->move(x,y);
But this and variants give me compilation errors.on the first statement
(no such thing as WIN_POS_NONE, etc.). It seems likely that I'm confused
in the multiple layers of gtkmm vs gtk+....??
unless you have a "using namespace Gtk;" statement somewhere, that
will need to be Gtk::WIN_POS_NONE (which is really just a namespaced
version of the GTK+ enum value GTK_WIN_POS_NONE)