summaryrefslogtreecommitdiff
path: root/Source/DirectFB/wm/unique/window.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/DirectFB/wm/unique/window.h')
-rwxr-xr-xSource/DirectFB/wm/unique/window.h135
1 files changed, 135 insertions, 0 deletions
diff --git a/Source/DirectFB/wm/unique/window.h b/Source/DirectFB/wm/unique/window.h
new file mode 100755
index 0000000..be75e96
--- /dev/null
+++ b/Source/DirectFB/wm/unique/window.h
@@ -0,0 +1,135 @@
+/*
+ (c) Copyright 2001-2009 The world wide DirectFB Open Source Community (directfb.org)
+ (c) Copyright 2000-2004 Convergence (integrated media) GmbH
+
+ All rights reserved.
+
+ Written by Denis Oliver Kropp <dok@directfb.org>,
+ Andreas Hundt <andi@fischlustig.de>,
+ Sven Neumann <neo@directfb.org>,
+ Ville Syrjälä <syrjala@sci.fi> and
+ Claudio Ciccani <klan@users.sf.net>.
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+ This library 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
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the
+ Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+*/
+
+#ifndef __UNIQUE__WINDOW_H__
+#define __UNIQUE__WINDOW_H__
+
+#include <core/coretypes.h>
+#include <core/wm.h>
+
+#include <unique/types.h>
+
+
+typedef enum {
+ UWF_NONE = 0x00000000,
+
+ UWF_VISIBLE = 0x00000001,
+ UWF_DECORATED = 0x00000002,
+
+ UWF_DESTROYED = 0x00000010,
+
+ UWF_ALL = 0x00000013
+} UniqueWindowFlags;
+
+
+typedef enum {
+ UWNF_NONE = 0x00000000,
+
+ UWNF_DESTROYED = 0x00000001,
+
+ UWNF_UPDATE = 0x00000010,
+
+ UWNF_ALL = 0x00000011
+} UniqueWindowNotificationFlags;
+
+typedef struct {
+ UniqueWindowNotificationFlags flags;
+ UniqueWindow *window;
+
+ DFBRegion update;
+} UniqueWindowNotification;
+
+
+
+DFBResult unique_window_create ( CoreDFB *core,
+ CoreWindow *window,
+ UniqueContext *context,
+ DFBWindowCapabilities caps,
+ const CoreWindowConfig *config,
+ UniqueWindow **ret_window );
+
+DFBResult unique_window_close ( UniqueWindow *window );
+
+DFBResult unique_window_destroy ( UniqueWindow *window );
+
+
+DFBResult unique_window_notify ( UniqueWindow *window,
+ UniqueWindowNotificationFlags flags );
+
+
+DFBResult unique_window_update ( UniqueWindow *window,
+ const DFBRegion *region,
+ DFBSurfaceFlipFlags flags );
+
+DFBResult unique_window_post_event ( UniqueWindow *window,
+ DFBWindowEvent *event );
+
+DFBResult unique_window_set_config ( UniqueWindow *window,
+ const CoreWindowConfig *config,
+ CoreWindowConfigFlags flags );
+
+DFBResult unique_window_get_config ( UniqueWindow *window,
+ CoreWindowConfig *config );
+
+
+DFBResult unique_window_restack ( UniqueWindow *window,
+ UniqueWindow *relative,
+ int relation );
+
+
+DFBResult unique_window_grab ( UniqueWindow *window,
+ const CoreWMGrab *grab );
+
+DFBResult unique_window_ungrab ( UniqueWindow *window,
+ const CoreWMGrab *grab );
+
+DFBResult unique_window_request_focus( UniqueWindow *window );
+
+
+
+
+/*
+ * Creates a pool of window objects.
+ */
+FusionObjectPool *unique_window_pool_create( const FusionWorld *world );
+
+/*
+ * Generates unique_window_ref(), unique_window_attach() etc.
+ */
+FUSION_OBJECT_METHODS( UniqueWindow, unique_window )
+
+
+/* global reactions */
+
+typedef enum {
+ UNIQUE_WM_MODULE_WINDOW_LISTENER
+} UNIQUE_WINDOW_GLOBALS;
+
+
+#endif
+