]> Dogcows Code - chaz/openbox/commitdiff
make code to show a prompt when you just want to display and message and not do anyth...
authorDana Jansens <danakj@orodu.net>
Sun, 2 Mar 2008 20:02:34 +0000 (15:02 -0500)
committerDana Jansens <danakj@orodu.net>
Sun, 2 Mar 2008 20:02:34 +0000 (15:02 -0500)
openbox/prompt.c
openbox/prompt.h
po/POTFILES.in

index 0278757eadbf29fd9e9f0768abc45c207dd63af2..6084d798a063b05d510d648ec19b7393c93ada8d 100644 (file)
@@ -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);
@@ -218,6 +222,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) {
@@ -600,3 +607,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);
+}
index 89d3d598d8bf5334967e0fe4614756c433e38f69..c4558ad2511bb257716d82fcabf2d34a60018644 100644 (file)
@@ -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
index 85938dee820228b3550891eb7f726e6f5fd76367..bb6beff8988e9e590b0052923a19b2a25cc3c411 100644 (file)
@@ -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
This page took 0.025217 seconds and 4 git commands to generate.