]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/cursor.cpp
implementing pure carbon event behaviour, getting rid of doubly executed events
[wxWidgets.git] / src / gtk / cursor.cpp
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: cursor.cpp
3// Purpose:
4// Author: Robert Roebling
dbf858b5 5// Id: $Id$
01111366 6// Copyright: (c) 1998 Robert Roebling
65571936 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
14f355c2
VS
10// For compilers that support precompilation, includes "wx.h".
11#include "wx/wxprec.h"
12
c801d85f 13#include "wx/cursor.h"
4dcaf11a 14#include "wx/utils.h"
d1dea842 15#include "wx/app.h"
c801d85f 16
071a2d78 17#include <gdk/gdk.h>
a1db952f 18#include <gtk/gtk.h>
83624f79 19
238d735d
RR
20//-----------------------------------------------------------------------------
21// idle system
22//-----------------------------------------------------------------------------
23
24extern void wxapp_install_idle_handler();
25extern bool g_isIdle;
26
c801d85f
KB
27//-----------------------------------------------------------------------------
28// wxCursor
29//-----------------------------------------------------------------------------
30
31class wxCursorRefData: public wxObjectRefData
32{
33 public:
8bbe427f
VZ
34
35 wxCursorRefData();
36 ~wxCursorRefData();
37
c801d85f
KB
38 GdkCursor *m_cursor;
39};
40
8bbe427f 41wxCursorRefData::wxCursorRefData()
c801d85f 42{
2d17d68f 43 m_cursor = (GdkCursor *) NULL;
ff7b1510 44}
c801d85f 45
8bbe427f 46wxCursorRefData::~wxCursorRefData()
c801d85f 47{
2d17d68f 48 if (m_cursor) gdk_cursor_destroy( m_cursor );
ff7b1510 49}
c801d85f
KB
50
51//-----------------------------------------------------------------------------
52
53#define M_CURSORDATA ((wxCursorRefData *)m_refData)
54
55IMPLEMENT_DYNAMIC_CLASS(wxCursor,wxObject)
56
8bbe427f 57wxCursor::wxCursor()
c801d85f 58{
7eff657c 59
ff7b1510 60}
c801d85f 61
debe6624 62wxCursor::wxCursor( int cursorId )
c801d85f 63{
2d17d68f
RR
64 m_refData = new wxCursorRefData();
65
66 GdkCursorType gdk_cur = GDK_LEFT_PTR;
67 switch (cursorId)
68 {
76471ff7
VZ
69 case wxCURSOR_BLANK:
70 {
71 static const gchar bits[] = { 0 };
defdd888 72 static /* const -- not in GTK1 */ GdkColor color = { 0, 0, 0, 0 };
76471ff7
VZ
73
74 GdkPixmap *pixmap = gdk_bitmap_create_from_data(NULL, bits, 1, 1);
75 M_CURSORDATA->m_cursor = gdk_cursor_new_from_pixmap(pixmap,
76 pixmap,
77 &color,
78 &color,
79 0, 0);
80 }
81 return;
82
15dadf31 83 case wxCURSOR_ARROW: // fall through to default
f7bdcdd7 84 case wxCURSOR_DEFAULT: gdk_cur = GDK_LEFT_PTR; break;
15dadf31 85 case wxCURSOR_RIGHT_ARROW: gdk_cur = GDK_RIGHT_PTR; break;
2d17d68f
RR
86 case wxCURSOR_HAND: gdk_cur = GDK_HAND1; break;
87 case wxCURSOR_CROSS: gdk_cur = GDK_CROSSHAIR; break;
88 case wxCURSOR_SIZEWE: gdk_cur = GDK_SB_H_DOUBLE_ARROW; break;
89 case wxCURSOR_SIZENS: gdk_cur = GDK_SB_V_DOUBLE_ARROW; break;
83f96286 90 case wxCURSOR_ARROWWAIT:
7c39369e 91 case wxCURSOR_WAIT:
2d17d68f
RR
92 case wxCURSOR_WATCH: gdk_cur = GDK_WATCH; break;
93 case wxCURSOR_SIZING: gdk_cur = GDK_SIZING; break;
94 case wxCURSOR_SPRAYCAN: gdk_cur = GDK_SPRAYCAN; break;
95 case wxCURSOR_IBEAM: gdk_cur = GDK_XTERM; break;
96 case wxCURSOR_PENCIL: gdk_cur = GDK_PENCIL; break;
97 case wxCURSOR_NO_ENTRY: gdk_cur = GDK_PIRATE; break;
7c39369e 98 case wxCURSOR_SIZENWSE:
2d17d68f
RR
99 case wxCURSOR_SIZENESW: gdk_cur = GDK_FLEUR; break;
100 case wxCURSOR_QUESTION_ARROW: gdk_cur = GDK_QUESTION_ARROW; break;
7c39369e
VZ
101 case wxCURSOR_PAINT_BRUSH: gdk_cur = GDK_SPRAYCAN; break;
102 case wxCURSOR_MAGNIFIER: gdk_cur = GDK_PLUS; break;
103 case wxCURSOR_CHAR: gdk_cur = GDK_XTERM; break;
2d17d68f
RR
104 case wxCURSOR_LEFT_BUTTON: gdk_cur = GDK_LEFTBUTTON; break;
105 case wxCURSOR_MIDDLE_BUTTON: gdk_cur = GDK_MIDDLEBUTTON; break;
106 case wxCURSOR_RIGHT_BUTTON: gdk_cur = GDK_RIGHTBUTTON; break;
13971833
RD
107 case wxCURSOR_BULLSEYE: gdk_cur = GDK_TARGET; break;
108
957d856c
VZ
109 case wxCURSOR_POINT_LEFT: gdk_cur = GDK_SB_LEFT_ARROW; break;
110 case wxCURSOR_POINT_RIGHT: gdk_cur = GDK_SB_RIGHT_ARROW; break;
c801d85f 111/*
7c39369e
VZ
112 case wxCURSOR_DOUBLE_ARROW: gdk_cur = GDK_DOUBLE_ARROW; break;
113 case wxCURSOR_CROSS_REVERSE: gdk_cur = GDK_CROSS_REVERSE; break;
2d17d68f
RR
114 case wxCURSOR_BASED_ARROW_UP: gdk_cur = GDK_BASED_ARROW_UP; break;
115 case wxCURSOR_BASED_ARROW_DOWN: gdk_cur = GDK_BASED_ARROW_DOWN; break;
c801d85f 116*/
76471ff7 117
7c39369e 118 default:
223d09f6 119 wxFAIL_MSG(wxT("unsupported cursor type"));
7c39369e 120 // will use the standard one
7c39369e 121 break;
2d17d68f 122 }
8bbe427f 123
2d17d68f 124 M_CURSORDATA->m_cursor = gdk_cursor_new( gdk_cur );
ff7b1510 125}
c801d85f 126
c2fa61e8 127extern GtkWidget *wxGetRootWindow();
a1db952f
VS
128
129wxCursor::wxCursor(const char bits[], int width, int height,
130 int hotSpotX, int hotSpotY,
131 const char maskBits[], wxColour *fg, wxColour *bg)
132{
133 if (!maskBits)
134 maskBits = bits;
135 if (!fg)
136 fg = wxBLACK;
137 if (!bg)
138 bg = wxWHITE;
139 if (hotSpotX < 0 || hotSpotX >= width)
140 hotSpotX = 0;
141 if (hotSpotY < 0 || hotSpotY >= height)
142 hotSpotY = 0;
143
c2fa61e8
RD
144 GdkBitmap *data = gdk_bitmap_create_from_data( wxGetRootWindow()->window, (gchar *) bits, width, height );
145 GdkBitmap *mask = gdk_bitmap_create_from_data( wxGetRootWindow()->window, (gchar *) maskBits, width, height);
a1db952f
VS
146
147 m_refData = new wxCursorRefData;
148 M_CURSORDATA->m_cursor = gdk_cursor_new_from_pixmap(
149 data, mask, fg->GetColor(), bg->GetColor(),
150 hotSpotX, hotSpotY );
151
152 gdk_bitmap_unref( data );
153 gdk_bitmap_unref( mask );
154}
155
156
c801d85f 157wxCursor::wxCursor( const wxCursor &cursor )
d84afea9 158 : wxObject()
c801d85f 159{
2d17d68f 160 Ref( cursor );
ff7b1510 161}
c801d85f 162
7eff657c 163#if wxUSE_IMAGE
0fc5dbf5 164
7eff657c
JS
165wxCursor::wxCursor( const wxImage & image )
166{
167 unsigned char * rgbBits = image.GetData();
0fc5dbf5
VZ
168 int w = image.GetWidth() ;
169 int h = image.GetHeight();
170 bool bHasMask = image.HasMask();
7eff657c
JS
171 int imagebitcount = (w*h)/8;
172
7eff657c
JS
173 unsigned char * bits = new unsigned char [imagebitcount];
174 unsigned char * maskBits = new unsigned char [imagebitcount];
175
0fc5dbf5 176 int i, j, i8; unsigned char c, cMask;
7eff657c 177 for (i=0; i<imagebitcount; i++)
0fc5dbf5 178 {
7eff657c
JS
179 bits[i] = 0;
180 i8 = i * 8;
181
182 cMask = 1;
183 for (j=0; j<8; j++)
0fc5dbf5
VZ
184 {
185 // possible overflow if we do the summation first ?
186 c = rgbBits[(i8+j)*3]/3 + rgbBits[(i8+j)*3+1]/3 + rgbBits[(i8+j)*3+2]/3;
187 //if average value is > mid grey
188 if (c>127)
189 bits[i] = bits[i] | cMask;
190 cMask = cMask * 2;
7eff657c 191 }
0fc5dbf5
VZ
192 }
193
194 unsigned long keyMaskColor;
7eff657c 195 if (bHasMask)
0fc5dbf5
VZ
196 {
197 unsigned char
198 r = image.GetMaskRed(),
199 g = image.GetMaskGreen(),
200 b = image.GetMaskBlue();
7eff657c
JS
201
202 for (i=0; i<imagebitcount; i++)
203 {
0fc5dbf5
VZ
204 maskBits[i] = 0x0;
205 i8 = i * 8;
7eff657c 206
0fc5dbf5
VZ
207 cMask = 1;
208 for (j=0; j<8; j++)
209 {
210 if (rgbBits[(i8+j)*3] != r || rgbBits[(i8+j)*3+1] != g || rgbBits[(i8+j)*3+2] != b)
211 maskBits[i] = maskBits[i] | cMask;
212 cMask = cMask * 2;
213 }
7eff657c 214 }
0fc5dbf5
VZ
215
216 keyMaskColor = (r << 16) | (g << 8) | b;
217 }
218 else // no mask
219 {
7eff657c 220 for (i=0; i<imagebitcount; i++)
0fc5dbf5
VZ
221 maskBits[i] = 0xFF;
222
223 // init it to avoid compiler warnings
224 keyMaskColor = 0;
225 }
226
fa1fcc66 227 // find the most frequent color(s)
952ae1e8 228 wxImageHistogram histogram;
fa1fcc66 229 image.ComputeHistogram(histogram);
7eff657c 230
0fc5dbf5 231 // colors as rrggbb
7eff657c 232 unsigned long key;
952ae1e8 233 unsigned long value;
7eff657c 234
fa1fcc66 235 long colMostFreq = 0;
952ae1e8 236 unsigned long nMost = 0;
fa1fcc66 237 long colNextMostFreq = 0;
952ae1e8 238 unsigned long nNext = 0;
fa1fcc66
VZ
239 for ( wxImageHistogram::iterator entry = histogram.begin();
240 entry != histogram.end();
241 ++entry )
7eff657c 242 {
952ae1e8
VS
243 value = entry->second.value;
244 key = entry->first;
245 if ( !bHasMask || (key != keyMaskColor) )
7eff657c 246 {
952ae1e8 247 if (value > nMost)
7eff657c 248 {
952ae1e8 249 nMost = value;
fa1fcc66 250 colMostFreq = key;
7eff657c 251 }
952ae1e8 252 else if (value > nNext)
7eff657c 253 {
952ae1e8 254 nNext = value;
fa1fcc66 255 colNextMostFreq = key;
7eff657c
JS
256 }
257 }
258 }
259
fa1fcc66
VZ
260 wxColour fg = wxColour ( (unsigned char)(colMostFreq >> 16),
261 (unsigned char)(colMostFreq >> 8),
262 (unsigned char)(colMostFreq) );
7eff657c 263
fa1fcc66
VZ
264 wxColour bg = wxColour ( (unsigned char)(colNextMostFreq >> 16),
265 (unsigned char)(colNextMostFreq >> 8),
266 (unsigned char)(colNextMostFreq) );
7eff657c 267
624d506b
CE
268 int fg_intensity = fg.Red() + fg.Green() + fg.Blue();
269 int bg_intensity = bg.Red() + bg.Green() + bg.Blue();
86e69fa5
MR
270
271 if (bg_intensity > fg_intensity)
272 {
624d506b
CE
273 //swap fg and bg
274 wxColour tmp = fg;
275 fg = bg;
276 bg = tmp;
86e69fa5 277 }
624d506b 278
fa1fcc66
VZ
279 int hotSpotX;
280 int hotSpotY;
7eff657c 281
671d2130
MB
282 if (image.HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_X))
283 hotSpotX = image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X);
fa1fcc66
VZ
284 else
285 hotSpotX = 0;
286
671d2130
MB
287 if (image.HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y))
288 hotSpotY = image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y);
fa1fcc66
VZ
289 else
290 hotSpotY = 0;
15dadf31 291
7eff657c 292 if (hotSpotX < 0 || hotSpotX >= w)
952ae1e8 293 hotSpotX = 0;
7eff657c 294 if (hotSpotY < 0 || hotSpotY >= h)
952ae1e8 295 hotSpotY = 0;
7eff657c 296
fa1fcc66
VZ
297 GdkBitmap *data = gdk_bitmap_create_from_data(wxGetRootWindow()->window,
298 (gchar *) bits, w, h);
299 GdkBitmap *mask = gdk_bitmap_create_from_data(wxGetRootWindow()->window,
300 (gchar *) maskBits, w, h);
7eff657c
JS
301
302 m_refData = new wxCursorRefData;
fa1fcc66
VZ
303 M_CURSORDATA->m_cursor = gdk_cursor_new_from_pixmap
304 (
305 data,
306 mask,
307 fg.GetColor(), bg.GetColor(),
308 hotSpotX, hotSpotY
309 );
7eff657c
JS
310
311 gdk_bitmap_unref( data );
312 gdk_bitmap_unref( mask );
0fc5dbf5 313 delete [] bits;
7eff657c 314 delete [] maskBits;
7eff657c 315}
0fc5dbf5
VZ
316
317#endif // wxUSE_IMAGE
7eff657c 318
8bbe427f 319wxCursor::~wxCursor()
c801d85f 320{
ff7b1510 321}
c801d85f
KB
322
323wxCursor& wxCursor::operator = ( const wxCursor& cursor )
324{
7c39369e
VZ
325 if (*this == cursor)
326 return (*this);
327
2d17d68f 328 Ref( cursor );
7c39369e 329
2d17d68f 330 return *this;
ff7b1510 331}
c801d85f 332
8bbe427f 333bool wxCursor::operator == ( const wxCursor& cursor ) const
c801d85f 334{
2d17d68f 335 return m_refData == cursor.m_refData;
ff7b1510 336}
c801d85f 337
8bbe427f 338bool wxCursor::operator != ( const wxCursor& cursor ) const
c801d85f 339{
2d17d68f 340 return m_refData != cursor.m_refData;
ff7b1510 341}
c801d85f 342
8bbe427f 343bool wxCursor::Ok() const
c801d85f 344{
2d17d68f 345 return (m_refData != NULL);
ff7b1510 346}
c801d85f 347
8bbe427f 348GdkCursor *wxCursor::GetCursor() const
c801d85f 349{
2d17d68f 350 return M_CURSORDATA->m_cursor;
ff7b1510 351}
c801d85f
KB
352
353//-----------------------------------------------------------------------------
354// busy cursor routines
355//-----------------------------------------------------------------------------
356
238d735d 357extern wxCursor g_globalCursor;
7c39369e 358
238d735d 359static wxCursor gs_savedCursor;
89a43902 360static int gs_busyCount = 0;
c801d85f 361
f6bcfd97
BP
362const wxCursor &wxBusyCursor::GetStoredCursor()
363{
364 return gs_savedCursor;
365}
366
367const wxCursor wxBusyCursor::GetBusyCursor()
368{
369 return wxCursor(wxCURSOR_WATCH);
370}
371
8bbe427f 372void wxEndBusyCursor()
c801d85f 373{
238d735d 374 if (--gs_busyCount > 0)
89a43902
VZ
375 return;
376
238d735d
RR
377 wxSetCursor( gs_savedCursor );
378 gs_savedCursor = wxNullCursor;
13971833 379
d1dea842 380 if (wxTheApp)
8b532f8c 381 wxTheApp->ProcessIdle();
ff7b1510 382}
c801d85f
KB
383
384void wxBeginBusyCursor( wxCursor *WXUNUSED(cursor) )
385{
238d735d 386 if (gs_busyCount++ > 0)
89a43902
VZ
387 return;
388
238d735d 389 wxASSERT_MSG( !gs_savedCursor.Ok(),
223d09f6 390 wxT("forgot to call wxEndBusyCursor, will leak memory") );
7c39369e 391
238d735d 392 gs_savedCursor = g_globalCursor;
13971833 393
238d735d 394 wxSetCursor( wxCursor(wxCURSOR_WATCH) );
13971833 395
d1dea842 396 if (wxTheApp)
3352cfff 397 wxTheApp->ProcessIdle();
15dadf31 398
7e410431 399 gdk_flush();
ff7b1510 400}
c801d85f 401
8bbe427f 402bool wxIsBusy()
c801d85f 403{
89a43902 404 return gs_busyCount > 0;
ff7b1510 405}
c801d85f
KB
406
407void wxSetCursor( const wxCursor& cursor )
408{
13971833 409 if (g_isIdle)
238d735d
RR
410 wxapp_install_idle_handler();
411
412 g_globalCursor = cursor;
ff7b1510 413}