[ Usenet FAQs | Web FAQs | Documents | RFC Index ]
Part1 - Part2 - Part3 - Part4 - Part5 - Part6 - Part7 - Part8 - Part9 - Single Page
Top Document: Motif FAQ (Part 8 of 9)
Previous Document: 267) How can an application iconify itself?
Next Document: 269) Why doesn't MWM display an iconify button on my dialog windows?
-
Search the FAQ Archives
Part1 - Part2 - Part3 - Part4 - Part5 - Part6 - Part7 - Part8 - Part9 - Single Page
Top Document: Motif FAQ (Part 8 of 9)
Previous Document: 267) How can an application iconify itself?
Next Document: 269) Why doesn't MWM display an iconify button on my dialog windows?
268) How can an application de-iconify itself?
[Last modified: Aug 98]
Answer: Carolyn Allen writes:
if(XtIsRealized(shell_widget))
{
Display *dpy = XtDisplay(shell_widget);
Window win = XtWindow(shell_widget);
Window client = XmuClientWindow(dpy,win);
XMapRaised(dpy,client);
}
If all you want to do is pop the icon to the top, use XRaiseWindow(dpy,client)
instead.
Top Document: Motif FAQ (Part 8 of 9)
Previous Document: 267) How can an application iconify itself?
Next Document: 269) Why doesn't MWM display an iconify button on my dialog windows?
Part1 - Part2 - Part3 - Part4 - Part5 - Part6 - Part7 - Part8 - Part9 - Single Page
[ Usenet FAQs | Web FAQs | Documents | RFC Index ]
Send corrections/additions to the FAQ Maintainer:
kenton@rahul.net (Ken Lee)
Last Update October 22 2009 @ 05:27 AM