From fd77a0a7b3f892925f203287b8b46c6ec9be94ea Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Tue, 8 Jun 2010 17:50:23 -0400 Subject: Use GMainLoop instead of ObtMainLoop --- obt/mainloop.h | 81 ---------------------------------------------------------- 1 file changed, 81 deletions(-) delete mode 100644 obt/mainloop.h (limited to 'obt/mainloop.h') diff --git a/obt/mainloop.h b/obt/mainloop.h deleted file mode 100644 index f455d629..00000000 --- a/obt/mainloop.h +++ /dev/null @@ -1,81 +0,0 @@ -/* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*- - - obt/mainloop.h for the Openbox window manager - Copyright (c) 2006 Mikael Magnusson - Copyright (c) 2003-2007 Dana Jansens - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - See the COPYING file for a copy of the GNU General Public License. -*/ - -#ifndef __obt_mainloop_h -#define __obt_mainloop_h - -#include -#include - -G_BEGIN_DECLS - -typedef struct _ObtMainLoop ObtMainLoop; - -ObtMainLoop *obt_main_loop_new(void); -void obt_main_loop_ref(ObtMainLoop *loop); -void obt_main_loop_unref(ObtMainLoop *loop); - -typedef void (*ObtMainLoopXHandler) (const XEvent *e, gpointer data); - -void obt_main_loop_x_add(ObtMainLoop *loop, - ObtMainLoopXHandler handler, - gpointer data, - GDestroyNotify notify); -void obt_main_loop_x_remove(ObtMainLoop *loop, - ObtMainLoopXHandler handler); - -typedef void (*ObtMainLoopFdHandler) (gint fd, gpointer data); - -void obt_main_loop_fd_add(ObtMainLoop *loop, - gint fd, - ObtMainLoopFdHandler handler, - gpointer data, - GDestroyNotify notify); -void obt_main_loop_fd_remove(ObtMainLoop *loop, - gint fd); - -typedef void (*ObtMainLoopSignalHandler) (gint signal, gpointer data); - -void obt_main_loop_signal_add(ObtMainLoop *loop, - gint signal, - ObtMainLoopSignalHandler handler, - gpointer data, - GDestroyNotify notify); -void obt_main_loop_signal_remove(ObtMainLoop *loop, - ObtMainLoopSignalHandler handler); - -void obt_main_loop_timeout_add(ObtMainLoop *loop, - gulong microseconds, - GSourceFunc handler, - gpointer data, - GEqualFunc cmp, - GDestroyNotify notify); -void obt_main_loop_timeout_remove(ObtMainLoop *loop, - GSourceFunc handler); -void obt_main_loop_timeout_remove_data(ObtMainLoop *loop, - GSourceFunc handler, - gpointer data, - gboolean cancel_dest); - -void obt_main_loop_run(ObtMainLoop *loop); -void obt_main_loop_exit(ObtMainLoop *loop); - -G_END_DECLS - -#endif -- cgit v1.2.3