|
View:
New views
1 Messages
—
Rating Filter:
Alert me
|
|
|
Window Switching problem in Full Screen Application.Hi, I am developing a desktop application for Linux using C and X library functions. My application always runs in full screen mode(no caption bar and window decoration). My requirement is, I should be able to switch to other application windows by pressing alt+tab key even when my application is running. I use Redhat 8. It works fine on Redhat 8 KDE. But the problem is only with GNOME. - Im not able to switch to other application windows by using alt+tab key. More over this problem occures only when my screen resolution is 800X600 My target PC has Redhat 8.0 and has only GNOME. Im attaching the code here for your reference..Please help me to fix the problem. ------------------------ Atom wm_hints;
if(g_display == NULL) i_screen = DefaultScreen(g_display); visual = DefaultVisual(g_display, i_screen); win_attr.background_pixel = XWhitePixel(g_display, i_screen); i_width=800; ul_vmask = CWBackPixel;
cmap=DefaultColormap(g_display, i_screen); XSetWindowColormap(g_display,g_window,cmap); size_hints.flags = PSize | PMinSize | PMaxSize; XSetStandardProperties(g_display, g_window, "ADR Image Display", "icon_name", None,0, 0, &size_hints); /* Remove Window Border and Title Bar */ wm_hints = XInternAtom(g_display, "_WIN_HINTS", True);
Regards, Rajendra
Do you Yahoo!? Yahoo! Mail - You care about security. So do we. _______________________________________________ gnome-redhat-list mailing list gnome-redhat-list@... http://mail.gnome.org/mailman/listinfo/gnome-redhat-list |
| Free Forum Powered by Nabble | Forum Help |