summaryrefslogtreecommitdiff
path: root/src/libxcwm/xcwm.c
blob: 34f798faa1878c0baeec6f1895d953df980ff269 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
/* Copyright (c) 2012 David Snyder, Benjamin Carr, Braden Wooley
 *
 * rootimg_api.h
 *
 * Permission is hereby granted, free of charge, to any person
 * obtaining a copy of this software and associated documentation
 * files (the "Software"), to deal in the Software without
 * restriction, including without limitation the rights to use, copy,
 * modify, merge, publish, distribute, sublicense, and/or sell copies
 * of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <xcwm/xcwm.h>
#include "xcwm_internal.h"
#include "X11/keysym.h"
#include <string.h>

// aaron key stuff
#define XK_Shift_L 0xffe1
xcb_key_symbols_t *syms = NULL;
// end aaron key stuff
xcwm_context_t *root_context = NULL;

// This init function needs set the window to be registered for events!
// First one we should handle is damage
xcwm_context_t *
xcwm_init(char *display)
{

    xcb_connection_t *conn;
    int conn_screen;
    xcb_screen_t *root_screen;
    xcb_drawable_t root_window;
    xcb_void_cookie_t cookie;
    uint32_t mask_values[1];

    conn = xcb_connect(display, &conn_screen);

    root_screen = xcb_aux_get_screen(conn, conn_screen);
    root_window = root_screen->root;

    // Set the mask for the root window so we know when new windows
    // are created on the root. This is where we add masks for the events
    // we care about catching on the root window.
    mask_values[0] = XCB_EVENT_MASK_KEY_PRESS |
                     XCB_EVENT_MASK_KEY_RELEASE |
                     XCB_EVENT_MASK_BUTTON_PRESS |
                     XCB_EVENT_MASK_BUTTON_RELEASE |
                     XCB_EVENT_MASK_POINTER_MOTION |
                     XCB_EVENT_MASK_STRUCTURE_NOTIFY |
                     XCB_EVENT_MASK_SUBSTRUCTURE_NOTIFY |
                     XCB_EVENT_MASK_ENTER_WINDOW |
                     XCB_EVENT_MASK_LEAVE_WINDOW |
                     XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT;
    cookie = xcb_change_window_attributes_checked(conn, root_window,
                                                  XCB_CW_EVENT_MASK,
                                                  mask_values);
    if (_xcwm_request_check(conn, cookie,
                            "Could not set root window mask.")) {
        fprintf(stderr, "Is another window manager running?\n");
        xcb_disconnect(conn);
        exit(1);
    }

    xcb_flush(conn);

    root_context = malloc(sizeof(xcwm_context_t));
    root_context->conn = conn;
    root_context->parent = 0;
    root_context->window = root_window;

    // Set width, height, x, & y from root_screen into the xcwm_context_t
    root_context->width = root_screen->width_in_pixels;
    root_context->height = root_screen->height_in_pixels;
    root_context->x = 0;
    root_context->y = 0;

    _xcwm_init_composite(root_context);

    _xcwm_init_damage(root_context);

    _xcwm_init_xfixes(root_context);

    _xcwm_add_context_t(root_context);

    syms = xcb_key_symbols_alloc(conn);
    _xcwm_init_extension(conn, "XTEST");
    _xcwm_init_extension(conn, "XKEYBOARD");

    _xcwm_get_wm_atoms(root_context);

    return root_context;
}

xcwm_image_t *
xcwm_get_image(xcwm_context_t *context)
{

    xcb_get_geometry_reply_t *geom_reply;

    xcb_image_t *image;

    geom_reply = _xcwm_get_window_geometry(context->conn, context->window);

    //FIXME - right size
    xcwm_image_t * xcwm_image =
        (xcwm_image_t *)malloc(10 * sizeof(xcwm_image_t));

    xcb_flush(context->conn);
    /* Get the image of the root window */
    image = xcb_image_get(context->conn,
                          context->window,
                          geom_reply->x,
                          geom_reply->y,
                          geom_reply->width,
                          geom_reply->height,
                          (unsigned int)~0L,
                          XCB_IMAGE_FORMAT_Z_PIXMAP);

    xcwm_image->image = image;
    xcwm_image->x = geom_reply->x;
    xcwm_image->y = geom_reply->y;
    xcwm_image->width = geom_reply->width;
    xcwm_image->height = geom_reply->height;

    free(geom_reply);

    return xcwm_image;
}

int
xcwm_start_event_loop(xcwm_context_t *context,
                      xcwm_event_cb_t callback)
{
    /* Simply call our internal function to do the actual setup */
    return _xcwm_start_event_loop(context->conn, callback);
}

xcwm_image_t *
test_xcwm_get_image(xcwm_context_t *context)
{

    xcb_image_t *image;

    xcb_flush(context->conn);
    /* Get the image of the root window */
    image = xcb_image_get(context->conn,
                          context->window,
                          context->damaged_x,
                          context->damaged_y,
                          context->damaged_width,
                          context->damaged_height,
                          (unsigned int)~0L,
                          XCB_IMAGE_FORMAT_Z_PIXMAP);

    //FIXME - Calculate memory size correctly
    xcwm_image_t * xcwm_image =
        (xcwm_image_t *)malloc(10 * sizeof(xcwm_image_t));

    xcwm_image->image = image;
    xcwm_image->x = context->damaged_x;
    xcwm_image->y = context->damaged_y;
    xcwm_image->width = context->damaged_width;
    xcwm_image->height = context->damaged_height;

    return xcwm_image;
}

void
xcwm_image_destroy(xcwm_image_t * xcwm_image)
{

    xcb_image_destroy(xcwm_image->image);
    free(xcwm_image);
}

void
xcwm_remove_context_damage(xcwm_context_t *context)
{
    xcb_xfixes_region_t region = xcb_generate_id(context->conn);
    xcb_rectangle_t rect;
    xcb_void_cookie_t cookie;

    if (!context) {
        return;
    }

    rect.x = context->damaged_x;
    rect.y = context->damaged_y;
    rect.width = context->damaged_width;
    rect.height = context->damaged_height;

    xcb_xfixes_create_region(root_context->conn,
                             region,
                             1,
                             &rect);

    cookie = xcb_damage_subtract_checked(context->conn,
                                         context->damage,
                                         region,
                                         0);

    if (!(_xcwm_request_check(context->conn, cookie,
                              "Failed to subtract damage"))) {
        context->damaged_x = 0;
        context->damaged_y = 0;
        context->damaged_width = 0;
        context->damaged_height = 0;
    }
    return;
}

/* Close all windows, the connection, as well as the event loop */
void
xcwm_close(void)
{

    _xcwm_context_node *head = _xcwm_window_list_head;
    xcb_connection_t *conn = head->context->conn;
    xcb_flush(conn);

    // Close all windows
    while (head) {
        xcwm_request_close(head->context);
        _xcwm_window_list_head = head->next;
        free(head);
        head = _xcwm_window_list_head;
    }

    // Disconnect from the display
    xcb_disconnect(conn);

    // Terminate the event loop
    int ret = _xcwm_stop_event_loop();
    if (ret != 1) printf("Event loop failed to close\n");

    return;

}