1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
11 #pragma implementation "cursor.h"
14 // For compilers that support precompilation, includes "wx.h".
15 #include "wx/wxprec.h"
17 #include "wx/cursor.h"
24 //-----------------------------------------------------------------------------
26 //-----------------------------------------------------------------------------
28 extern void wxapp_install_idle_handler();
31 //-----------------------------------------------------------------------------
33 //-----------------------------------------------------------------------------
35 class wxCursorRefData
: public wxObjectRefData
45 wxCursorRefData::wxCursorRefData()
47 m_cursor
= (GdkCursor
*) NULL
;
50 wxCursorRefData::~wxCursorRefData()
52 if (m_cursor
) gdk_cursor_destroy( m_cursor
);
55 //-----------------------------------------------------------------------------
57 #define M_CURSORDATA ((wxCursorRefData *)m_refData)
59 IMPLEMENT_DYNAMIC_CLASS(wxCursor
,wxObject
)
66 wxCursor::wxCursor( int cursorId
)
68 m_refData
= new wxCursorRefData();
70 GdkCursorType gdk_cur
= GDK_LEFT_PTR
;
73 case wxCURSOR_ARROW
: // fall through to default
74 case wxCURSOR_DEFAULT
: gdk_cur
= GDK_LEFT_PTR
; break;
75 case wxCURSOR_RIGHT_ARROW
: gdk_cur
= GDK_RIGHT_PTR
; break;
76 case wxCURSOR_HAND
: gdk_cur
= GDK_HAND1
; break;
77 case wxCURSOR_CROSS
: gdk_cur
= GDK_CROSSHAIR
; break;
78 case wxCURSOR_SIZEWE
: gdk_cur
= GDK_SB_H_DOUBLE_ARROW
; break;
79 case wxCURSOR_SIZENS
: gdk_cur
= GDK_SB_V_DOUBLE_ARROW
; break;
80 case wxCURSOR_ARROWWAIT
:
82 case wxCURSOR_WATCH
: gdk_cur
= GDK_WATCH
; break;
83 case wxCURSOR_SIZING
: gdk_cur
= GDK_SIZING
; break;
84 case wxCURSOR_SPRAYCAN
: gdk_cur
= GDK_SPRAYCAN
; break;
85 case wxCURSOR_IBEAM
: gdk_cur
= GDK_XTERM
; break;
86 case wxCURSOR_PENCIL
: gdk_cur
= GDK_PENCIL
; break;
87 case wxCURSOR_NO_ENTRY
: gdk_cur
= GDK_PIRATE
; break;
88 case wxCURSOR_SIZENWSE
:
89 case wxCURSOR_SIZENESW
: gdk_cur
= GDK_FLEUR
; break;
90 case wxCURSOR_QUESTION_ARROW
: gdk_cur
= GDK_QUESTION_ARROW
; break;
91 case wxCURSOR_PAINT_BRUSH
: gdk_cur
= GDK_SPRAYCAN
; break;
92 case wxCURSOR_MAGNIFIER
: gdk_cur
= GDK_PLUS
; break;
93 case wxCURSOR_CHAR
: gdk_cur
= GDK_XTERM
; break;
94 case wxCURSOR_LEFT_BUTTON
: gdk_cur
= GDK_LEFTBUTTON
; break;
95 case wxCURSOR_MIDDLE_BUTTON
: gdk_cur
= GDK_MIDDLEBUTTON
; break;
96 case wxCURSOR_RIGHT_BUTTON
: gdk_cur
= GDK_RIGHTBUTTON
; break;
97 case wxCURSOR_BULLSEYE
: gdk_cur
= GDK_TARGET
; break;
99 case wxCURSOR_POINT_LEFT
: gdk_cur
= GDK_SB_LEFT_ARROW
; break;
100 case wxCURSOR_POINT_RIGHT
: gdk_cur
= GDK_SB_RIGHT_ARROW
; break;
102 case wxCURSOR_DOUBLE_ARROW: gdk_cur = GDK_DOUBLE_ARROW; break;
103 case wxCURSOR_CROSS_REVERSE: gdk_cur = GDK_CROSS_REVERSE; break;
104 case wxCURSOR_BASED_ARROW_UP: gdk_cur = GDK_BASED_ARROW_UP; break;
105 case wxCURSOR_BASED_ARROW_DOWN: gdk_cur = GDK_BASED_ARROW_DOWN; break;
108 wxFAIL_MSG(wxT("unsupported cursor type"));
109 // will use the standard one
113 M_CURSORDATA
->m_cursor
= gdk_cursor_new( gdk_cur
);
116 extern GtkWidget
*wxGetRootWindow();
118 wxCursor::wxCursor(const char bits
[], int width
, int height
,
119 int hotSpotX
, int hotSpotY
,
120 const char maskBits
[], wxColour
*fg
, wxColour
*bg
)
128 if (hotSpotX
< 0 || hotSpotX
>= width
)
130 if (hotSpotY
< 0 || hotSpotY
>= height
)
133 GdkBitmap
*data
= gdk_bitmap_create_from_data( wxGetRootWindow()->window
, (gchar
*) bits
, width
, height
);
134 GdkBitmap
*mask
= gdk_bitmap_create_from_data( wxGetRootWindow()->window
, (gchar
*) maskBits
, width
, height
);
136 m_refData
= new wxCursorRefData
;
137 M_CURSORDATA
->m_cursor
= gdk_cursor_new_from_pixmap(
138 data
, mask
, fg
->GetColor(), bg
->GetColor(),
139 hotSpotX
, hotSpotY
);
141 gdk_bitmap_unref( data
);
142 gdk_bitmap_unref( mask
);
146 wxCursor::wxCursor( const wxCursor
&cursor
)
154 wxCursor::wxCursor( const wxImage
& image
)
156 unsigned char * rgbBits
= image
.GetData();
157 int w
= image
.GetWidth() ;
158 int h
= image
.GetHeight();
159 bool bHasMask
= image
.HasMask();
160 int imagebitcount
= (w
*h
)/8;
162 unsigned char * bits
= new unsigned char [imagebitcount
];
163 unsigned char * maskBits
= new unsigned char [imagebitcount
];
165 int i
, j
, i8
; unsigned char c
, cMask
;
166 for (i
=0; i
<imagebitcount
; i
++)
174 // possible overflow if we do the summation first ?
175 c
= rgbBits
[(i8
+j
)*3]/3 + rgbBits
[(i8
+j
)*3+1]/3 + rgbBits
[(i8
+j
)*3+2]/3;
176 //if average value is > mid grey
178 bits
[i
] = bits
[i
] | cMask
;
183 unsigned long keyMaskColor
;
187 r
= image
.GetMaskRed(),
188 g
= image
.GetMaskGreen(),
189 b
= image
.GetMaskBlue();
191 for (i
=0; i
<imagebitcount
; i
++)
199 if (rgbBits
[(i8
+j
)*3] != r
|| rgbBits
[(i8
+j
)*3+1] != g
|| rgbBits
[(i8
+j
)*3+2] != b
)
200 maskBits
[i
] = maskBits
[i
] | cMask
;
205 keyMaskColor
= (r
<< 16) | (g
<< 8) | b
;
209 for (i
=0; i
<imagebitcount
; i
++)
212 // init it to avoid compiler warnings
216 // find the most frequent color(s)
217 wxImageHistogram histogram
;
218 image
.ComputeHistogram(histogram
);
224 long colMostFreq
= 0;
225 unsigned long nMost
= 0;
226 long colNextMostFreq
= 0;
227 unsigned long nNext
= 0;
228 for ( wxImageHistogram::iterator entry
= histogram
.begin();
229 entry
!= histogram
.end();
232 value
= entry
->second
.value
;
234 if ( !bHasMask
|| (key
!= keyMaskColor
) )
241 else if (value
> nNext
)
244 colNextMostFreq
= key
;
249 wxColour fg
= wxColour ( (unsigned char)(colMostFreq
>> 16),
250 (unsigned char)(colMostFreq
>> 8),
251 (unsigned char)(colMostFreq
) );
253 wxColour bg
= wxColour ( (unsigned char)(colNextMostFreq
>> 16),
254 (unsigned char)(colNextMostFreq
>> 8),
255 (unsigned char)(colNextMostFreq
) );
257 int fg_intensity
= fg
.Red() + fg
.Green() + fg
.Blue();
258 int bg_intensity
= bg
.Red() + bg
.Green() + bg
.Blue();
260 if (bg_intensity
> fg_intensity
)
271 if (image
.HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
))
272 hotSpotX
= image
.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X
);
276 if (image
.HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
))
277 hotSpotY
= image
.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y
);
281 if (hotSpotX
< 0 || hotSpotX
>= w
)
283 if (hotSpotY
< 0 || hotSpotY
>= h
)
286 GdkBitmap
*data
= gdk_bitmap_create_from_data(wxGetRootWindow()->window
,
287 (gchar
*) bits
, w
, h
);
288 GdkBitmap
*mask
= gdk_bitmap_create_from_data(wxGetRootWindow()->window
,
289 (gchar
*) maskBits
, w
, h
);
291 m_refData
= new wxCursorRefData
;
292 M_CURSORDATA
->m_cursor
= gdk_cursor_new_from_pixmap
296 fg
.GetColor(), bg
.GetColor(),
300 gdk_bitmap_unref( data
);
301 gdk_bitmap_unref( mask
);
306 #endif // wxUSE_IMAGE
308 wxCursor::~wxCursor()
312 wxCursor
& wxCursor::operator = ( const wxCursor
& cursor
)
322 bool wxCursor::operator == ( const wxCursor
& cursor
) const
324 return m_refData
== cursor
.m_refData
;
327 bool wxCursor::operator != ( const wxCursor
& cursor
) const
329 return m_refData
!= cursor
.m_refData
;
332 bool wxCursor::Ok() const
334 return (m_refData
!= NULL
);
337 GdkCursor
*wxCursor::GetCursor() const
339 return M_CURSORDATA
->m_cursor
;
342 //-----------------------------------------------------------------------------
343 // busy cursor routines
344 //-----------------------------------------------------------------------------
346 extern wxCursor g_globalCursor
;
348 static wxCursor gs_savedCursor
;
349 static int gs_busyCount
= 0;
351 const wxCursor
&wxBusyCursor::GetStoredCursor()
353 return gs_savedCursor
;
356 const wxCursor
wxBusyCursor::GetBusyCursor()
358 return wxCursor(wxCURSOR_WATCH
);
361 void wxEndBusyCursor()
363 if (--gs_busyCount
> 0)
366 wxSetCursor( gs_savedCursor
);
367 gs_savedCursor
= wxNullCursor
;
370 wxTheApp
->ProcessIdle();
373 void wxBeginBusyCursor( wxCursor
*WXUNUSED(cursor
) )
375 if (gs_busyCount
++ > 0)
378 wxASSERT_MSG( !gs_savedCursor
.Ok(),
379 wxT("forgot to call wxEndBusyCursor, will leak memory") );
381 gs_savedCursor
= g_globalCursor
;
383 wxSetCursor( wxCursor(wxCURSOR_WATCH
) );
386 wxTheApp
->ProcessIdle();
393 return gs_busyCount
> 0;
396 void wxSetCursor( const wxCursor
& cursor
)
399 wxapp_install_idle_handler();
401 g_globalCursor
= cursor
;