Fix wxCursor(wxImage&) ctor for image widths not a multiple of 8, and finding second...
[wxWidgets.git] / src / gtk / cursor.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/cursor.cpp
3 // Purpose:
4 // Author: Robert Roebling
5 // Id: $Id$
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10 // For compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
12
13 #include "wx/cursor.h"
14
15 #ifndef WX_PRECOMP
16 #include "wx/app.h"
17 #include "wx/utils.h"
18 #include "wx/image.h"
19 #include "wx/colour.h"
20 #include "wx/bitmap.h"
21 #endif // WX_PRECOMP
22
23 #include <gtk/gtk.h>
24
25 //-----------------------------------------------------------------------------
26 // wxCursor
27 //-----------------------------------------------------------------------------
28
29 class wxCursorRefData: public wxGDIRefData
30 {
31 public:
32 wxCursorRefData();
33 virtual ~wxCursorRefData();
34
35 virtual bool IsOk() const { return m_cursor != NULL; }
36
37 GdkCursor *m_cursor;
38 };
39
40 wxCursorRefData::wxCursorRefData()
41 {
42 m_cursor = (GdkCursor *) NULL;
43 }
44
45 wxCursorRefData::~wxCursorRefData()
46 {
47 if (m_cursor) gdk_cursor_unref( m_cursor );
48 }
49
50 //-----------------------------------------------------------------------------
51
52 #define M_CURSORDATA wx_static_cast(wxCursorRefData*, m_refData)
53
54 IMPLEMENT_DYNAMIC_CLASS(wxCursor, wxGDIObject)
55
56 wxCursor::wxCursor()
57 {
58 }
59
60 wxCursor::wxCursor( int cursorId )
61 {
62 m_refData = new wxCursorRefData();
63
64 GdkCursorType gdk_cur = GDK_LEFT_PTR;
65 switch (cursorId)
66 {
67 case wxCURSOR_BLANK:
68 {
69 const char bits[] = { 0 };
70 const GdkColor color = { 0, 0, 0, 0 };
71
72 GdkPixmap *pixmap = gdk_bitmap_create_from_data(NULL, bits, 1, 1);
73 M_CURSORDATA->m_cursor = gdk_cursor_new_from_pixmap(pixmap,
74 pixmap,
75 &color,
76 &color,
77 0, 0);
78 g_object_unref(pixmap);
79 }
80 return;
81
82 case wxCURSOR_ARROW: // fall through to default
83 case wxCURSOR_DEFAULT: gdk_cur = GDK_LEFT_PTR; break;
84 case wxCURSOR_RIGHT_ARROW: gdk_cur = GDK_RIGHT_PTR; break;
85 case wxCURSOR_HAND: gdk_cur = GDK_HAND1; break;
86 case wxCURSOR_CROSS: gdk_cur = GDK_CROSSHAIR; break;
87 case wxCURSOR_SIZEWE: gdk_cur = GDK_SB_H_DOUBLE_ARROW; break;
88 case wxCURSOR_SIZENS: gdk_cur = GDK_SB_V_DOUBLE_ARROW; break;
89 case wxCURSOR_ARROWWAIT:
90 case wxCURSOR_WAIT:
91 case wxCURSOR_WATCH: gdk_cur = GDK_WATCH; break;
92 case wxCURSOR_SIZING: gdk_cur = GDK_SIZING; break;
93 case wxCURSOR_SPRAYCAN: gdk_cur = GDK_SPRAYCAN; break;
94 case wxCURSOR_IBEAM: gdk_cur = GDK_XTERM; break;
95 case wxCURSOR_PENCIL: gdk_cur = GDK_PENCIL; break;
96 case wxCURSOR_NO_ENTRY: gdk_cur = GDK_PIRATE; break;
97 case wxCURSOR_SIZENWSE:
98 case wxCURSOR_SIZENESW: gdk_cur = GDK_FLEUR; break;
99 case wxCURSOR_QUESTION_ARROW: gdk_cur = GDK_QUESTION_ARROW; break;
100 case wxCURSOR_PAINT_BRUSH: gdk_cur = GDK_SPRAYCAN; break;
101 case wxCURSOR_MAGNIFIER: gdk_cur = GDK_PLUS; break;
102 case wxCURSOR_CHAR: gdk_cur = GDK_XTERM; break;
103 case wxCURSOR_LEFT_BUTTON: gdk_cur = GDK_LEFTBUTTON; break;
104 case wxCURSOR_MIDDLE_BUTTON: gdk_cur = GDK_MIDDLEBUTTON; break;
105 case wxCURSOR_RIGHT_BUTTON: gdk_cur = GDK_RIGHTBUTTON; break;
106 case wxCURSOR_BULLSEYE: gdk_cur = GDK_TARGET; break;
107
108 case wxCURSOR_POINT_LEFT: gdk_cur = GDK_SB_LEFT_ARROW; break;
109 case wxCURSOR_POINT_RIGHT: gdk_cur = GDK_SB_RIGHT_ARROW; break;
110 /*
111 case wxCURSOR_DOUBLE_ARROW: gdk_cur = GDK_DOUBLE_ARROW; break;
112 case wxCURSOR_CROSS_REVERSE: gdk_cur = GDK_CROSS_REVERSE; break;
113 case wxCURSOR_BASED_ARROW_UP: gdk_cur = GDK_BASED_ARROW_UP; break;
114 case wxCURSOR_BASED_ARROW_DOWN: gdk_cur = GDK_BASED_ARROW_DOWN; break;
115 */
116
117 default:
118 wxFAIL_MSG(wxT("unsupported cursor type"));
119 // will use the standard one
120 break;
121 }
122
123 M_CURSORDATA->m_cursor = gdk_cursor_new( gdk_cur );
124 }
125
126 extern GtkWidget *wxGetRootWindow();
127
128 wxCursor::wxCursor(const char bits[], int width, int height,
129 int hotSpotX, int hotSpotY,
130 const char maskBits[], const wxColour *fg, const wxColour *bg)
131 {
132 if (!maskBits)
133 maskBits = bits;
134 if (!fg)
135 fg = wxBLACK;
136 if (!bg)
137 bg = wxWHITE;
138 if (hotSpotX < 0 || hotSpotX >= width)
139 hotSpotX = 0;
140 if (hotSpotY < 0 || hotSpotY >= height)
141 hotSpotY = 0;
142
143 GdkBitmap *data = gdk_bitmap_create_from_data( wxGetRootWindow()->window, (gchar *) bits, width, height );
144 GdkBitmap *mask = gdk_bitmap_create_from_data( wxGetRootWindow()->window, (gchar *) maskBits, width, height);
145
146 m_refData = new wxCursorRefData;
147 M_CURSORDATA->m_cursor = gdk_cursor_new_from_pixmap(
148 data, mask, fg->GetColor(), bg->GetColor(),
149 hotSpotX, hotSpotY );
150
151 g_object_unref (data);
152 g_object_unref (mask);
153 }
154
155 #if wxUSE_IMAGE
156
157 static void GetHotSpot(const wxImage& image, int& x, int& y)
158 {
159 if (image.HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_X))
160 x = image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X);
161 else
162 x = 0;
163
164 if (image.HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y))
165 y = image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y);
166 else
167 y = 0;
168
169 if (x < 0 || x >= image.GetWidth())
170 x = 0;
171 if (y < 0 || y >= image.GetHeight())
172 y = 0;
173 }
174
175 wxCursor::wxCursor( const wxImage & image )
176 {
177 int w = image.GetWidth() ;
178 int h = image.GetHeight();
179 bool bHasMask = image.HasMask();
180 int hotSpotX, hotSpotY;
181 GetHotSpot(image, hotSpotX, hotSpotY);
182 m_refData = new wxCursorRefData;
183 wxImage image_copy(image);
184
185 GdkDisplay* display = gdk_drawable_get_display(wxGetRootWindow()->window);
186 if (gdk_display_supports_cursor_color(display))
187 {
188 if (!image.HasAlpha())
189 {
190 // add alpha, so wxBitmap will convert to pixbuf format
191 image_copy.InitAlpha();
192 }
193 wxBitmap bitmap(image_copy);
194 wxASSERT(bitmap.HasPixbuf());
195 M_CURSORDATA->m_cursor = gdk_cursor_new_from_pixbuf
196 (
197 display,
198 bitmap.GetPixbuf(),
199 hotSpotX, hotSpotY
200 );
201 return;
202 }
203
204 // modify image so wxBitmap can be used to convert to pixmap
205 image_copy.UnShare();
206 int i, j;
207 wxByte* data = image_copy.GetData();
208 for (j = 0; j < h; j++)
209 {
210 for (i = 0; i < w; i++, data += 3)
211 {
212 //if average value is > mid grey
213 if (int(data[0]) + data[1] + data[2] >= 3 * 128)
214 {
215 // wxBitmap only converts (255,255,255) to white
216 data[0] = 255;
217 data[1] = 255;
218 data[2] = 255;
219 }
220 }
221 }
222
223 wxBitmap bitmap(image_copy, 1);
224
225 unsigned long keyMaskColor = 0;
226 GdkPixmap* mask;
227 if (bHasMask)
228 {
229 keyMaskColor = wxImageHistogram::MakeKey(
230 image.GetMaskRed(), image.GetMaskGreen(), image.GetMaskBlue());
231 mask = bitmap.GetMask()->GetBitmap();
232 g_object_ref(mask);
233 }
234 else
235 {
236 const int size = ((w + 7) / 8) * h;
237 char* bits = new char[size];
238 memset(bits, 0xff, size);
239 mask = gdk_bitmap_create_from_data(
240 bitmap.GetPixmap(), bits, w, h);
241 delete[] bits;
242 }
243
244 // find the most frequent color(s)
245 wxImageHistogram histogram;
246 image.ComputeHistogram(histogram);
247
248 long colMostFreq = 0;
249 unsigned long nMost = 0;
250 long colNextMostFreq = 0;
251 unsigned long nNext = 0;
252 for ( wxImageHistogram::iterator entry = histogram.begin();
253 entry != histogram.end();
254 ++entry )
255 {
256 unsigned long key = entry->first;
257 if ( !bHasMask || (key != keyMaskColor) )
258 {
259 unsigned long value = entry->second.value;
260 if (value > nMost)
261 {
262 nNext = nMost;
263 colNextMostFreq = colMostFreq;
264 nMost = value;
265 colMostFreq = key;
266 }
267 else if (value > nNext)
268 {
269 nNext = value;
270 colNextMostFreq = key;
271 }
272 }
273 }
274
275 wxColour fg = wxColour ( (unsigned char)(colMostFreq >> 16),
276 (unsigned char)(colMostFreq >> 8),
277 (unsigned char)(colMostFreq) );
278
279 wxColour bg = wxColour ( (unsigned char)(colNextMostFreq >> 16),
280 (unsigned char)(colNextMostFreq >> 8),
281 (unsigned char)(colNextMostFreq) );
282
283 int fg_intensity = fg.Red() + fg.Green() + fg.Blue();
284 int bg_intensity = bg.Red() + bg.Green() + bg.Blue();
285
286 if (bg_intensity > fg_intensity)
287 {
288 //swap fg and bg
289 wxColour tmp = fg;
290 fg = bg;
291 bg = tmp;
292 }
293
294 M_CURSORDATA->m_cursor = gdk_cursor_new_from_pixmap
295 (
296 bitmap.GetPixmap(),
297 mask,
298 fg.GetColor(), bg.GetColor(),
299 hotSpotX, hotSpotY
300 );
301
302 g_object_unref (mask);
303 }
304
305 #endif // wxUSE_IMAGE
306
307 wxCursor::~wxCursor()
308 {
309 }
310
311 GdkCursor *wxCursor::GetCursor() const
312 {
313 return M_CURSORDATA->m_cursor;
314 }
315
316 wxGDIRefData *wxCursor::CreateGDIRefData() const
317 {
318 return new wxCursorRefData;
319 }
320
321 wxGDIRefData *wxCursor::CloneGDIRefData(const wxGDIRefData *data) const
322 {
323 return new wxCursorRefData(*wx_static_cast(const wxCursorRefData *, data));
324 }
325
326 //-----------------------------------------------------------------------------
327 // busy cursor routines
328 //-----------------------------------------------------------------------------
329
330 /* Current cursor, in order to hang on to
331 * cursor handle when setting the cursor globally */
332 wxCursor g_globalCursor;
333
334 static wxCursor gs_savedCursor;
335 static int gs_busyCount = 0;
336
337 const wxCursor &wxBusyCursor::GetStoredCursor()
338 {
339 return gs_savedCursor;
340 }
341
342 const wxCursor wxBusyCursor::GetBusyCursor()
343 {
344 return wxCursor(wxCURSOR_WATCH);
345 }
346
347 void wxEndBusyCursor()
348 {
349 if (--gs_busyCount > 0)
350 return;
351
352 wxSetCursor( gs_savedCursor );
353 gs_savedCursor = wxNullCursor;
354
355 if (wxTheApp)
356 wxTheApp->ProcessIdle();
357 }
358
359 void wxBeginBusyCursor( const wxCursor *WXUNUSED(cursor) )
360 {
361 if (gs_busyCount++ > 0)
362 return;
363
364 wxASSERT_MSG( !gs_savedCursor.Ok(),
365 wxT("forgot to call wxEndBusyCursor, will leak memory") );
366
367 gs_savedCursor = g_globalCursor;
368
369 wxSetCursor( wxCursor(wxCURSOR_WATCH) );
370
371 if (wxTheApp)
372 wxTheApp->ProcessIdle();
373
374 gdk_flush();
375 }
376
377 bool wxIsBusy()
378 {
379 return gs_busyCount > 0;
380 }
381
382 void wxSetCursor( const wxCursor& cursor )
383 {
384 g_globalCursor = cursor;
385 wxTheApp->WakeUpIdle();
386 }