We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a85fe06 commit 017fa35Copy full SHA for 017fa35
1 file changed
Xlib/xobject/icccm.py
@@ -1,4 +1,4 @@
1
-# $Id: icccm.py,v 1.2 2000-12-21 12:23:07 petli Exp $
+# $Id: icccm.py,v 1.3 2002-06-24 20:05:33 petli Exp $
2
#
3
# Xlib.xobject.icccm -- ICCCM structures
4
@@ -41,7 +41,13 @@
41
WMHints = rq.Struct( rq.Card32('flags'),
42
rq.Card32('input', default = 0),
43
rq.Set('initial_state', 4,
44
- ( Xutil.NormalState, Xutil.IconicState ),
+ # withdrawn is totally bogus according to
45
+ # ICCCM, but some window managers seems to
46
+ # use this value to identify dockapps.
47
+ # Oh well.
48
+ ( Xutil.WithdrawnState,
49
+ Xutil.NormalState,
50
+ Xutil.IconicState ),
51
default = Xutil.NormalState),
52
rq.Pixmap('icon_pixmap', default = 0),
53
rq.Window('icon_window', default = 0),
0 commit comments