1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk1/cursor.cpp
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"
23 //-----------------------------------------------------------------------------
25 //-----------------------------------------------------------------------------
27 extern void wxapp_install_idle_handler();
30 //-----------------------------------------------------------------------------
32 //-----------------------------------------------------------------------------
34 class wxCursorRefData
: public wxGDIRefData
38 virtual ~wxCursorRefData();
43 // There is no way to copy m_cursor so we can't implement a copy ctor
45 wxDECLARE_NO_COPY_CLASS(wxCursorRefData
);
48 wxCursorRefData::wxCursorRefData()
53 wxCursorRefData::~wxCursorRefData()
55 if (m_cursor
) gdk_cursor_destroy( m_cursor
);
58 //-----------------------------------------------------------------------------
60 #define M_CURSORDATA ((wxCursorRefData *)m_refData)
62 IMPLEMENT_DYNAMIC_CLASS(wxCursor
,wxObject
)
69 void wxCursor::InitFromStock( wxStockCursor cursorId
)
71 m_refData
= new wxCursorRefData();
73 GdkCursorType gdk_cur
= GDK_LEFT_PTR
;
78 static const gchar bits
[] = { 0 };
79 static /* const -- not in GTK1 */ GdkColor color
= { 0, 0, 0, 0 };
81 GdkPixmap
*pixmap
= gdk_bitmap_create_from_data(NULL
, bits
, 1, 1);
82 M_CURSORDATA
->m_cursor
= gdk_cursor_new_from_pixmap(pixmap
,
90 case wxCURSOR_ARROW
: // fall through to default
91 case wxCURSOR_DEFAULT
: gdk_cur
= GDK_LEFT_PTR
; break;
92 case wxCURSOR_RIGHT_ARROW
: gdk_cur
= GDK_RIGHT_PTR
; break;
93 case wxCURSOR_HAND
: gdk_cur
= GDK_HAND1
; break;
94 case wxCURSOR_CROSS
: gdk_cur
= GDK_CROSSHAIR
; break;
95 case wxCURSOR_SIZEWE
: gdk_cur
= GDK_SB_H_DOUBLE_ARROW
; break;
96 case wxCURSOR_SIZENS
: gdk_cur
= GDK_SB_V_DOUBLE_ARROW
; break;
97 case wxCURSOR_ARROWWAIT
:
99 case wxCURSOR_WATCH
: gdk_cur
= GDK_WATCH
; break;
100 case wxCURSOR_SIZING
: gdk_cur
= GDK_SIZING
; break;
101 case wxCURSOR_SPRAYCAN
: gdk_cur
= GDK_SPRAYCAN
; break;
102 case wxCURSOR_IBEAM
: gdk_cur
= GDK_XTERM
; break;
103 case wxCURSOR_PENCIL
: gdk_cur
= GDK_PENCIL
; break;
104 case wxCURSOR_NO_ENTRY
: gdk_cur
= GDK_PIRATE
; break;
105 case wxCURSOR_SIZENWSE
:
106 case wxCURSOR_SIZENESW
: gdk_cur
= GDK_FLEUR
; break;
107 case wxCURSOR_QUESTION_ARROW
: gdk_cur
= GDK_QUESTION_ARROW
; break;
108 case wxCURSOR_PAINT_BRUSH
: gdk_cur
= GDK_SPRAYCAN
; break;
109 case wxCURSOR_MAGNIFIER
: gdk_cur
= GDK_PLUS
; break;
110 case wxCURSOR_CHAR
: gdk_cur
= GDK_XTERM
; break;
111 case wxCURSOR_LEFT_BUTTON
: gdk_cur
= GDK_LEFTBUTTON
; break;
112 case wxCURSOR_MIDDLE_BUTTON
: gdk_cur
= GDK_MIDDLEBUTTON
; break;
113 case wxCURSOR_RIGHT_BUTTON
: gdk_cur
= GDK_RIGHTBUTTON
; break;
114 case wxCURSOR_BULLSEYE
: gdk_cur
= GDK_TARGET
; break;
116 case wxCURSOR_POINT_LEFT
: gdk_cur
= GDK_SB_LEFT_ARROW
; break;
117 case wxCURSOR_POINT_RIGHT
: gdk_cur
= GDK_SB_RIGHT_ARROW
; break;
119 case wxCURSOR_DOUBLE_ARROW: gdk_cur = GDK_DOUBLE_ARROW; break;
120 case wxCURSOR_CROSS_REVERSE: gdk_cur = GDK_CROSS_REVERSE; break;
121 case wxCURSOR_BASED_ARROW_UP: gdk_cur = GDK_BASED_ARROW_UP; break;
122 case wxCURSOR_BASED_ARROW_DOWN: gdk_cur = GDK_BASED_ARROW_DOWN; break;
126 wxFAIL_MSG(wxT("unsupported cursor type"));
127 // will use the standard one
131 M_CURSORDATA
->m_cursor
= gdk_cursor_new( gdk_cur
);
134 extern GtkWidget
*wxGetRootWindow();
136 wxCursor::wxCursor(const char bits
[], int width
, int height
,
137 int hotSpotX
, int hotSpotY
,
138 const char maskBits
[], const wxColour
*fg
, const wxColour
*bg
)
146 if (hotSpotX
< 0 || hotSpotX
>= width
)
148 if (hotSpotY
< 0 || hotSpotY
>= height
)
151 GdkBitmap
*data
= gdk_bitmap_create_from_data( wxGetRootWindow()->window
, (gchar
*) bits
, width
, height
);
152 GdkBitmap
*mask
= gdk_bitmap_create_from_data( wxGetRootWindow()->window
, (gchar
*) maskBits
, width
, height
);
154 m_refData
= new wxCursorRefData
;
155 M_CURSORDATA
->m_cursor
= gdk_cursor_new_from_pixmap(
156 data
, mask
, fg
->GetColor(), bg
->GetColor(),
157 hotSpotX
, hotSpotY
);
159 gdk_bitmap_unref( data
);
160 gdk_bitmap_unref( mask
);
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 GdkCursor
*wxCursor::GetCursor() const
325 return M_CURSORDATA
->m_cursor
;
328 wxGDIRefData
*wxCursor::CreateGDIRefData() const
330 return new wxCursorRefData
;
334 wxCursor::CloneGDIRefData(const wxGDIRefData
* WXUNUSED(data
)) const
336 wxFAIL_MSG( wxS("Cloning cursors is not implemented in wxGTK.") );
338 return new wxCursorRefData
;
341 //-----------------------------------------------------------------------------
342 // busy cursor routines
343 //-----------------------------------------------------------------------------
345 extern wxCursor g_globalCursor
;
347 static wxCursor gs_savedCursor
;
348 static int gs_busyCount
= 0;
350 const wxCursor
&wxBusyCursor::GetStoredCursor()
352 return gs_savedCursor
;
355 const wxCursor
wxBusyCursor::GetBusyCursor()
357 return wxCursor(wxCURSOR_WATCH
);
360 void wxEndBusyCursor()
362 if (--gs_busyCount
> 0)
365 wxSetCursor( gs_savedCursor
);
366 gs_savedCursor
= wxNullCursor
;
369 wxTheApp
->ProcessIdle();
372 void wxBeginBusyCursor( const wxCursor
*WXUNUSED(cursor
) )
374 if (gs_busyCount
++ > 0)
377 wxASSERT_MSG( !gs_savedCursor
.IsOk(),
378 wxT("forgot to call wxEndBusyCursor, will leak memory") );
380 gs_savedCursor
= g_globalCursor
;
382 wxSetCursor( wxCursor(wxCURSOR_WATCH
) );
385 wxTheApp
->ProcessIdle();
392 return gs_busyCount
> 0;
395 void wxSetCursor( const wxCursor
& cursor
)
398 wxapp_install_idle_handler();
400 g_globalCursor
= cursor
;