]> Pileus Git - wmpus/blob - sys.h
3599c3da13382c89421d542d2ebefbe600b65cbf
[wmpus] / sys.h
1 /*
2  * Copyright (c) 2011-2012, Andy Spencer <andy753421@gmail.com>
3  *
4  * Permission to use, copy, modify, and/or distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14  */
15
16 /* Windowing system interface:
17  *
18  * The sys provides input to the window manager. It creates
19  * the main loop and responds to input events from the user,
20  * generally by converting them to a system independent form
21  * and then passing them to the wm.
22  *
23  * The sys also provides the API used by the wm to position
24  * and control windows. */
25
26
27 /* Window states */
28 typedef enum {
29         ST_HIDE,  // completely hidden
30         ST_SHOW,  // show as regular window
31         ST_FULL,  // fullscreen (without decorations)
32         ST_MAX,   // maximized (with decorations)
33         ST_SHADE, // show titlebar only
34         ST_ICON,  // iconified/minimized
35         ST_CLOSE, // close the window
36 } state_t;
37
38 /* Window types */
39 typedef enum {
40         TYPE_NORMAL,
41         TYPE_DIALOG,
42 } type_t;
43
44 /* Basic window type */
45 typedef struct win_sys win_sys_t;
46 typedef struct win_wm  win_wm_t;
47 typedef struct win {
48         int x, y, z;
49         int w, h;
50         state_t state;
51         type_t  type;
52         struct win *parent;
53         win_sys_t  *sys;
54         win_wm_t   *wm;
55 } win_t;
56
57 /* Generic key codes, also used for some other events
58  * Keys map to their Unicode value */
59 typedef int event_t;
60 enum {
61         EV_ALERT       = '\a',
62         EV_BACKSPACE   = '\b',
63         EV_FORMFEED    = '\f',
64         EV_NEWLINE     = '\n',
65         EV_RETURN      = '\r',
66         EV_TAB         = '\t',
67         EV_VTAB        = '\v',
68         EV_SINGLEQUOTE = '\'',
69         EV_DOUBLEQUOTE = '\"',
70         EV_BACKSLASH   = '\\',
71         EV_QUESTION    = '\?',
72         EV_NONE        = 0xF0000, // unused Unicode space
73         EV_MOUSE0, EV_MOUSE1, EV_MOUSE2, EV_MOUSE3,
74         EV_MOUSE4, EV_MOUSE5, EV_MOUSE6, EV_MOUSE7,
75         EV_LEFT, EV_RIGHT, EV_UP,     EV_DOWN,
76         EV_HOME, EV_END,   EV_PAGEUP, EV_PAGEDOWN,
77         EV_F1, EV_F2,  EV_F3,  EV_F4,
78         EV_F5, EV_F6,  EV_F7,  EV_F8,
79         EV_F9, EV_F10, EV_F11, EV_F12,
80         EV_ALT, EV_CTRL, EV_SHIFT, EV_WIN,
81         EV_ENTER, EV_LEAVE, EV_FOCUS, EV_UNFOCUS,
82 };
83
84 /* Key modifiers, up is for button release */
85 typedef struct {
86         unsigned char alt   : 1;
87         unsigned char ctrl  : 1;
88         unsigned char shift : 1;
89         unsigned char win   : 1;
90         unsigned char up    : 1;
91 } mod_t;
92 #define MOD(...)     ((mod_t){__VA_ARGS__})
93 #define mod2int(mod) (*((unsigned char*)&(mod)))
94
95 /* Mouse movement */
96 typedef struct {
97         int  x,  y;
98         int rx, ry;
99 } ptr_t;
100 #define PTR(...) ((ptr_t){__VA_ARGS__})
101
102
103 /* Move the window to the specified location and set it's
104  * geometry. The position and size include borders and
105  * window decorations. */
106 void sys_move(win_t *win, int x, int y, int w, int h);
107
108 /* Rise the window above all other windows */
109 void sys_raise(win_t *win);
110
111 /* Give keyboard focus to the window and update window
112  * decorations. */
113 void sys_focus(win_t *win);
114
115 /* Set the windows drawing state */
116 void sys_show(win_t *win, state_t st);
117
118 /* Start watching for an event. The sys subsequently
119  * calls wm_handle_event whenever the event occurs. */
120 void sys_watch(win_t *win, event_t ev, mod_t mod);
121
122 /* Stop watching an event */
123 void sys_unwatch(win_t *win, event_t event, mod_t mod);
124
125 /* Return a list of windows representing the geometry of the
126  * physical displays attached to the computer. */
127 list_t *sys_info(win_t *root);
128
129 /* First call, calls wm_insert for each existing window */
130 win_t *sys_init(void);
131
132 /* Starts the main loop */
133 void sys_run(win_t *root);
134
135 /* Exit main loop */
136 void sys_exit(void);
137
138 /* Free all static data, for memory debugging */
139 void sys_free(win_t *root);