summaryrefslogtreecommitdiff
path: root/openbox/dock.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-08-30 07:20:16 +0000
committerDana Jansens <danakj@orodu.net>2003-08-30 07:20:16 +0000
commitde4f92ccc66c1dad1a2820a07d1f0161bd61a855 (patch)
tree6e782bca4561b33808d7b96c5df77895093ee3b3 /openbox/dock.c
parent952ca245714e334090ea6baced5eb75d06f99e18 (diff)
using the ObMainLoop, which rulz the planet
Diffstat (limited to 'openbox/dock.c')
-rw-r--r--openbox/dock.c20
1 files changed, 7 insertions, 13 deletions
diff --git a/openbox/dock.c b/openbox/dock.c
index 07f2dbe0..df176d66 100644
--- a/openbox/dock.c
+++ b/openbox/dock.c
@@ -1,5 +1,6 @@
#include "debug.h"
#include "dock.h"
+#include "mainloop.h"
#include "screen.h"
#include "prop.h"
#include "config.h"
@@ -522,15 +523,13 @@ void dock_app_drag(ObDockApp *app, XMotionEvent *e)
dock_configure();
}
-static void hide_timeout(void *n)
+static gboolean hide_timeout(gpointer data)
{
- /* dont repeat */
- timer_stop(dock->hide_timer);
- dock->hide_timer = NULL;
-
/* hide */
dock->hidden = TRUE;
dock_configure();
+
+ return FALSE; /* don't repeat */
}
void dock_hide(gboolean hide)
@@ -543,14 +542,9 @@ void dock_hide(gboolean hide)
dock_configure();
/* if was hiding, stop it */
- if (dock->hide_timer) {
- timer_stop(dock->hide_timer);
- dock->hide_timer = NULL;
- }
+ ob_main_loop_timeout_remove(ob_main_loop, hide_timeout);
} else {
- g_assert(!dock->hide_timer);
- dock->hide_timer = timer_start(config_dock_hide_timeout * 1000,
- (ObTimeoutHandler)hide_timeout,
- NULL);
+ ob_main_loop_timeout_add(ob_main_loop, config_dock_hide_timeout * 1000,
+ hide_timeout, NULL, NULL);
}
}