]> git.lizzy.rs Git - bspwm.git/blobdiff - types.h
Options for 'cycle_desktop': --skip-{free,occupied}
[bspwm.git] / types.h
diff --git a/types.h b/types.h
index 8e8e99e4d61ae48b8011c0e58115fd07f04fc18f..44dcf69cbfbd59e790ec524f55133542f7aa4409 100644 (file)
--- a/types.h
+++ b/types.h
@@ -1,12 +1,15 @@
 #ifndef _TYPES_H
 #define _TYPES_H
 
+#include <stdbool.h>
 #include <xcb/xcb.h>
 #include <xcb/xcb_event.h>
 #include "helpers.h"
 
 #define SPLIT_RATIO  0.5
-#define DESK_NAME    "One"
+#define DEFAULT_DESK_NAME    "Desktop"
+#define DEFAULT_MON_NAME     "Monitor"
+#define MISSING_VALUE        "N/A"
 
 typedef enum {
     TYPE_HORIZONTAL,
@@ -34,16 +37,34 @@ typedef enum {
 } value_change_t;
 
 typedef enum {
-    SKIP_NONE,
-    SKIP_FLOATING,
-    SKIP_TILED
+    LIST_OPTION_VERBOSE,
+    LIST_OPTION_QUIET
+} list_option_t;
+
+typedef enum {
+    CLIENT_SKIP_NONE,
+    CLIENT_SKIP_FLOATING,
+    CLIENT_SKIP_TILED,
+    CLIENT_SKIP_CLASS_EQUAL,
+    CLIENT_SKIP_CLASS_DIFFER
 } skip_client_t;
 
 typedef enum {
-    DIR_NEXT,
-    DIR_PREV
+    DESKTOP_SKIP_NONE,
+    DESKTOP_SKIP_FREE,
+    DESKTOP_SKIP_OCCUPIED
+} skip_desktop_t;
+
+typedef enum {
+    CYCLE_NEXT,
+    CYCLE_PREV
 } cycle_dir_t;
 
+typedef enum {
+    NEAREST_OLDER,
+    NEAREST_NEWER
+} nearest_arg_t;
+
 typedef enum {
     ROTATE_CLOCKWISE,
     ROTATE_COUNTER_CLOCKWISE,
@@ -57,13 +78,25 @@ typedef enum {
     DIR_DOWN
 } direction_t;
 
+typedef enum {
+    TOP_LEFT,
+    TOP_RIGHT,
+    BOTTOM_LEFT,
+    BOTTOM_RIGHT
+} corner_t;
+
 typedef struct {
     xcb_window_t window;
+    unsigned int uid;
+    char class_name[MAXLEN];
+    unsigned int border_width;
     bool floating;
-    bool transient; /* transient window are always floating */
+    bool transient;  /* transient window are always floating */
     bool fullscreen;
-    bool locked; /* protects window from being closed */
-    xcb_rectangle_t rectangle;
+    bool locked;     /* protects window from being closed */
+    bool urgent;
+    xcb_rectangle_t floating_rectangle;
+    xcb_rectangle_t tiled_rectangle;
 } client_t;
 
 typedef struct node_t node_t;
@@ -71,11 +104,12 @@ struct node_t {
     split_type_t split_type;
     double split_ratio;
     xcb_rectangle_t rectangle;
-    bool vacant; /* vacant nodes only hold floating clients */
+    bool vacant;          /* vacant nodes only hold floating clients */
+    split_mode_t born_as;
     node_t *first_child;
     node_t *second_child;
     node_t *parent;
-    client_t *client; /* NULL except for leaves */
+    client_t *client;     /* NULL except for leaves */
 };
 
 typedef struct desktop_t desktop_t;
@@ -89,13 +123,24 @@ struct desktop_t {
     desktop_t *next;
 };
 
+typedef struct monitor_t monitor_t;
+struct monitor_t {
+    char name[MAXLEN];
+    xcb_rectangle_t rectangle;
+    desktop_t *desk;
+    desktop_t *last_desk;
+    desktop_t *desk_head;
+    desktop_t *desk_tail;
+    monitor_t *prev;
+    monitor_t *next;
+};
+
 typedef struct {
     char name[MAXLEN];
 } rule_cause_t;
 
 typedef struct {
     bool floating;
-    char desk_name[MAXLEN];
 } rule_effect_t;
 
 typedef struct rule_t rule_t;
@@ -108,11 +153,29 @@ struct rule_t {
 typedef struct {
     node_t *node;
     desktop_t *desktop;
+    monitor_t *monitor;
 } window_location_t;
 
+typedef struct {
+    desktop_t *desktop;
+    monitor_t *monitor;
+} desktop_location_t;
+
+typedef struct {
+    xcb_point_t position;
+    xcb_button_t button;
+    xcb_rectangle_t rectangle;
+    monitor_t *monitor;
+    desktop_t *desktop;
+    node_t *node;
+    corner_t corner;
+} pointer_state_t;
+
 node_t *make_node(void);
+monitor_t *make_monitor(xcb_rectangle_t *);
 desktop_t *make_desktop(const char *);
 client_t *make_client(xcb_window_t);
 rule_t *make_rule(void);
+pointer_state_t *make_pointer_state(void);
 
 #endif