1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 prompt.c for the Openbox window manager
4 Copyright (c) 2008 Dana Jansens
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 See the COPYING file for a copy of the GNU General Public License.
25 #include "obt/display.h"
26 #include "obt/keyboard.h"
30 static GList
*prompt_list
= NULL
;
32 /* we construct these */
33 static RrAppearance
*prompt_a_bg
;
34 static RrAppearance
*prompt_a_button
;
35 static RrAppearance
*prompt_a_focus
;
36 static RrAppearance
*prompt_a_press
;
37 /* we change the max width which would screw with others */
38 static RrAppearance
*prompt_a_msg
;
41 #define OUTSIDE_MARGIN 4
42 #define MSG_BUTTON_SEPARATION 4
43 #define BUTTON_SEPARATION 4
44 #define BUTTON_VMARGIN 4
45 #define BUTTON_HMARGIN 12
48 static void prompt_layout(ObPrompt
*self
);
49 static void render_all(ObPrompt
*self
);
50 static void render_button(ObPrompt
*self
, ObPromptElement
*e
);
51 static void prompt_resize(ObPrompt
*self
, gint w
, gint h
);
52 static void prompt_run_callback(ObPrompt
*self
, gint result
);
54 void prompt_startup(gboolean reconfig
)
56 /* note: this is not a copy, don't free it */
57 prompt_a_bg
= ob_rr_theme
->osd_bg
;
59 prompt_a_button
= RrAppearanceCopy(ob_rr_theme
->osd_unpressed_button
);
60 prompt_a_focus
= RrAppearanceCopy(ob_rr_theme
->osd_focused_button
);
61 prompt_a_press
= RrAppearanceCopy(ob_rr_theme
->osd_pressed_button
);
63 prompt_a_msg
= RrAppearanceCopy(ob_rr_theme
->osd_hilite_label
);
64 prompt_a_msg
->texture
[0].data
.text
.flow
= TRUE
;
68 for (it
= prompt_list
; it
; it
= g_list_next(it
)) {
69 ObPrompt
*p
= it
->data
;
76 void prompt_shutdown(gboolean reconfig
)
81 for (it
= prompt_list
; it
; it
= next
) {
82 ObPrompt
*p
= it
->data
;
84 if (p
->cleanup
) p
->cleanup(p
, p
->data
);
87 g_assert(prompt_list
== NULL
);
90 RrAppearanceFree(prompt_a_button
);
91 RrAppearanceFree(prompt_a_focus
);
92 RrAppearanceFree(prompt_a_press
);
93 RrAppearanceFree(prompt_a_msg
);
96 ObPrompt
* prompt_new(const gchar
*msg
, const gchar
*title
,
97 const ObPromptAnswer
*answers
, gint n_answers
,
98 gint default_result
, gint cancel_result
,
99 ObPromptCallback func
, ObPromptCleanup cleanup
,
103 XSetWindowAttributes attrib
;
106 attrib
.override_redirect
= FALSE
;
108 self
= g_slice_new0(ObPrompt
);
111 self
->cleanup
= cleanup
;
113 self
->default_result
= default_result
;
114 self
->cancel_result
= cancel_result
;
115 self
->super
.type
= OB_WINDOW_CLASS_PROMPT
;
116 self
->super
.window
= XCreateWindow(obt_display
, obt_root(ob_screen
),
118 CopyFromParent
, InputOutput
,
122 self
->ic
= obt_keyboard_context_new(self
->super
.window
,
125 /* make it a dialog type window */
126 OBT_PROP_SET32(self
->super
.window
, NET_WM_WINDOW_TYPE
, ATOM
,
127 OBT_PROP_ATOM(NET_WM_WINDOW_TYPE_DIALOG
));
129 /* set the window's title */
131 OBT_PROP_SETS(self
->super
.window
, NET_WM_NAME
, title
);
133 /* listen for key presses on the window */
134 self
->event_mask
= KeyPressMask
;
136 /* set up the text message widow */
137 self
->msg
.text
= g_strdup(msg
);
138 self
->msg
.window
= XCreateWindow(obt_display
, self
->super
.window
,
140 CopyFromParent
, InputOutput
,
141 CopyFromParent
, 0, NULL
);
142 XMapWindow(obt_display
, self
->msg
.window
);
144 /* set up the buttons from the answers */
146 self
->n_buttons
= n_answers
;
147 if (!self
->n_buttons
)
150 self
->button
= g_new0(ObPromptElement
, self
->n_buttons
);
152 if (n_answers
== 0) {
153 g_assert(self
->n_buttons
== 1); /* should be set to this above.. */
154 self
->button
[0].text
= g_strdup(_("OK"));
157 g_assert(self
->n_buttons
> 0);
158 for (i
= 0; i
< self
->n_buttons
; ++i
) {
159 self
->button
[i
].text
= g_strdup(answers
[i
].text
);
160 self
->button
[i
].result
= answers
[i
].result
;
164 for (i
= 0; i
< self
->n_buttons
; ++i
) {
165 self
->button
[i
].window
= XCreateWindow(obt_display
, self
->super
.window
,
167 CopyFromParent
, InputOutput
,
168 CopyFromParent
, 0, NULL
);
169 XMapWindow(obt_display
, self
->button
[i
].window
);
170 window_add(&self
->button
[i
].window
, PROMPT_AS_WINDOW(self
));
172 /* listen for button presses on the buttons */
173 XSelectInput(obt_display
, self
->button
[i
].window
,
174 ButtonPressMask
| ButtonReleaseMask
| ButtonMotionMask
);
177 prompt_list
= g_list_prepend(prompt_list
, self
);
182 void prompt_ref(ObPrompt
*self
)
187 void prompt_unref(ObPrompt
*self
)
189 if (self
&& --self
->ref
== 0) {
195 prompt_list
= g_list_remove(prompt_list
, self
);
197 obt_keyboard_context_unref(self
->ic
);
199 for (i
= 0; i
< self
->n_buttons
; ++i
) {
200 window_remove(self
->button
[i
].window
);
201 XDestroyWindow(obt_display
, self
->button
[i
].window
);
204 XDestroyWindow(obt_display
, self
->msg
.window
);
205 XDestroyWindow(obt_display
, self
->super
.window
);
206 g_slice_free(ObPrompt
, self
);
210 static void prompt_layout(ObPrompt
*self
)
214 gint allbuttonsw
, allbuttonsh
, buttonx
;
218 RrMargins(prompt_a_bg
, &l
, &t
, &r
, &b
);
225 const Rect
*area
= screen_physical_area_all_monitors();
226 maxw
= MIN(MAX_WIDTH
, area
->width
*4/5);
229 /* find the button sizes and how much space we need for them */
230 allbuttonsw
= allbuttonsh
= 0;
231 for (i
= 0; i
< self
->n_buttons
; ++i
) {
234 prompt_a_button
->texture
[0].data
.text
.string
= self
->button
[i
].text
;
235 prompt_a_focus
->texture
[0].data
.text
.string
= self
->button
[i
].text
;
236 prompt_a_press
->texture
[0].data
.text
.string
= self
->button
[i
].text
;
237 RrMinSize(prompt_a_button
, &bw
, &bh
);
238 self
->button
[i
].width
= bw
;
239 self
->button
[i
].height
= bh
;
240 RrMinSize(prompt_a_focus
, &bw
, &bh
);
241 self
->button
[i
].width
= MAX(self
->button
[i
].width
, bw
);
242 self
->button
[i
].height
= MAX(self
->button
[i
].height
, bh
);
243 RrMinSize(prompt_a_press
, &bw
, &bh
);
244 self
->button
[i
].width
= MAX(self
->button
[i
].width
, bw
);
245 self
->button
[i
].height
= MAX(self
->button
[i
].height
, bh
);
247 self
->button
[i
].width
+= BUTTON_HMARGIN
* 2;
248 self
->button
[i
].height
+= BUTTON_VMARGIN
* 2;
250 allbuttonsw
+= self
->button
[i
].width
+ (i
> 0 ? BUTTON_SEPARATION
: 0);
251 allbuttonsh
= MAX(allbuttonsh
, self
->button
[i
].height
);
254 self
->msg_wbound
= MAX(allbuttonsw
, maxw
);
256 /* measure the text message area */
257 prompt_a_msg
->texture
[0].data
.text
.string
= self
->msg
.text
;
258 prompt_a_msg
->texture
[0].data
.text
.maxwidth
= self
->msg_wbound
;
259 RrMinSize(prompt_a_msg
, &self
->msg
.width
, &self
->msg
.height
);
261 /* width and height inside the outer margins */
262 w
= MAX(self
->msg
.width
, allbuttonsw
);
263 h
= self
->msg
.height
+ MSG_BUTTON_SEPARATION
+ allbuttonsh
;
265 /* position the text message */
266 self
->msg
.x
= l
+ (w
- self
->msg
.width
) / 2;
269 /* position the button buttons on the right of the dialog */
271 for (i
= self
->n_buttons
- 1; i
>= 0; --i
) {
272 self
->button
[i
].x
= buttonx
- self
->button
[i
].width
;
273 buttonx
-= self
->button
[i
].width
+ BUTTON_SEPARATION
;
274 self
->button
[i
].y
= t
+ h
- allbuttonsh
;
275 self
->button
[i
].y
+= (allbuttonsh
- self
->button
[i
].height
) / 2;
278 /* size and position the toplevel window */
279 prompt_resize(self
, w
+ l
+ r
, h
+ t
+ b
);
281 /* move and resize the internal windows */
282 XMoveResizeWindow(obt_display
, self
->msg
.window
,
283 self
->msg
.x
, self
->msg
.y
,
284 self
->msg
.width
, self
->msg
.height
);
285 for (i
= 0; i
< self
->n_buttons
; ++i
)
286 XMoveResizeWindow(obt_display
, self
->button
[i
].window
,
287 self
->button
[i
].x
, self
->button
[i
].y
,
288 self
->button
[i
].width
, self
->button
[i
].height
);
291 static void prompt_resize(ObPrompt
*self
, gint w
, gint h
)
293 XConfigureRequestEvent req
;
299 /* the user can't resize the prompt */
300 hints
.flags
= PMinSize
| PMaxSize
;
301 hints
.min_width
= hints
.max_width
= w
;
302 hints
.min_height
= hints
.max_height
= h
;
303 XSetWMNormalHints(obt_display
, self
->super
.window
, &hints
);
306 /* send a configure request like a normal client would */
307 req
.type
= ConfigureRequest
;
308 req
.display
= obt_display
;
309 req
.parent
= obt_root(ob_screen
);
310 req
.window
= self
->super
.window
;
313 req
.value_mask
= CWWidth
| CWHeight
;
314 XSendEvent(req
.display
, req
.window
, FALSE
, StructureNotifyMask
,
318 XResizeWindow(obt_display
, self
->super
.window
, w
, h
);
321 static void setup_button_focus_tex(ObPromptElement
*e
, RrAppearance
*a
,
326 for (i
= 1; i
< 5; ++i
)
327 a
->texture
[i
].type
= on
? RR_TEXTURE_LINE_ART
: RR_TEXTURE_NONE
;
331 RrMargins(a
, &l
, &t
, &r
, &b
);
332 l
+= MIN(BUTTON_HMARGIN
, BUTTON_VMARGIN
) / 2;
333 r
+= MIN(BUTTON_HMARGIN
, BUTTON_VMARGIN
) / 2;
334 t
+= MIN(BUTTON_HMARGIN
, BUTTON_VMARGIN
) / 2;
335 b
+= MIN(BUTTON_HMARGIN
, BUTTON_VMARGIN
) / 2;
338 a
->texture
[1].data
.lineart
.x1
= l
;
339 a
->texture
[1].data
.lineart
.x2
= e
->width
- r
- 1;
340 a
->texture
[1].data
.lineart
.y1
= t
;
341 a
->texture
[1].data
.lineart
.y2
= t
;
344 a
->texture
[2].data
.lineart
.x1
= l
;
345 a
->texture
[2].data
.lineart
.x2
= e
->width
- r
- 1;
346 a
->texture
[2].data
.lineart
.y1
= e
->height
- b
- 1;
347 a
->texture
[2].data
.lineart
.y2
= e
->height
- b
- 1;
350 a
->texture
[3].data
.lineart
.x1
= l
;
351 a
->texture
[3].data
.lineart
.x2
= l
;
352 a
->texture
[3].data
.lineart
.y1
= t
;
353 a
->texture
[3].data
.lineart
.y2
= e
->height
- b
- 1;
356 a
->texture
[4].data
.lineart
.x1
= e
->width
- r
- 1;
357 a
->texture
[4].data
.lineart
.x2
= e
->width
- r
- 1;
358 a
->texture
[4].data
.lineart
.y1
= t
;
359 a
->texture
[4].data
.lineart
.y2
= e
->height
- b
- 1;
362 static void render_button(ObPrompt
*self
, ObPromptElement
*e
)
366 if (e
->hover
&& e
->pressed
) a
= prompt_a_press
;
367 else if (self
->focus
== e
) a
= prompt_a_focus
;
368 else a
= prompt_a_button
;
370 a
->surface
.parent
= prompt_a_bg
;
371 a
->surface
.parentx
= e
->x
;
372 a
->surface
.parenty
= e
->y
;
374 /* draw the keyfocus line */
375 if (self
->focus
== e
)
376 setup_button_focus_tex(e
, a
, TRUE
);
378 a
->texture
[0].data
.text
.string
= e
->text
;
379 RrPaint(a
, e
->window
, e
->width
, e
->height
);
381 /* turn off the keyfocus line so that it doesn't affect size calculations
383 if (self
->focus
== e
)
384 setup_button_focus_tex(e
, a
, FALSE
);
387 static void render_all(ObPrompt
*self
)
391 RrPaint(prompt_a_bg
, self
->super
.window
, self
->width
, self
->height
);
393 prompt_a_msg
->surface
.parent
= prompt_a_bg
;
394 prompt_a_msg
->surface
.parentx
= self
->msg
.x
;
395 prompt_a_msg
->surface
.parenty
= self
->msg
.y
;
397 prompt_a_msg
->texture
[0].data
.text
.string
= self
->msg
.text
;
398 prompt_a_msg
->texture
[0].data
.text
.maxwidth
= self
->msg_wbound
;
399 RrPaint(prompt_a_msg
, self
->msg
.window
, self
->msg
.width
, self
->msg
.height
);
401 for (i
= 0; i
< self
->n_buttons
; ++i
)
402 render_button(self
, &self
->button
[i
]);
405 void prompt_show(ObPrompt
*self
, ObClient
*parent
, gboolean modal
)
410 /* activate the prompt */
411 OBT_PROP_MSG(ob_screen
, self
->super
.window
, NET_ACTIVE_WINDOW
,
412 1, /* from an application.. */
419 /* set the focused button (if not found then the first button is used) */
420 self
->focus
= &self
->button
[0];
421 for (i
= 0; i
< self
->n_buttons
; ++i
)
422 if (self
->button
[i
].result
== self
->default_result
) {
423 self
->focus
= &self
->button
[i
];
434 /* make it transient for the window's group */
435 h
.flags
= WindowGroupHint
;
436 h
.window_group
= parent
->group
->leader
;
437 p
= obt_root(ob_screen
);
440 /* make it transient for the window directly */
445 XSetWMHints(obt_display
, self
->super
.window
, &h
);
446 OBT_PROP_SET32(self
->super
.window
, WM_TRANSIENT_FOR
, WINDOW
, p
);
448 states
[0] = OBT_PROP_ATOM(NET_WM_STATE_MODAL
);
449 nstates
= (modal
? 1 : 0);
450 OBT_PROP_SETA32(self
->super
.window
, NET_WM_STATE
, ATOM
,
454 OBT_PROP_ERASE(self
->super
.window
, WM_TRANSIENT_FOR
);
456 /* set up the dialog and render it */
460 client_manage(self
->super
.window
, self
);
465 void prompt_hide(ObPrompt
*self
)
467 XUnmapWindow(obt_display
, self
->super
.window
);
468 self
->mapped
= FALSE
;
471 gboolean
prompt_key_event(ObPrompt
*self
, XEvent
*e
)
474 guint shift_mask
, mods
;
477 if (e
->type
!= KeyPress
) return FALSE
;
479 shift_mask
= obt_keyboard_modkey_to_modmask(OBT_KEYBOARD_MODKEY_SHIFT
);
480 mods
= obt_keyboard_only_modmasks(e
->xkey
.state
);
481 shift
= !!(mods
& shift_mask
);
483 /* only accept shift */
484 if (mods
!= 0 && mods
!= shift_mask
)
487 sym
= obt_keyboard_keypress_to_keysym(e
);
489 if (sym
== XK_Escape
)
491 else if (sym
== XK_Return
|| sym
== XK_KP_Enter
|| sym
== XK_space
)
492 prompt_run_callback(self
, self
->focus
->result
);
493 else if (sym
== XK_Tab
|| sym
== XK_Left
|| sym
== XK_Right
) {
496 ObPromptElement
*oldfocus
;
498 left
= (sym
== XK_Left
) || ((sym
== XK_Tab
) && shift
);
499 oldfocus
= self
->focus
;
501 for (i
= 0; i
< self
->n_buttons
; ++i
)
502 if (self
->focus
== &self
->button
[i
]) break;
503 i
+= (left
? -1 : 1);
504 if (i
< 0) i
= self
->n_buttons
- 1;
505 else if (i
>= self
->n_buttons
) i
= 0;
506 self
->focus
= &self
->button
[i
];
508 if (oldfocus
!= self
->focus
) render_button(self
, oldfocus
);
509 render_button(self
, self
->focus
);
514 gboolean
prompt_mouse_event(ObPrompt
*self
, XEvent
*e
)
517 ObPromptElement
*but
;
519 if (e
->type
!= ButtonPress
&& e
->type
!= ButtonRelease
&&
520 e
->type
!= MotionNotify
) return FALSE
;
522 /* find the button */
524 for (i
= 0; i
< self
->n_buttons
; ++i
)
525 if (self
->button
[i
].window
==
526 (e
->type
== MotionNotify
? e
->xmotion
.window
: e
->xbutton
.window
))
528 but
= &self
->button
[i
];
531 if (!but
) return FALSE
;
533 if (e
->type
== ButtonPress
) {
534 ObPromptElement
*oldfocus
;
536 oldfocus
= self
->focus
;
538 but
->pressed
= but
->hover
= TRUE
;
541 if (oldfocus
!= but
) render_button(self
, oldfocus
);
542 render_button(self
, but
);
544 else if (e
->type
== ButtonRelease
) {
546 prompt_run_callback(self
, but
->result
);
547 but
->pressed
= FALSE
;
549 else if (e
->type
== MotionNotify
) {
553 hover
= (e
->xmotion
.x
>= 0 && e
->xmotion
.y
>= 0 &&
554 e
->xmotion
.x
< but
->width
&& e
->xmotion
.y
< but
->height
);
556 if (hover
!= but
->hover
) {
558 render_button(self
, but
);
565 void prompt_cancel(ObPrompt
*self
)
567 prompt_run_callback(self
, self
->cancel_result
);
570 static gboolean
prompt_show_message_cb(ObPrompt
*p
, int res
, gpointer data
)
572 return TRUE
; /* call the cleanup func */
575 static void prompt_show_message_cleanup(ObPrompt
*p
, gpointer data
)
580 ObPrompt
* prompt_show_message(const gchar
*msg
, const gchar
*title
,
584 ObPromptAnswer ans
[] = {
588 p
= prompt_new(msg
, title
, ans
, 1, 0, 0,
589 prompt_show_message_cb
, prompt_show_message_cleanup
, NULL
);
590 prompt_show(p
, NULL
, FALSE
);
594 static void prompt_run_callback(ObPrompt
*self
, gint result
)
598 gboolean clean
= self
->func(self
, self
->focus
->result
, self
->data
);
599 if (clean
&& self
->cleanup
)
600 self
->cleanup(self
, self
->data
);