xwm: Implement resizing by frame borders
diff --git a/src/xwayland/window-manager.c b/src/xwayland/window-manager.c
index a2f392b..bffb5ff 100644
--- a/src/xwayland/window-manager.c
+++ b/src/xwayland/window-manager.c
@@ -781,25 +781,39 @@
struct weston_wm_window *window;
enum theme_location location;
struct theme *t = wm->theme;
+ int width, height;
fprintf(stderr, "XCB_BUTTON_%s (detail %d)\n",
button->response_type == XCB_BUTTON_PRESS ?
"PRESS" : "RELEASE", button->detail);
window = hash_table_lookup(wm->window_hash, button->event);
+ weston_wm_window_get_frame_size(window, &width, &height);
+
if (button->response_type == XCB_BUTTON_PRESS &&
button->detail == 1) {
location = theme_get_location(t,
button->event_x,
button->event_y,
- window->width,
- window->height);
+ width, height);
switch (location) {
case THEME_LOCATION_TITLEBAR:
shell_interface->move(window->shsurf,
wm->server->compositor->seat);
break;
+ case THEME_LOCATION_RESIZING_TOP:
+ case THEME_LOCATION_RESIZING_BOTTOM:
+ case THEME_LOCATION_RESIZING_LEFT:
+ case THEME_LOCATION_RESIZING_RIGHT:
+ case THEME_LOCATION_RESIZING_TOP_LEFT:
+ case THEME_LOCATION_RESIZING_TOP_RIGHT:
+ case THEME_LOCATION_RESIZING_BOTTOM_LEFT:
+ case THEME_LOCATION_RESIZING_BOTTOM_RIGHT:
+ shell_interface->resize(window->shsurf,
+ wm->server->compositor->seat,
+ location);
+ break;
default:
break;
}