How can I check if a window is minimized or not using the C interface of xlib?

Edit: Should this code work?

int window_is_minimized(Display *display, Window window) {
    Atom actual_type;
    int actual_format;
    unsigned long i, num_items, bytes_after;
    Atom *atoms;

    atoms=NULL;

    XGetWindowProperty(display, window, vdl_x11_usefull_atoms->_NET_WM_STATE, 0, 1024, False, XA_ATOM, &actual_type, &actual_format, &num_items, &bytes_after, (unsigned char**)&atoms);

    for(i=0; i<num_items; ++i) {
        if(atoms[i]==vdl_x11_usefull_atoms->_NET_WM_STATE_HIDDEN) {
            XFree(atoms);
            return 1;
        }
    }
    XFree(atoms);
    return 0;
}
link|improve this question

73% accept rate
feedback

1 Answer

up vote 2 down vote accepted
  • read the _NET_WM_STATE property and check its content (as described in 'http://standards.freedesktop.org/wm-spec/wm-spec-1.3.html#id2507241').

  • read the WM_STATE property and check its content (as described in http://tronche.com/gui/x/icccm/sec-4.html#s-4.1.3.1).

link|improve this answer
Thanks for the reply. I added a code. Should it work? – Eduardo Sep 9 '11 at 17:50
Looks like it should, does it? – Burton Samograd Sep 9 '11 at 18:04
I hope so, I am new to xlib. – Eduardo Sep 9 '11 at 18:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.