Arets Paeglis
Arets Paeglis

Reputation: 3986

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?

Upvotes: 3

Views: 702

Answers (2)

akira
akira

Reputation: 6117

yes. there are several ways of doing it:

Upvotes: 2

greyfade
greyfade

Reputation: 25647

XGetWMHints() seems to be the preferred way of doing it.

There's also the function XGetZoomHints(), but that seems to have been deprecated.

Upvotes: -1

Related Questions