aboutsummaryrefslogtreecommitdiffstats
path: root/matchbox/mb-wm-main-context.h
diff options
context:
space:
mode:
Diffstat (limited to 'matchbox/mb-wm-main-context.h')
-rw-r--r--matchbox/mb-wm-main-context.h150
1 files changed, 0 insertions, 150 deletions
diff --git a/matchbox/mb-wm-main-context.h b/matchbox/mb-wm-main-context.h
deleted file mode 100644
index 6a84cc2..0000000
--- a/matchbox/mb-wm-main-context.h
+++ /dev/null
@@ -1,150 +0,0 @@
-/*
- * Matchbox Window Manager II - A lightweight window manager not for the
- * desktop.
- *
- * Authored By Matthew Allum <mallum@o-hand.com>
- *
- * Copyright (c) 2005 OpenedHand Ltd - http://o-hand.com
- *
- * 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, 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.
- *
- */
-
-#ifndef _HAVE_MB_MAIN_CONTEXT_H
-#define _HAVE_MB_MAIN_CONTEXT_H
-
-#include <matchbox/mb-wm-object.h>
-#include <matchbox/mb-wm-manager.h>
-#include <poll.h>
-
-#define MB_WM_MAIN_CONTEXT(c) ((MBWMMainContext*)(c))
-#define MB_WM_MAIN_CONTEXT_CLASS(c) ((MBWMMainContextClass*)(c))
-#define MB_WM_TYPE_MAIN_CONTEXT (mb_wm_main_context_class_type ())
-#define MB_WM_IS_MAIN_CONTEXT(c) (MB_WM_OBJECT_TYPE(c)==MB_WM_TYPE_MAIN_CONTEXT)
-
-/* XXX: we have a circular dependency between mb-wm-main-context.h
- * and mb-window-manager.h */
-#ifndef MB_WM_MAIN_CONTEXT_TYPEDEF_DEFINED
-typedef struct MBWMMainContext MBWMMainContext;
-#define MB_WM_MAIN_CONTEXT_TYPEDEF_DEFINED
-#endif
-typedef struct MBWMMainContextClass MBWMMainContextClass;
-
-typedef Bool (*MBWMMainContextXEventFunc) (XEvent * xev, void * userdata);
-
-typedef struct MBWMEventFuncs
-{
- /* FIXME: figure our X wrap / unwrap mechanism */
- GList *map_notify;
- GList *unmap_notify;
- GList *map_request;
- GList *destroy_notify;
- GList *configure_request;
- GList *configure_notify;
- GList *key_press;
- GList *property_notify;
- GList *button_press;
- GList *button_release;
- GList *motion_notify;
- GList *client_message;
-
-#if ENABLE_COMPOSITE
- GList *damage_notify;
-#endif
-
-#if ! USE_GLIB_MAINLOOP
- GList *timeout;
- GList *fd_watch;
-#endif
-}
-MBWMEventFuncs;
-
-struct MBWMMainContext
-{
- MBWMObject parent;
-
- MBWMManager *wm;
-
- MBWMEventFuncs event_funcs;
- struct pollfd *poll_fds;
- int n_poll_fds;
- Bool poll_cache_dirty;
-};
-
-struct MBWMMainContextClass
-{
- MBWMObjectClass parent;
-};
-
-int
-mb_wm_main_context_class_type ();
-
-MBWMMainContext*
-mb_wm_main_context_new(MBWMManager *wm);
-
-unsigned long
-mb_wm_main_context_x_event_handler_add (MBWMMainContext *ctx,
- Window xwin,
- int type,
- MBWMXEventFunc func,
- void *userdata);
-
-void
-mb_wm_main_context_x_event_handler_remove (MBWMMainContext *ctx,
- int type,
- unsigned long id);
-
-unsigned long
-mb_wm_main_context_timeout_handler_add (MBWMMainContext *ctx,
- int ms,
- MBWMManagerTimeOutFunc func,
- void *userdata);
-
-void
-mb_wm_main_context_timeout_handler_remove (MBWMMainContext *ctx,
- unsigned long id);
-
-MBWMIOChannel *
-mb_wm_main_context_io_channel_new (int fd);
-
-void
-mb_wm_main_context_io_channel_destroy (MBWMIOChannel * channel);
-
-int
-mb_wm_main_context_io_channel_get_fd (MBWMIOChannel * channel);
-
-unsigned long
-mb_wm_main_context_fd_watch_add (MBWMMainContext *ctx,
- MBWMIOChannel *channel,
- MBWMIOCondition events,
- MBWMManagerFdWatchFunc func,
- void *userdata);
-
-void
-mb_wm_main_context_fd_watch_remove (MBWMMainContext *ctx,
- unsigned long id);
-
-#if USE_GLIB_MAINLOOP
-gboolean
-mb_wm_main_context_gloop_xevent (gpointer userdata);
-#endif
-
-Bool
-mb_wm_main_context_handle_x_event (XEvent *xev,
- MBWMMainContext *ctx);
-
-void
-mb_wm_main_context_loop (MBWMMainContext *ctx);
-
-Bool
-mb_wm_main_context_spin_loop (MBWMMainContext *ctx);
-
-#endif