Mercurial > dwm-meillo
comparison dwm.h @ 480:680aca428830
small change to achieve Jukka's last proposal
author | arg@mmvi |
---|---|
date | Fri, 22 Sep 2006 13:53:28 +0200 |
parents | de69a7b0c8fa |
children | be4f90c03582 |
comparison
equal
deleted
inserted
replaced
479:de69a7b0c8fa | 480:680aca428830 |
---|---|
75 typedef struct Client Client; | 75 typedef struct Client Client; |
76 struct Client { | 76 struct Client { |
77 char name[256]; | 77 char name[256]; |
78 int proto; | 78 int proto; |
79 int x, y, w, h; | 79 int x, y, w, h; |
80 int rx, ry, rw, rh; /* revert geometry */ | |
80 int tx, ty, tw, th; /* title window geometry */ | 81 int tx, ty, tw, th; /* title window geometry */ |
81 int basew, baseh, incw, inch, maxw, maxh, minw, minh; | 82 int basew, baseh, incw, inch, maxw, maxh, minw, minh; |
82 int grav; | 83 int grav; |
83 long flags; | 84 long flags; |
84 unsigned int border, weight; | 85 unsigned int border, weight; |
85 Bool isfloat; | 86 Bool isfloat, ismax; |
86 Bool *tags; | 87 Bool *tags; |
87 Client *next; | 88 Client *next; |
88 Client *prev; | 89 Client *prev; |
89 Client *snext; | 90 Client *snext; |
90 Window win; | 91 Window win; |