4 * Copyright 1993 David Metcalfe
5 * Copyright 1996 Frans van Dorsselaer
33 static CARET Caret
= { 0, 0, FALSE
, 0, 0, 2, 12, 0, 500, 0 };
35 /*****************************************************************
38 HWND32
CARET_GetHwnd(void)
43 /*****************************************************************
46 void CARET_GetRect(LPRECT32 lprc
)
48 lprc
->right
= (lprc
->left
= Caret
.x
) + Caret
.width
- 1;
49 lprc
->bottom
= (lprc
->top
= Caret
.y
) + Caret
.height
- 1;
52 /*****************************************************************
55 static void CARET_DisplayCaret( DISPLAY_CARET status
)
60 if (Caret
.on
&& (status
== CARET_ON
)) return;
61 if (!Caret
.on
&& (status
== CARET_OFF
)) return;
63 /* So now it's always a toggle */
66 /* do not use DCX_CACHE here, for x,y,width,height are in logical units */
67 if (!(hdc
= GetDCEx32( Caret
.hwnd
, 0, DCX_USESTYLE
/*| DCX_CACHE*/ ))) return;
68 hPrevBrush
= SelectObject32( hdc
, Caret
.hBrush
);
69 PatBlt32( hdc
, Caret
.x
, Caret
.y
, Caret
.width
, Caret
.height
, PATINVERT
);
70 SelectObject32( hdc
, hPrevBrush
);
71 ReleaseDC32( Caret
.hwnd
, hdc
);
75 /*****************************************************************
78 static VOID CALLBACK
CARET_Callback( HWND32 hwnd
, UINT32 msg
, UINT32 id
, DWORD ctime
)
80 TRACE(caret
,"hwnd=%04x, timerid=%d, caret=%d\n",
82 CARET_DisplayCaret(CARET_TOGGLE
);
86 /*****************************************************************
89 static void CARET_SetTimer(void)
91 if (Caret
.timerid
) KillSystemTimer32( (HWND32
)0, Caret
.timerid
);
92 Caret
.timerid
= SetSystemTimer32( (HWND32
)0, 0, Caret
.timeout
,
97 /*****************************************************************
100 static void CARET_ResetTimer(void)
104 KillSystemTimer32( (HWND32
)0, Caret
.timerid
);
105 Caret
.timerid
= SetSystemTimer32( (HWND32
)0, 0, Caret
.timeout
,
111 /*****************************************************************
114 static void CARET_KillTimer(void)
118 KillSystemTimer32( (HWND32
)0, Caret
.timerid
);
124 /*****************************************************************
125 * CreateCaret16 (USER.163)
127 void WINAPI
CreateCaret16( HWND16 hwnd
, HBITMAP16 bitmap
,
128 INT16 width
, INT16 height
)
130 CreateCaret32( hwnd
, bitmap
, width
, height
);
133 /*****************************************************************
134 * CreateCaret32 (USER32.66)
136 BOOL32 WINAPI
CreateCaret32( HWND32 hwnd
, HBITMAP32 bitmap
,
137 INT32 width
, INT32 height
)
139 TRACE(caret
,"hwnd=%04x\n", hwnd
);
141 if (!hwnd
) return FALSE
;
143 /* if cursor already exists, destroy it */
144 if (Caret
.hwnd
) DestroyCaret32();
146 if (bitmap
&& (bitmap
!= 1))
149 if (!GetObject16( bitmap
, sizeof(bmp
), &bmp
)) return FALSE
;
150 Caret
.width
= bmp
.bmWidth
;
151 Caret
.height
= bmp
.bmHeight
;
152 /* FIXME: we should make a copy of the bitmap instead of a brush */
153 Caret
.hBrush
= CreatePatternBrush32( bitmap
);
157 Caret
.width
= width
? width
: GetSystemMetrics32(SM_CXBORDER
);
158 Caret
.height
= height
? height
: GetSystemMetrics32(SM_CYBORDER
);
159 Caret
.hBrush
= CreateSolidBrush32(bitmap
?
160 GetSysColor32(COLOR_GRAYTEXT
) :
161 GetSysColor32(COLOR_WINDOW
) );
170 Caret
.timeout
= GetProfileInt32A( "windows", "CursorBlinkRate", 500 );
175 /*****************************************************************
176 * DestroyCaret16 (USER.164)
178 void WINAPI
DestroyCaret16(void)
184 /*****************************************************************
185 * DestroyCaret32 (USER32.131)
187 BOOL32 WINAPI
DestroyCaret32(void)
189 if (!Caret
.hwnd
) return FALSE
;
191 TRACE(caret
,"hwnd=%04x, timerid=%d\n",
192 Caret
.hwnd
, Caret
.timerid
);
195 CARET_DisplayCaret(CARET_OFF
);
196 DeleteObject32( Caret
.hBrush
);
202 /*****************************************************************
203 * SetCaretPos16 (USER.165)
205 void WINAPI
SetCaretPos16( INT16 x
, INT16 y
)
207 SetCaretPos32( x
, y
);
211 /*****************************************************************
212 * SetCaretPos32 (USER32.466)
214 BOOL32 WINAPI
SetCaretPos32( INT32 x
, INT32 y
)
216 if (!Caret
.hwnd
) return FALSE
;
217 if ((x
== Caret
.x
) && (y
== Caret
.y
)) return TRUE
;
219 TRACE(caret
,"x=%d, y=%d\n", x
, y
);
222 CARET_DisplayCaret(CARET_OFF
);
227 CARET_DisplayCaret(CARET_ON
);
234 /*****************************************************************
235 * HideCaret16 (USER.166)
237 void WINAPI
HideCaret16( HWND16 hwnd
)
243 /*****************************************************************
244 * HideCaret32 (USER32.317)
246 BOOL32 WINAPI
HideCaret32( HWND32 hwnd
)
248 if (!Caret
.hwnd
) return FALSE
;
249 if (hwnd
&& (Caret
.hwnd
!= hwnd
)) return FALSE
;
251 TRACE(caret
,"hwnd=%04x, hidden=%d\n",
255 CARET_DisplayCaret(CARET_OFF
);
261 /*****************************************************************
262 * ShowCaret16 (USER.167)
264 void WINAPI
ShowCaret16( HWND16 hwnd
)
270 /*****************************************************************
271 * ShowCaret32 (USER32.529)
273 BOOL32 WINAPI
ShowCaret32( HWND32 hwnd
)
275 if (!Caret
.hwnd
) return FALSE
;
276 if (hwnd
&& (Caret
.hwnd
!= hwnd
)) return FALSE
;
278 TRACE(caret
,"hwnd=%04x, hidden=%d\n",
286 CARET_DisplayCaret(CARET_ON
);
294 /*****************************************************************
295 * SetCaretBlinkTime16 (USER.168)
297 void WINAPI
SetCaretBlinkTime16( UINT16 msecs
)
299 SetCaretBlinkTime32( msecs
);
302 /*****************************************************************
303 * SetCaretBlinkTime32 (USER32.465)
305 BOOL32 WINAPI
SetCaretBlinkTime32( UINT32 msecs
)
307 if (!Caret
.hwnd
) return FALSE
;
309 TRACE(caret
,"hwnd=%04x, msecs=%d\n",
312 Caret
.timeout
= msecs
;
318 /*****************************************************************
319 * GetCaretBlinkTime16 (USER.169)
321 UINT16 WINAPI
GetCaretBlinkTime16(void)
323 return (UINT16
)GetCaretBlinkTime32();
327 /*****************************************************************
328 * GetCaretBlinkTime32 (USER32.209)
330 UINT32 WINAPI
GetCaretBlinkTime32(void)
332 return Caret
.timeout
;
336 /*****************************************************************
337 * GetCaretPos16 (USER.183)
339 VOID WINAPI
GetCaretPos16( LPPOINT16 pt
)
341 if (!Caret
.hwnd
|| !pt
) return;
343 TRACE(caret
,"hwnd=%04x, pt=%p, x=%d, y=%d\n",
344 Caret
.hwnd
, pt
, Caret
.x
, Caret
.y
);
345 pt
->x
= (INT16
)Caret
.x
;
346 pt
->y
= (INT16
)Caret
.y
;
350 /*****************************************************************
351 * GetCaretPos32 (USER32.210)
353 BOOL32 WINAPI
GetCaretPos32( LPPOINT32 pt
)
355 if (!Caret
.hwnd
|| !pt
) return FALSE
;