1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 // For compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
13 #include "wx/cursor.h"
20 //-----------------------------------------------------------------------------
22 //-----------------------------------------------------------------------------
24 extern void wxapp_install_idle_handler();
27 //-----------------------------------------------------------------------------
29 //-----------------------------------------------------------------------------
31 class wxCursorRefData
: public wxObjectRefData
41 wxCursorRefData::wxCursorRefData()
43 m_cursor
= (GdkCursor
*) NULL
;
46 wxCursorRefData::~wxCursorRefData()
48 if (m_cursor
) gdk_cursor_destroy( m_cursor
);
51 //-----------------------------------------------------------------------------
53 #define M_CURSORDATA ((wxCursorRefData *)m_refData)
55 IMPLEMENT_DYNAMIC_CLASS(wxCursor
,wxObject
)
62 wxCursor::wxCursor( int cursorId
)
64 m_refData
= new wxCursorRefData();
66 GdkCursorType gdk_cur
= GDK_LEFT_PTR
;
71 static const gchar bits
[] = { 0 };
72 static /* const -- not in GTK1 */ GdkColor color
= { 0, 0, 0, 0 };
74 GdkPixmap
*pixmap
= gdk_bitmap_create_from_data(NULL
, bits
, 1, 1);
75 M_CURSORDATA
->m_cursor
= gdk_cursor_new_from_pixmap(pixmap
,
83 case wxCURSOR_ARROW
: // fall through to default
84 case wxCURSOR_DEFAULT
: gdk_cur
= GDK_LEFT_PTR
; break;
85 case wxCURSOR_RIGHT_ARROW
: gdk_cur
= GDK_RIGHT_PTR
; break;
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;
90 case wxCURSOR_ARROWWAIT
:
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;
98 case wxCURSOR_SIZENWSE
:
99 case wxCURSOR_SIZENESW
: gdk_cur
= GDK_FLEUR
; break;
100 case wxCURSOR_QUESTION_ARROW
: gdk_cur
= GDK_QUESTION_ARROW
; break;
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;
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;
107 case wxCURSOR_BULLSEYE
: gdk_cur
= GDK_TARGET
; break;
109 case wxCURSOR_POINT_LEFT
: gdk_cur
= GDK_SB_LEFT_ARROW
; break;
110 case wxCURSOR_POINT_RIGHT
: gdk_cur
= GDK_SB_RIGHT_ARROW
; break;
112 case wxCURSOR_DOUBLE_ARROW: gdk_cur = GDK_DOUBLE_ARROW; break;
113 case wxCURSOR_CROSS_REVERSE: gdk_cur = GDK_CROSS_REVERSE; break;
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;
119 wxFAIL_MSG(wxT("unsupported cursor type"));
120 // will use the standard one
124 M_CURSORDATA
->m_cursor
= gdk_cursor_new( gdk_cur
);
127 extern GtkWidget
*wxGetRootWindow();
129 wxCursor::wxCursor(const char bits
[], int width
, int height
,
130 int hotSpotX
, int hotSpotY
,
131 const char maskBits
[], wxColour
*fg
, wxColour
*bg
)
139 if (hotSpotX
< 0 || hotSpotX
>= width
)
141 if (hotSpotY
< 0 || hotSpotY
>= height
)
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
);
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
);
152 gdk_bitmap_unref( data
);
153 gdk_bitmap_unref( mask
);
157 wxCursor::wxCursor( const wxCursor
&cursor
)
165 wxCursor::wxCursor( const wxImage
& image
)
167 unsigned char * rgbBits
= image
.GetData();
168 int w
= image
.GetWidth() ;
169 int h
= image
.GetHeight();
170 bool bHasMask
= image
.HasMask();
171 int imagebitcount
= (w
*h
)/8;
173 unsigned char * bits
= new unsigned char [imagebitcount
];
174 unsigned char * maskBits
= new unsigned char [imagebitcount
];
176 int i
, j
, i8
; unsigned char c
, cMask
;
177 for (i
=0; i
<imagebitcount
; i
++)
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
189 bits
[i
] = bits
[i
] | cMask
;
194 unsigned long keyMaskColor
;
198 r
= image
.GetMaskRed(),
199 g
= image
.GetMaskGreen(),
200 b
= image
.GetMaskBlue();
202 for (i
=0; i
<imagebitcount
; i
++)
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
;
216 keyMaskColor
= (r
<< 16) | (g
<< 8) | b
;
220 for (i
=0; i
<imagebitcount
; i
++)
223 // init it to avoid compiler warnings
227 // find the most frequent color(s)
228 wxImageHistogram histogram
;
229 image
.ComputeHistogram(histogram
);
235 long colMostFreq
= 0;
236 unsigned long nMost
= 0;
237 long colNextMostFreq
= 0;
238 unsigned long nNext
= 0;
239 for ( wxImageHistogram::iterator entry
= histogram
.begin();
240 entry
!= histogram
.end();
243 value
= entry
->second
.value
;
245 if ( !bHasMask
|| (key
!= keyMaskColor
) )
252 else if (value
> nNext
)
255 colNextMostFreq
= key
;
260 wxColour fg
= wxColour ( (unsigned char)(colMostFreq
>> 16),
261 (unsigned char)(colMostFreq
>> 8),
262 (unsigned char)(colMostFreq
) );
264 wxColour bg
= wxColour ( (unsigned char)(colNextMostFreq
>> 16),
265 (unsigned char)(colNextMostFreq
>> 8),
266 (unsigned char)(colNextMostFreq
) );
268 int fg_intensity
= fg
.Red() + fg
.Green() + fg
.Blue();
269 int bg_intensity
= bg
.Red() + bg
.Green() + bg
.Blue();
271 if (bg_intensity
> fg_intensity
)
282 if (image
.HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
))
283 hotSpotX
= image
.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X
);
287 if (image
.HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
))
288 hotSpotY
= image
.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y
);
292 if (hotSpotX
< 0 || hotSpotX
>= w
)
294 if (hotSpotY
< 0 || hotSpotY
>= h
)
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
);
302 m_refData
= new wxCursorRefData
;
303 M_CURSORDATA
->m_cursor
= gdk_cursor_new_from_pixmap
307 fg
.GetColor(), bg
.GetColor(),
311 gdk_bitmap_unref( data
);
312 gdk_bitmap_unref( mask
);
317 #endif // wxUSE_IMAGE
319 wxCursor::~wxCursor()
323 wxCursor
& wxCursor::operator = ( const wxCursor
& cursor
)
333 bool wxCursor::operator == ( const wxCursor
& cursor
) const
335 return m_refData
== cursor
.m_refData
;
338 bool wxCursor::operator != ( const wxCursor
& cursor
) const
340 return m_refData
!= cursor
.m_refData
;
343 bool wxCursor::Ok() const
345 return (m_refData
!= NULL
);
348 GdkCursor
*wxCursor::GetCursor() const
350 return M_CURSORDATA
->m_cursor
;
353 //-----------------------------------------------------------------------------
354 // busy cursor routines
355 //-----------------------------------------------------------------------------
357 extern wxCursor g_globalCursor
;
359 static wxCursor gs_savedCursor
;
360 static int gs_busyCount
= 0;
362 const wxCursor
&wxBusyCursor::GetStoredCursor()
364 return gs_savedCursor
;
367 const wxCursor
wxBusyCursor::GetBusyCursor()
369 return wxCursor(wxCURSOR_WATCH
);
372 void wxEndBusyCursor()
374 if (--gs_busyCount
> 0)
377 wxSetCursor( gs_savedCursor
);
378 gs_savedCursor
= wxNullCursor
;
381 wxTheApp
->ProcessIdle();
384 void wxBeginBusyCursor( wxCursor
*WXUNUSED(cursor
) )
386 if (gs_busyCount
++ > 0)
389 wxASSERT_MSG( !gs_savedCursor
.Ok(),
390 wxT("forgot to call wxEndBusyCursor, will leak memory") );
392 gs_savedCursor
= g_globalCursor
;
394 wxSetCursor( wxCursor(wxCURSOR_WATCH
) );
397 wxTheApp
->ProcessIdle();
404 return gs_busyCount
> 0;
407 void wxSetCursor( const wxCursor
& cursor
)
410 wxapp_install_idle_handler();
412 g_globalCursor
= cursor
;