Skip to content

Commit b388aa5

Browse files
committed
Added MessageHint and UrgencyHint as per http://tronche.com/gui/x/icccm/sec-4.html
1 parent 09dcd9d commit b388aa5

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

Xlib/Xutil.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,11 @@
4343
IconPositionHint = (1 << 4)
4444
IconMaskHint = (1 << 5)
4545
WindowGroupHint = (1 << 6)
46+
MessageHint = (1 << 7)
47+
UrgencyHint = (1 << 8)
4648
AllHints = (InputHint|StateHint|IconPixmapHint|IconWindowHint|
47-
IconPositionHint|IconMaskHint|WindowGroupHint)
49+
IconPositionHint|IconMaskHint|WindowGroupHint|MessageHint|
50+
UrgencyHint)
4851
WithdrawnState = 0
4952
NormalState = 1
5053
IconicState = 3

0 commit comments

Comments
 (0)