summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-04-25 20:04:25 +0000
committerDana Jansens <danakj@orodu.net>2007-04-25 20:04:25 +0000
commitdf9b2294dbeaedb6ba1af833d0c09f1a294702e9 (patch)
tree42b4937c9096c3fbf070aa27025c62d56de7a488
parentb5dbe857db4d691b5a909a1e596f15cdc80c633a (diff)
add a popup dialog that shows where you are in a keychain
-rw-r--r--openbox/keyboard.c59
-rw-r--r--openbox/keytree.c12
2 files changed, 40 insertions, 31 deletions
diff --git a/openbox/keyboard.c b/openbox/keyboard.c
index f9716c30..7241c93c 100644
--- a/openbox/keyboard.c
+++ b/openbox/keyboard.c
@@ -32,12 +32,11 @@
#include "keyboard.h"
#include "translate.h"
#include "moveresize.h"
+#include "popup.h"
#include "gettext.h"
#include <glib.h>
-KeyBindingTree *keyboard_firstnode;
-
typedef struct {
guint state;
ObClient *client;
@@ -45,61 +44,70 @@ typedef struct {
ObFrameContext context;
} ObInteractiveState;
+KeyBindingTree *keyboard_firstnode = NULL;
+static ObPopup *popup = NULL;
static GSList *interactive_states;
-
static KeyBindingTree *curpos;
-static void grab_for_window(Window win, gboolean grab)
+static void grab_keys(gboolean grab)
{
KeyBindingTree *p;
- ungrab_all_keys(win);
+ ungrab_all_keys(RootWindow(ob_display, ob_screen));
if (grab) {
p = curpos ? curpos->first_child : keyboard_firstnode;
while (p) {
- grab_key(p->key, p->state, win, GrabModeAsync);
+ grab_key(p->key, p->state, RootWindow(ob_display, ob_screen),
+ GrabModeAsync);
p = p->next_sibling;
}
if (curpos)
grab_key(config_keyboard_reset_keycode,
config_keyboard_reset_state,
- win, GrabModeAsync);
+ RootWindow(ob_display, ob_screen), GrabModeAsync);
}
}
-static void grab_keys(gboolean grab)
+static gboolean chain_timeout(gpointer data)
{
- GList *it;
+ keyboard_reset_chains();
- grab_for_window(screen_support_win, grab);
- grab_for_window(RootWindow(ob_display, ob_screen), grab);
+ return FALSE; /* don't repeat */
}
-static gboolean chain_timeout(gpointer data)
+static void set_curpos(KeyBindingTree *newpos)
{
- keyboard_reset_chains();
+ grab_keys(FALSE);
+ curpos = newpos;
+ grab_keys(TRUE);
- return FALSE; /* don't repeat */
+ if (curpos != NULL) {
+ gchar *text = NULL;
+ GList *it;
+
+ for (it = curpos->keylist; it; it = g_list_next(it))
+ text = g_strconcat((text ? text : ""), it->data, "-", NULL);
+
+ popup_position(popup, NorthWestGravity, 10, 10);
+ popup_show(popup, text);
+ g_free(text);
+ } else
+ popup_hide(popup);
}
void keyboard_reset_chains()
{
ob_main_loop_timeout_remove(ob_main_loop, chain_timeout);
- if (curpos) {
- grab_keys(FALSE);
- curpos = NULL;
- grab_keys(TRUE);
- }
+ if (curpos)
+ set_curpos(NULL);
}
void keyboard_unbind_all()
{
tree_destroy(keyboard_firstnode);
keyboard_firstnode = NULL;
- grab_keys(FALSE);
- curpos = NULL;
}
gboolean keyboard_bind(GList *keylist, ObAction *action)
@@ -269,9 +277,7 @@ void keyboard_event(ObClient *client, const XEvent *e)
ob_main_loop_timeout_add(ob_main_loop, 5 * G_USEC_PER_SEC,
chain_timeout, NULL,
g_direct_equal, NULL);
- grab_keys(FALSE);
- curpos = p;
- grab_keys(TRUE);
+ set_curpos(p);
} else {
keyboard_reset_chains();
@@ -294,6 +300,7 @@ gboolean keyboard_interactively_grabbed()
void keyboard_startup(gboolean reconfig)
{
grab_keys(TRUE);
+ popup = popup_new(FALSE);
if (!reconfig)
client_add_destructor(keyboard_interactive_end_client, NULL);
@@ -314,5 +321,9 @@ void keyboard_shutdown(gboolean reconfig)
ob_main_loop_timeout_remove(ob_main_loop, chain_timeout);
keyboard_unbind_all();
+ set_curpos(NULL);
+
+ popup_free(popup);
+ popup = NULL;
}
diff --git a/openbox/keytree.c b/openbox/keytree.c
index e86fb4c6..b41b1cf7 100644
--- a/openbox/keytree.c
+++ b/openbox/keytree.c
@@ -52,16 +52,14 @@ KeyBindingTree *tree_build(GList *keylist)
return NULL; /* nothing in the list.. */
for (it = g_list_last(keylist); it; it = g_list_previous(it)) {
+ GList *kit;
+
p = ret;
ret = g_new0(KeyBindingTree, 1);
- if (p == NULL) {
- GList *it;
- /* this is the first built node, the bottom node of the tree */
- ret->keylist = g_list_copy(keylist); /* shallow copy */
- for (it = ret->keylist; it; it = g_list_next(it)) /* deep copy */
- it->data = g_strdup(it->data);
- }
+ for (kit = it; kit != NULL; kit = g_list_previous(kit))
+ ret->keylist = g_list_prepend(ret->keylist,
+ g_strdup(kit->data)); /* deep copy */
ret->first_child = p;
if (!translate_key(it->data, &ret->state, &ret->key)) {
tree_destroy(ret);