2 Copyright (C) 2001-2006, William Joseph.
5 This file is part of GtkRadiant.
7 GtkRadiant is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 GtkRadiant is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GtkRadiant; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 #if !defined( INCLUDED_GTKUTIL_CURSOR_H )
23 #define INCLUDED_GTKUTIL_CURSOR_H
26 #include <uilib/uilib.h>
28 #include "debugging/debugging.h"
30 typedef struct _GdkCursor GdkCursor;
31 typedef struct _GdkEventMotion GdkEventMotion;
33 // NetRadiantCustom disables them but we still make use of them.
35 GdkCursor* create_blank_cursor();
36 void set_cursor( ui::Widget widget, GdkCursorType cursor_type );
37 void blank_cursor( ui::Widget widget );
38 void default_cursor( ui::Widget widget );
40 void Sys_GetCursorPos( ui::Widget widget, int *x, int *y );
41 void Sys_SetCursorPos( ui::Widget widget, int x, int y );
46 typedef void ( *MotionFunction )( gdouble x, gdouble y, guint state, void* data );
47 MotionFunction m_function;
53 static gboolean deferred( DeferredMotion* self ){
55 self->m_function( self->m_x, self->m_y, self->m_state, self->m_data );
59 DeferredMotion( MotionFunction function, void* data ) : m_handler( 0 ), m_function( function ), m_data( data ){
61 void motion( gdouble x, gdouble y, guint state ){
65 if ( m_handler == 0 ) {
66 m_handler = g_idle_add( (GSourceFunc)deferred, this );
69 static gboolean gtk_motion( ui::Widget widget, GdkEventMotion *event, DeferredMotion* self );
72 class DeferredMotionDelta
76 guint m_motion_handler;
77 typedef void ( *MotionDeltaFunction )( int x, int y, void* data );
78 MotionDeltaFunction m_function;
81 static gboolean deferred_motion( gpointer data ){
82 reinterpret_cast<DeferredMotionDelta*>( data )->m_function(
83 reinterpret_cast<DeferredMotionDelta*>( data )->m_delta_x,
84 reinterpret_cast<DeferredMotionDelta*>( data )->m_delta_y,
85 reinterpret_cast<DeferredMotionDelta*>( data )->m_data
87 reinterpret_cast<DeferredMotionDelta*>( data )->m_motion_handler = 0;
88 reinterpret_cast<DeferredMotionDelta*>( data )->m_delta_x = 0;
89 reinterpret_cast<DeferredMotionDelta*>( data )->m_delta_y = 0;
93 DeferredMotionDelta( MotionDeltaFunction function, void* data ) : m_delta_x( 0 ), m_delta_y( 0 ), m_motion_handler( 0 ), m_function( function ), m_data( data ){
96 if ( m_motion_handler != 0 ) {
97 g_source_remove( m_motion_handler );
98 deferred_motion( this );
101 void motion_delta( int x, int y, unsigned int state ){
104 if ( m_motion_handler == 0 ) {
105 m_motion_handler = g_idle_add( deferred_motion, this );
112 unsigned int handle_motion;
113 int recorded_x, recorded_y, last_x, last_y, center_x, center_y;
114 ui::Widget weedjet{ui::null};
115 typedef void ( *MotionDeltaFunction )( int x, int y, unsigned int state, void* data );
116 MotionDeltaFunction m_function;
119 FreezePointer() : handle_motion( 0 ), m_function( 0 ), m_data( 0 ){
121 /* NetRadiantCustom does this instead:
122 static gboolean motion_delta( ui::Window widget, GdkEventMotion *event, FreezePointer* self ); */
123 static gboolean motion_delta( ui::Widget widget, GdkEventMotion *event, FreezePointer* self );
125 /* NetRadiantCustom does this instead:
126 void freeze_pointer( ui::Window window, ui::Widget widget, MotionDeltaFunction function, void* data ); */
127 void freeze_pointer( ui::Widget widget, MotionDeltaFunction function, void* data );
129 /* NetRadiantCustom does this instead:
130 void unfreeze_pointer( ui::Window window ); */
131 void unfreeze_pointer( ui::Widget widget );