summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 37c049d)
raw | patch | inline | side by side (parent: 37c049d)
author | cilix42 <cilix42@users.sourceforge.net> | |
Tue, 18 Dec 2007 11:28:48 +0000 (11:28 +0000) | ||
committer | cilix42 <cilix42@users.sourceforge.net> | |
Tue, 18 Dec 2007 11:28:48 +0000 (11:28 +0000) |
src/event-context.cpp | patch | blob | history |
diff --git a/src/event-context.cpp b/src/event-context.cpp
index 7fca5accb0dd6e7db16d7d994fa74b16f2f84cc7..6186bb36f4787b68113a3555e3910a183d04b865 100644 (file)
--- a/src/event-context.cpp
+++ b/src/event-context.cpp
static bool selector_toggled = FALSE;
static int switch_selector_to = 0;
+// globals for temporary switching to dropper by 'D'
+static bool dropper_toggled = FALSE;
+static int switch_dropper_to = 0;
+
static gint xp = 0, yp = 0; // where drag started
static gint tolerance = 0;
static bool within_tolerance = false;
}
}
+/**
+ * Toggles current tool between active tool and selector tool.
+ * Subroutine of sp_event_context_private_root_handler().
+ */
+static void
+sp_toggle_dropper(SPDesktop *dt)
+{
+ if (!dt->event_context) return;
+
+ if (tools_isactive(dt, TOOLS_DROPPER)) {
+ if (dropper_toggled) {
+ if (switch_dropper_to) tools_switch (dt, switch_dropper_to);
+ dropper_toggled = FALSE;
+ } else return;
+ } else {
+ dropper_toggled = TRUE;
+ switch_dropper_to = tools_active(dt);
+ tools_switch (dt, TOOLS_DROPPER);
+ }
+}
+
/**
* Calculates and keeps track of scroll acceleration.
* Subroutine of sp_event_context_private_root_handler().
@@ -495,6 +520,11 @@ static gint sp_event_context_private_root_handler(SPEventContext *event_context,
ret = sp_shortcut_invoke(shortcut, desktop);
break;
+ case GDK_D:
+ case GDK_d:
+ sp_toggle_dropper(desktop);
+ ret = TRUE;
+ break;
case GDK_W:
case GDK_w:
case GDK_F4: