Detecting changes in handle position of a GtkPaned using the mouse

2007-10-12 Thread Vincent Delannoy
Hi all! Can't figure out how to be notified when the user changes the handle position in a GtkPaned using the mouse? Looks like handle-related GtkPaned signals (move-handle and such...) are triggered when the user presses some keys only... Thanks for any help! Vincent

Re: retrieve user input in child widget embedding Ogre

2007-09-06 Thread Vincent Delannoy
; gdk_window_set_user_data(widget->window, G_OBJECT(widget)); gdk_window_set_back_pixmap(widget->window, NULL, FALSE); /* Set realized flag */ GTK_WIDGET_SET_FLAGS(widget, GTK_REALIZED); } Also, see this thread for details : http://www.ogre3d.org/phpBB2/viewtopic.php?t=21731&postdays=0&postorder

retrieve user input in child widget embedding Ogre

2007-08-09 Thread Vincent Delannoy
Hi, I'm looking for a way to embed an Ogre3D visualisation in a GTK child widget while still being able to receive keyboard/mouse events in such a widget. The ogre-gtk example app from the Ogre wiki successfully displays Ogre in child widgets, but for some reason, events can't be received anym