]> Dogcows Code - chaz/openbox/blob - openbox/moveresize.c
add urgent actions
[chaz/openbox] / openbox / moveresize.c
1 #include "grab.h"
2 #include "framerender.h"
3 #include "screen.h"
4 #include "prop.h"
5 #include "client.h"
6 #include "frame.h"
7 #include "openbox.h"
8 #include "resist.h"
9 #include "popup.h"
10 #include "moveresize.h"
11 #include "config.h"
12 #include "render/render.h"
13 #include "render/theme.h"
14
15 #include <X11/Xlib.h>
16 #include <glib.h>
17
18 gboolean moveresize_in_progress = FALSE;
19 ObClient *moveresize_client = NULL;
20
21 static gboolean moving = FALSE; /* TRUE - moving, FALSE - resizing */
22
23 static int start_x, start_y, start_cx, start_cy, start_cw, start_ch;
24 static int cur_x, cur_y;
25 static guint button;
26 static guint32 corner;
27 static ObCorner lockcorner;
28
29 static Popup *popup = NULL;
30
31 #define POPUP_X (10)
32 #define POPUP_Y (10)
33
34 static void client_dest(ObClient *c)
35 {
36 if (moveresize_client == c)
37 moveresize_end(TRUE);
38 }
39
40 void moveresize_startup()
41 {
42 XSetWindowAttributes attrib;
43
44 popup = popup_new(FALSE);
45 popup_size_to_string(popup, "W: 0000 W: 0000");
46
47 attrib.save_under = True;
48
49 client_add_destructor(client_dest);
50 }
51
52 void moveresize_shutdown()
53 {
54 client_remove_destructor(client_dest);
55
56 popup_free(popup);
57 popup = NULL;
58 }
59
60 static void popup_coords(char *format, int a, int b)
61 {
62 char *text;
63 Rect *area;
64
65 text = g_strdup_printf(format, a, b);
66 area = screen_physical_area_monitor(0);
67 popup_position(popup, NorthWestGravity,
68 POPUP_X + area->x, POPUP_Y + area->y);
69 popup_show(popup, text, NULL);
70 g_free(text);
71 }
72
73 void moveresize_start(ObClient *c, int x, int y, guint b, guint32 cnr)
74 {
75 ObCursor cur;
76
77 g_assert(!moveresize_in_progress);
78
79 moveresize_client = c;
80 start_cx = c->frame->area.x;
81 start_cy = c->frame->area.y;
82 start_cw = c->area.width;
83 start_ch = c->area.height;
84 start_x = x;
85 start_y = y;
86 corner = cnr;
87 button = b;
88
89 /*
90 have to change start_cx and start_cy if going to do this..
91 if (corner == prop_atoms.net_wm_moveresize_move_keyboard ||
92 corner == prop_atoms.net_wm_moveresize_size_keyboard)
93 XWarpPointer(ob_display, None, c->window, 0, 0, 0, 0,
94 c->area.width / 2, c->area.height / 2);
95 */
96
97 if (corner == prop_atoms.net_wm_moveresize_move ||
98 corner == prop_atoms.net_wm_moveresize_move_keyboard) {
99 cur_x = start_cx;
100 cur_y = start_cy;
101 moving = TRUE;
102 } else {
103 cur_x = start_cw;
104 cur_y = start_ch;
105 moving = FALSE;
106 }
107
108 moveresize_in_progress = TRUE;
109
110 if (corner == prop_atoms.net_wm_moveresize_size_topleft)
111 cur = OB_CURSOR_NORTHWEST;
112 else if (corner == prop_atoms.net_wm_moveresize_size_top)
113 cur = OB_CURSOR_NORTH;
114 else if (corner == prop_atoms.net_wm_moveresize_size_topright)
115 cur = OB_CURSOR_NORTHEAST;
116 else if (corner == prop_atoms.net_wm_moveresize_size_right)
117 cur = OB_CURSOR_EAST;
118 else if (corner == prop_atoms.net_wm_moveresize_size_bottomright)
119 cur = OB_CURSOR_SOUTHEAST;
120 else if (corner == prop_atoms.net_wm_moveresize_size_bottom)
121 cur = OB_CURSOR_SOUTH;
122 else if (corner == prop_atoms.net_wm_moveresize_size_bottomleft)
123 cur = OB_CURSOR_SOUTHWEST;
124 else if (corner == prop_atoms.net_wm_moveresize_size_left)
125 cur = OB_CURSOR_WEST;
126 else if (corner == prop_atoms.net_wm_moveresize_size_keyboard)
127 cur = OB_CURSOR_SOUTHEAST;
128 else if (corner == prop_atoms.net_wm_moveresize_move)
129 cur = OB_CURSOR_MOVE;
130 else if (corner == prop_atoms.net_wm_moveresize_move_keyboard)
131 cur = OB_CURSOR_MOVE;
132 else
133 g_assert_not_reached();
134
135 grab_pointer(TRUE, cur);
136 grab_keyboard(TRUE);
137 }
138
139 void moveresize_end(gboolean cancel)
140 {
141 grab_keyboard(FALSE);
142 grab_pointer(FALSE, None);
143
144 popup_hide(popup);
145
146 if (moving) {
147 client_move(moveresize_client,
148 (cancel ? start_cx : cur_x),
149 (cancel ? start_cy : cur_y));
150 } else {
151 client_configure(moveresize_client, lockcorner,
152 moveresize_client->area.x,
153 moveresize_client->area.y,
154 (cancel ? start_cw : cur_x),
155 (cancel ? start_ch : cur_y), TRUE, TRUE);
156 }
157
158 moveresize_in_progress = FALSE;
159 moveresize_client = NULL;
160 }
161
162 static void do_move(gboolean resist)
163 {
164 Rect *a;
165
166 if (resist)
167 resist_move(moveresize_client, &cur_x, &cur_y);
168
169 /* get where the client should be */
170 frame_frame_gravity(moveresize_client->frame, &cur_x, &cur_y);
171 client_move(moveresize_client, cur_x, cur_y);
172
173 /* this would be better with a fixed width font ... XXX can do it better
174 if there are 2 text boxes */
175 a = screen_area(screen_desktop);
176 popup_coords("X: %4d Y: %4d",
177 moveresize_client->frame->area.x - a->x,
178 moveresize_client->frame->area.y - a->y);
179 }
180
181 static void do_resize(gboolean resist)
182 {
183 if (resist) {
184 /* resist_size needs the frame size */
185 cur_x += moveresize_client->frame->size.left +
186 moveresize_client->frame->size.right;
187 cur_y += moveresize_client->frame->size.top +
188 moveresize_client->frame->size.bottom;
189
190 resist_size(moveresize_client, &cur_x, &cur_y, lockcorner);
191
192 cur_x -= moveresize_client->frame->size.left +
193 moveresize_client->frame->size.right;
194 cur_y -= moveresize_client->frame->size.top +
195 moveresize_client->frame->size.bottom;
196 }
197
198 client_configure(moveresize_client, lockcorner,
199 moveresize_client->area.x, moveresize_client->area.y,
200 cur_x, cur_y, TRUE, FALSE);
201
202 /* this would be better with a fixed width font ... XXX can do it better
203 if there are 2 text boxes */
204 popup_coords("W: %4d H: %4d", moveresize_client->logical_size.width,
205 moveresize_client->logical_size.height);
206 }
207
208 void moveresize_event(XEvent *e)
209 {
210 g_assert(moveresize_in_progress);
211
212 if (e->type == ButtonPress) {
213 if (!button) {
214 start_x = e->xbutton.x_root;
215 start_y = e->xbutton.y_root;
216 button = e->xbutton.button; /* this will end it now */
217 }
218 } else if (e->type == ButtonRelease) {
219 if (!button || e->xbutton.button == button) {
220 moveresize_end(FALSE);
221 }
222 } else if (e->type == MotionNotify) {
223 if (moving) {
224 cur_x = start_cx + e->xmotion.x_root - start_x;
225 cur_y = start_cy + e->xmotion.y_root - start_y;
226 do_move(TRUE);
227 } else {
228 if (corner == prop_atoms.net_wm_moveresize_size_topleft) {
229 cur_x = start_cw - (e->xmotion.x_root - start_x);
230 cur_y = start_ch - (e->xmotion.y_root - start_y);
231 lockcorner = OB_CORNER_BOTTOMRIGHT;
232 } else if (corner == prop_atoms.net_wm_moveresize_size_top) {
233 cur_x = start_cw;
234 cur_y = start_ch - (e->xmotion.y_root - start_y);
235 lockcorner = OB_CORNER_BOTTOMRIGHT;
236 } else if (corner == prop_atoms.net_wm_moveresize_size_topright) {
237 cur_x = start_cw + (e->xmotion.x_root - start_x);
238 cur_y = start_ch - (e->xmotion.y_root - start_y);
239 lockcorner = OB_CORNER_BOTTOMLEFT;
240 } else if (corner == prop_atoms.net_wm_moveresize_size_right) {
241 cur_x = start_cw + (e->xmotion.x_root - start_x);
242 cur_y = start_ch;
243 lockcorner = OB_CORNER_BOTTOMLEFT;
244 } else if (corner ==
245 prop_atoms.net_wm_moveresize_size_bottomright) {
246 cur_x = start_cw + (e->xmotion.x_root - start_x);
247 cur_y = start_ch + (e->xmotion.y_root - start_y);
248 lockcorner = OB_CORNER_TOPLEFT;
249 } else if (corner == prop_atoms.net_wm_moveresize_size_bottom) {
250 cur_x = start_cw;
251 cur_y = start_ch + (e->xmotion.y_root - start_y);
252 lockcorner = OB_CORNER_TOPLEFT;
253 } else if (corner ==
254 prop_atoms.net_wm_moveresize_size_bottomleft) {
255 cur_x = start_cw - (e->xmotion.x_root - start_x);
256 cur_y = start_ch + (e->xmotion.y_root - start_y);
257 lockcorner = OB_CORNER_TOPRIGHT;
258 } else if (corner == prop_atoms.net_wm_moveresize_size_left) {
259 cur_x = start_cw - (e->xmotion.x_root - start_x);
260 cur_y = start_ch;
261 lockcorner = OB_CORNER_TOPRIGHT;
262 } else if (corner == prop_atoms.net_wm_moveresize_size_keyboard) {
263 cur_x = start_cw + (e->xmotion.x_root - start_x);
264 cur_y = start_ch + (e->xmotion.y_root - start_y);
265 lockcorner = OB_CORNER_TOPLEFT;
266 } else
267 g_assert_not_reached();
268
269 do_resize(TRUE);
270 }
271 } else if (e->type == KeyPress) {
272 if (e->xkey.keycode == ob_keycode(OB_KEY_ESCAPE))
273 moveresize_end(TRUE);
274 else if (e->xkey.keycode == ob_keycode(OB_KEY_RETURN))
275 moveresize_end(FALSE);
276 else {
277 if (corner == prop_atoms.net_wm_moveresize_size_keyboard) {
278 int dx = 0, dy = 0;
279
280 if (e->xkey.keycode == ob_keycode(OB_KEY_RIGHT))
281 dx = MAX(4, moveresize_client->size_inc.width);
282 else if (e->xkey.keycode == ob_keycode(OB_KEY_LEFT))
283 dx = -MAX(4, moveresize_client->size_inc.width);
284 else if (e->xkey.keycode == ob_keycode(OB_KEY_DOWN))
285 dy = MAX(4, moveresize_client->size_inc.height);
286 else if (e->xkey.keycode == ob_keycode(OB_KEY_UP))
287 dy = -MAX(4, moveresize_client->size_inc.height);
288 else
289 return;
290
291 cur_x += dx;
292 cur_y += dy;
293 XWarpPointer(ob_display, None, None, 0, 0, 0, 0, dx, dy);
294
295 do_resize(FALSE);
296 } else if (corner == prop_atoms.net_wm_moveresize_move_keyboard) {
297 int dx = 0, dy = 0;
298
299 if (e->xkey.keycode == ob_keycode(OB_KEY_RIGHT))
300 dx = 4;
301 else if (e->xkey.keycode == ob_keycode(OB_KEY_LEFT))
302 dx = -4;
303 else if (e->xkey.keycode == ob_keycode(OB_KEY_DOWN))
304 dy = 4;
305 else if (e->xkey.keycode == ob_keycode(OB_KEY_UP))
306 dy = -4;
307 else
308 return;
309
310 cur_x += dx;
311 cur_y += dy;
312 XWarpPointer(ob_display, None, None, 0, 0, 0, 0, dx, dy);
313
314 do_move(FALSE);
315 }
316 }
317 }
318 }
This page took 0.049522 seconds and 5 git commands to generate.