summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2008-03-02 15:03:10 -0500
committerDana Jansens <danakj@orodu.net>2008-03-02 15:03:10 -0500
commitc70379fa8f771e499a4d47e84af06d71838b780d (patch)
tree0f244d32b2069c0b8d68895e34532bfaf98d9392
parent9676757a08b3e2e508c47f7795326bda8e54dc53 (diff)
parentb8960827b76ad499170e8b5b9ae8bf202188f0b0 (diff)
Merge branch 'backport' into work
-rw-r--r--openbox/actions/session.c13
-rw-r--r--openbox/client.c22
-rw-r--r--openbox/prompt.c25
-rw-r--r--openbox/prompt.h2
-rw-r--r--po/POTFILES.in1
5 files changed, 49 insertions, 14 deletions
diff --git a/openbox/actions/session.c b/openbox/actions/session.c
index cfc5e377..b6eebcb6 100644
--- a/openbox/actions/session.c
+++ b/openbox/actions/session.c
@@ -3,10 +3,6 @@
#include "openbox/session.h"
#include "gettext.h"
-#ifndef USE_SM
-void action_logout_startup(void) {}
-#else
-
typedef struct {
gboolean prompt;
gboolean silent;
@@ -38,8 +34,13 @@ static gpointer setup_func(xmlNodePtr node)
static void prompt_cb(ObPrompt *p, gint result, gpointer data)
{
Options *o = data;
- if (result)
+ if (result) {
+#ifndef USE_SM
session_request_logout(o->silent);
+#else
+ g_message(_("The SessionLogout actions is not available since Openbox was built without session management support"));
+#endif
+ }
g_free(o);
prompt_unref(p);
}
@@ -67,5 +68,3 @@ static gboolean logout_func(ObActionsData *data, gpointer options)
return FALSE;
}
-
-#endif
diff --git a/openbox/client.c b/openbox/client.c
index c0864bc4..b57d6169 100644
--- a/openbox/client.c
+++ b/openbox/client.c
@@ -414,6 +414,12 @@ void client_manage(Window window, ObPrompt *prompt)
activate ? "yes" : "no");
if (activate) {
gboolean raise = FALSE;
+ gboolean relative_focused = FALSE;
+
+ relative_focused = (focus_client != NULL &&
+ client_search_focus_tree_full(self) != NULL &&
+ client_search_focus_group_full(self) != NULL);
+
/* This is focus stealing prevention */
ob_debug_type(OB_DEBUG_FOCUS,
@@ -444,10 +450,8 @@ void client_manage(Window window, ObPrompt *prompt)
"Not focusing the window because its on another "
"desktop");
}
- /* If something is focused, and it's not our relative... */
- else if (focus_client && client_search_focus_tree_full(self) == NULL &&
- client_search_focus_group_full(self) == NULL)
- {
+ /* If something is focused... */
+ else if (focus_client) {
/* If the user is working in another window right now, then don't
steal focus */
if (event_last_user_time && launch_time &&
@@ -461,8 +465,9 @@ void client_manage(Window window, ObPrompt *prompt)
"Not focusing the window because the user is "
"working in another window");
}
- /* If it's a transient (and its parents aren't focused) */
- else if (client_has_parent(self)) {
+ /* If the new window is a transient (and its relatives aren't
+ focused) */
+ else if (client_has_parent(self) && !relative_focused) {
activate = FALSE;
ob_debug_type(OB_DEBUG_FOCUS,
"Not focusing the window because it is a "
@@ -488,8 +493,11 @@ void client_manage(Window window, ObPrompt *prompt)
"Not focusing the window because another window "
"would get the focus anyway");
}
+ /* Don't move focus if the window is not visible on the current
+ desktop and none of its relatives are focused */
else if (!(self->desktop == screen_desktop ||
- self->desktop == DESKTOP_ALL))
+ self->desktop == DESKTOP_ALL) &&
+ !relative_focused)
{
activate = FALSE;
raise = TRUE;
diff --git a/openbox/prompt.c b/openbox/prompt.c
index 7c19bcb1..d4dcbb7b 100644
--- a/openbox/prompt.c
+++ b/openbox/prompt.c
@@ -28,6 +28,7 @@
#include "gettext.h"
static GList *prompt_list = NULL;
+static GList *prompt_msg_list = NULL;
/* we construct these */
static RrAppearance *prompt_a_bg;
@@ -121,6 +122,9 @@ void prompt_startup(gboolean reconfig)
void prompt_shutdown(gboolean reconfig)
{
+ while (prompt_msg_list)
+ prompt_cancel(prompt_msg_list->data);
+
RrAppearanceFree(prompt_a_button);
RrAppearanceFree(prompt_a_focus);
RrAppearanceFree(prompt_a_press);
@@ -216,6 +220,9 @@ void prompt_unref(ObPrompt *self)
if (self && --self->ref == 0) {
gint i;
+ if (self->mapped)
+ prompt_hide(self);
+
prompt_list = g_list_remove(prompt_list, self);
for (i = 0; i < self->n_buttons; ++i) {
@@ -599,3 +606,21 @@ void prompt_cancel(ObPrompt *self)
if (self->func) self->func(self, self->cancel_result, self->data);
prompt_hide(self);
}
+
+static void prompt_show_message_cb(ObPrompt *p, int res, gpointer data)
+{
+ prompt_msg_list = g_list_remove(prompt_msg_list, p);
+ prompt_unref(p);
+}
+
+void prompt_show_message(const gchar *msg, const gchar *answer)
+{
+ ObPrompt *p;
+ ObPromptAnswer ans[] = {
+ { answer, 0 }
+ };
+
+ p = prompt_new(msg, ans, 1, 0, 0, prompt_show_message_cb, NULL);
+ prompt_msg_list = g_list_prepend(prompt_msg_list, p);
+ prompt_show(p, NULL, FALSE);
+}
diff --git a/openbox/prompt.h b/openbox/prompt.h
index 107aafd1..f51d66d7 100644
--- a/openbox/prompt.h
+++ b/openbox/prompt.h
@@ -107,4 +107,6 @@ gboolean prompt_key_event(ObPrompt *self, XEvent *e);
gboolean prompt_mouse_event(ObPrompt *self, XEvent *e);
void prompt_cancel(ObPrompt *self);
+void prompt_show_message(const gchar *msg, const gchar *answer);
+
#endif
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 200e9ca3..9bd4f66a 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -2,6 +2,7 @@
openbox/actions.c
openbox/actions/execute.c
openbox/actions/exit.c
+openbox/actions/session.c
openbox/client.c
openbox/client_list_combined_menu.c
openbox/client_list_menu.c