X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=tests%2Fskiptaskbar.c;h=bb585c6eafacef1cfa9f1bc6f3cd76d7f1e287a1;hb=6eb740cf119b14903afa3028e108dd98c57ff926;hp=08c6c18e0c9d0bfd8f515408f247e36fac582024;hpb=f690980dd13c9b4c45f40dfd2cbd0e13daad9306;p=chaz%2Fopenbox diff --git a/tests/skiptaskbar.c b/tests/skiptaskbar.c index 08c6c18e..bb585c6e 100644 --- a/tests/skiptaskbar.c +++ b/tests/skiptaskbar.c @@ -1,6 +1,6 @@ /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*- - modal.c for the Openbox window manager + skiptaskbar.c for the Openbox window manager Copyright (c) 2003-2007 Dana Jansens This program is free software; you can redistribute it and/or modify @@ -23,9 +23,10 @@ int main () { Display *display; - Window parent, child; + Window win; XEvent report; - Atom state, modal; + Atom state, skip; + XClassHint classhint; int x=10,y=10,h=400,w=400; display = XOpenDisplay(NULL); @@ -36,24 +37,22 @@ int main () { } state = XInternAtom(display, "_NET_WM_STATE", True); - modal = XInternAtom(display, "_NET_WM_STATE_MODAL", True); + skip = XInternAtom(display, "_NET_WM_STATE_SKIP_TASKBAR", True); - parent = XCreateWindow(display, RootWindow(display, 0), - x, y, w, h, 10, CopyFromParent, CopyFromParent, + win = XCreateWindow(display, RootWindow(display, 0), + x, y, w, h, 10, CopyFromParent, CopyFromParent, CopyFromParent, 0, 0); - child = XCreateWindow(display, RootWindow(display, 0), - x, y, w/2, h/2, 10, CopyFromParent, CopyFromParent, - CopyFromParent, 0, 0); - - XSetWindowBackground(display,parent,WhitePixel(display,0)); - XSetWindowBackground(display,child,BlackPixel(display,0)); - - XSetTransientForHint(display, child, parent); - XChangeProperty(display, child, state, XA_ATOM, 32, - PropModeReplace, (unsigned char*)&modal, 1); - - XMapWindow(display, parent); - XMapWindow(display, child); + + XSetWindowBackground(display,win,WhitePixel(display,0)); + + XChangeProperty(display, win, state, XA_ATOM, 32, + PropModeReplace, (unsigned char*)&skip, 1); + + classhint.res_name = "test"; + classhint.res_class = "Test"; + XSetClassHint(display, win, &classhint); + + XMapWindow(display, win); XFlush(display); while (1) {