aboutsummaryrefslogtreecommitdiffstats
path: root/calmwm.h
diff options
context:
space:
mode:
authorokan2011-06-24 06:01:47 +0000
committerokan2011-06-24 06:01:47 +0000
commitc94e1a5dfb1df6ef5292efe8116084f95220d1a1 (patch)
tree71f97575176f2deb147da427962f828adae8e917 /calmwm.h
parent8ea15c6377219fe726620108371d90809ac06233 (diff)
downloadcwm-c94e1a5dfb1df6ef5292efe8116084f95220d1a1.tar.gz
re-do various bits of {,h,v}max for simplicity and less flag handling.
as a bonus, flipping between various combinations of vmax+hmax provides a more predictable behavior. commitski oga@
Diffstat (limited to '')
-rw-r--r--calmwm.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/calmwm.h b/calmwm.h
index a7abad3..8e37e3b 100644
--- a/calmwm.h
+++ b/calmwm.h
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: calmwm.h,v 1.129 2011/06/24 05:45:57 okan Exp $
+ * $OpenBSD: calmwm.h,v 1.130 2011/06/24 06:01:47 okan Exp $
*/
#ifndef _CALMWM_H_
@@ -140,13 +140,10 @@ struct client_ctx {
int xproto;
#define CLIENT_HIDDEN 0x0001
#define CLIENT_IGNORE 0x0002
-#define CLIENT_DOMAXIMIZE 0x0004
-#define CLIENT_MAXIMIZED 0x0008
-#define CLIENT_DOVMAXIMIZE 0x0010
-#define CLIENT_VMAXIMIZED 0x0020
-#define CLIENT_DOHMAXIMIZE 0x0040
-#define CLIENT_HMAXIMIZED 0x0080
-#define CLIENT_FREEZE 0x0100
+#define CLIENT_MAXIMIZED 0x0004
+#define CLIENT_VMAXIMIZED 0x0008
+#define CLIENT_HMAXIMIZED 0x0010
+#define CLIENT_FREEZE 0x0020
int flags;
int state;
int active;