diff options
author | portix <portix@gmx.net> | 2013-02-27 02:43:43 +0100 |
---|---|---|
committer | portix <portix@gmx.net> | 2013-02-27 02:43:43 +0100 |
commit | bae4b8f78ff3ece1e926bfb386b6918743132e53 (patch) | |
tree | f77e77038607f2ac5c9ad9e8a1b6d1ca5771bbf4 | |
parent | ce38b37da1fadbca561439d1a8a22c3abf217d70 (diff) | |
download | dwb-bae4b8f78ff3ece1e926bfb386b6918743132e53.zip |
Fixing ignored '@'-shortcut; return value from function.debug; util.dispatchEvent
-rw-r--r-- | scripts/lib/dwb.js | 3 | ||||
-rw-r--r-- | src/dwb.c | 6 | ||||
-rw-r--r-- | src/scripts.c | 35 |
3 files changed, 43 insertions, 1 deletions
diff --git a/scripts/lib/dwb.js b/scripts/lib/dwb.js index f0ee0b75..11ebb69f 100644 --- a/scripts/lib/dwb.js +++ b/scripts/lib/dwb.js @@ -228,7 +228,7 @@ return function() { try { - this.apply(this, arguments); + return this.apply(this, arguments); } catch (e) { @@ -237,6 +237,7 @@ else io.debug(e); } + return undefined; }.bind(this); } }); @@ -2647,6 +2647,12 @@ dwb_get_key(GdkEventKey *e, unsigned int *mod_mask, gboolean *isprint) *isprint = false; if (key != NULL) { + char *tmp = key; + if (*key == '@') + { + key = g_strdup("\\@"); + g_free(tmp); + } *mod_mask = CLEAN_STATE(e); *isprint = true; } diff --git a/src/scripts.c b/src/scripts.c index aca193c6..97650141 100644 --- a/src/scripts.c +++ b/src/scripts.c @@ -53,6 +53,8 @@ #define G_FILE_TEST_VALID (G_FILE_TEST_IS_REGULAR | G_FILE_TEST_IS_SYMLINK | G_FILE_TEST_IS_DIR | G_FILE_TEST_IS_EXECUTABLE | G_FILE_TEST_EXISTS) #define TRY_CONTEXT_LOCK (pthread_rwlock_tryrdlock(&s_context_lock) == 0) #define CONTEXT_UNLOCK (pthread_rwlock_unlock(&s_context_lock)) +#define IS_KEY_EVENT(X) (((int)(X)) == GDK_KEY_PRESS || ((int)(X)) == GDK_KEY_RELEASE) +#define IS_BUTTON_EVENT(X) (((int)(X)) == GDK_BUTTON_PRESS || ((int)(X)) == GDK_BUTTON_RELEASE) static pthread_rwlock_t s_context_lock = PTHREAD_RWLOCK_INITIALIZER; @@ -1607,6 +1609,38 @@ util_get_mode(JSContextRef ctx, JSObjectRef f, JSObjectRef thisObject, size_t ar { return JSValueMakeNumber(ctx, BASIC_MODES(dwb.state.mode)); } + +static JSValueRef +util_dispatch_event(JSContextRef ctx, JSObjectRef f, JSObjectRef thisObject, size_t argc, const JSValueRef argv[], JSValueRef* exc) +{ + gboolean result = false; + if (argc < 3) + return JSValueMakeBoolean(ctx, false); + double type = JSValueToNumber(ctx, argv[0], exc); + if (isnan(type) || (!(IS_KEY_EVENT(type)))) + return JSValueMakeBoolean(ctx, false); + + GdkEvent *e = gdk_event_new((int)type); + GdkWindow *window = gtk_widget_get_window(dwb.gui.window); + ((GdkEventAny*)e)->window = window; + + double state = JSValueToNumber(ctx, argv[1], exc); + if (isnan(state)) + goto error_out; + ((GdkEventKey*)e)->state = state; + if (IS_KEY_EVENT(type)) + { + double keyval = JSValueToNumber(ctx, argv[2], exc); + if (isnan(keyval)) + goto error_out; + ((GdkEventKey*)e)->keyval = keyval; + gdk_event_put(e); + result = true; + } + // TODO button event +error_out: + return JSValueMakeBoolean(ctx, result); +} static GdkAtom atom_from_jsvalue(JSContextRef ctx, JSValueRef val, JSValueRef *exc) { @@ -3139,6 +3173,7 @@ create_global_object() { "domainFromHost", util_domain_from_host, kJSDefaultAttributes }, { "markupEscape", util_markup_escape, kJSDefaultAttributes }, { "getMode", util_get_mode, kJSDefaultAttributes }, + { "dispatchEvent", util_dispatch_event, kJSDefaultAttributes }, { 0, 0, 0 }, }; class = create_class("util", util_functions, NULL); |