]> git.lizzy.rs Git - bspwm.git/blobdiff - types.h
New message: 'list_rules'
[bspwm.git] / types.h
diff --git a/types.h b/types.h
index 2092950df799bc2ca9ca8ec623cdaf897133bfd6..8bc07ed359d9d9e3f663ce9ed79df99107e71354 100644 (file)
--- a/types.h
+++ b/types.h
@@ -1,11 +1,15 @@
 #ifndef _TYPES_H
 #define _TYPES_H
 
+#include <stdbool.h>
 #include <xcb/xcb.h>
 #include <xcb/xcb_event.h>
 #include "helpers.h"
 
-#define DEFAULT_NAME "one"
+#define SPLIT_RATIO  0.5
+#define DEFAULT_DESK_NAME    "Desktop"
+#define DEFAULT_MON_NAME     "Monitor"
+#define MISSING_VALUE        "N/A"
 
 typedef enum {
     TYPE_HORIZONTAL,
@@ -33,77 +37,163 @@ typedef enum {
 } value_change_t;
 
 typedef enum {
-    SKIP_NONE,
-    SKIP_FLOATING,
-    SKIP_TILED
+    LIST_OPTION_VERBOSE,
+    LIST_OPTION_QUIET
+} list_option_t;
+
+typedef enum {
+    SEND_OPTION_FOLLOW,
+    SEND_OPTION_DONT_FOLLOW
+} send_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 {
-    ROTATE_CLOCK_WISE,
-    ROTATE_COUNTER_CW,
+    NEAREST_OLDER,
+    NEAREST_NEWER
+} nearest_arg_t;
+
+typedef enum {
+    CIRCULATE_FORWARD,
+    CIRCULATE_BACKWARD
+} circulate_dir_t;
+
+typedef enum {
+    ROTATE_CLOCKWISE,
+    ROTATE_COUNTER_CLOCKWISE,
     ROTATE_FULL_CYCLE
 } rotate_t;
 
 typedef enum {
     DIR_LEFT,
-    DIR_UP,
     DIR_RIGHT,
+    DIR_UP,
     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 fullscreen;
-    bool locked;
-} Client;
-
-typedef struct Node Node;
-struct Node {
+    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;
+struct node_t {
     split_type_t split_type;
     double split_ratio;
     xcb_rectangle_t rectangle;
-    bool vacant; /* vacant nodes only hold floating clients */
-    Node *first_child;
-    Node *second_child;
-    Node *parent;
-    /* the value of the following properties is NULL except for leaves: */
-    Client *client; 
-    Node *prev_leaf;
-    Node *next_leaf;
+    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 */
 };
 
-typedef struct Rule Rule;
-struct Rule {
-    char *class_name;
-    char *desk_name;
-    bool floating;
-    bool fullscreen;
-    bool locked;
-    Rule *next;
+typedef struct desktop_t desktop_t;
+struct desktop_t {
+    char name[MAXLEN];
+    layout_t layout;
+    node_t *root;
+    node_t *focus;
+    node_t *last_focus;
+    desktop_t *prev;
+    desktop_t *next;
 };
 
-typedef struct Desktop Desktop;
-struct Desktop {
-    char *name;
-    layout_t layout;
-    Node *root;
-    Node *view; /* initially view = root, can be changed by zooming */
-    Node *focus;
-    Node *last_focus;
-    Node *head; /* first element in the list of leaves */
-    Node *tail;
-    Desktop *prev;
-    Desktop *next;
+typedef struct monitor_t monitor_t;
+struct monitor_t {
+    char name[MAXLEN];
+    xcb_rectangle_t rectangle;
+    int top_padding;
+    int right_padding;
+    int bottom_padding;
+    int left_padding;
+    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;
+    monitor_t *monitor;
+    desktop_t *desktop;
+} rule_effect_t;
+
+typedef struct rule_t rule_t;
+struct rule_t {
+    unsigned int uid;
+    rule_cause_t cause;
+    rule_effect_t effect;
+    rule_t *prev;
+    rule_t *next;
 };
 
-Node *make_node(void);
-Desktop *make_desktop(void);
-Client *make_client(void);
+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