SOLVED: Re: How to Make a Window Come to Top?



Elizabeth writes:
>   I'm using gtk1.2 via gtkmm-1.
> 
>   What do we do in such a case?

   gdk_window_raise() will do this, as Stephan R.A. Deibel pointed out:

	http://mail.gnome.org/archives/gtk-list/1999-November/msg00007.html

   In gtkmm, an example should solidify its understanding:

	Gtk::Window * w = new Gtk::Window();
	w->show();
	// ...
	gdk_window_raise(w->get_window()); // get_window() is from Gtk::Widget

Elizabeth



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]