Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include <vcl/svapp.hxx>
21 : #include <vcl/timer.hxx>
22 : #include <vcl/settings.hxx>
23 : #include <vcl/window.hxx>
24 : #include <vcl/cursor.hxx>
25 :
26 : #include <window.h>
27 :
28 : #include <tools/poly.hxx>
29 :
30 8472 : struct ImplCursorData
31 : {
32 : AutoTimer maTimer; // Timer
33 : Point maPixPos; // Pixel-Position
34 : Point maPixRotOff; // Pixel-Offset-Position
35 : Size maPixSize; // Pixel-Size
36 : long mnPixSlant; // Pixel-Slant
37 : short mnOrientation; // Pixel-Orientation
38 : unsigned char mnDirection; // indicates writing direction
39 : sal_uInt16 mnStyle; // Cursor-Style
40 : bool mbCurVisible; // Ist Cursor aktuell sichtbar
41 : vcl::Window* mpWindow; // Zugeordnetes Windows
42 : };
43 :
44 103968 : static void ImplCursorInvert( ImplCursorData* pData )
45 : {
46 103968 : vcl::Window* pWindow = pData->mpWindow;
47 103968 : bool bMapMode = pWindow->IsMapModeEnabled();
48 103968 : pWindow->EnableMapMode( false );
49 : sal_uInt16 nInvertStyle;
50 103968 : if ( pData->mnStyle & CURSOR_SHADOW )
51 0 : nInvertStyle = INVERT_50;
52 : else
53 103968 : nInvertStyle = 0;
54 :
55 103968 : Rectangle aRect( pData->maPixPos, pData->maPixSize );
56 103968 : if ( pData->mnDirection || pData->mnOrientation || pData->mnPixSlant )
57 : {
58 24 : Polygon aPoly( aRect );
59 24 : if( aPoly.GetSize() == 5 )
60 : {
61 24 : aPoly[1].X() += 1; // include the right border
62 24 : aPoly[2].X() += 1;
63 24 : if ( pData->mnPixSlant )
64 : {
65 0 : Point aPoint = aPoly.GetPoint( 0 );
66 0 : aPoint.X() += pData->mnPixSlant;
67 0 : aPoly.SetPoint( aPoint, 0 );
68 0 : aPoly.SetPoint( aPoint, 4 );
69 0 : aPoint = aPoly.GetPoint( 1 );
70 0 : aPoint.X() += pData->mnPixSlant;
71 0 : aPoly.SetPoint( aPoint, 1 );
72 : }
73 :
74 : // apply direction flag after slant to use the correct shape
75 24 : if ( pData->mnDirection )
76 : {
77 24 : Point pAry[7];
78 24 : int delta = 3*aRect.getWidth()+1;
79 24 : if( pData->mnDirection == CURSOR_DIRECTION_LTR )
80 : {
81 : // left-to-right
82 24 : pAry[0] = aPoly.GetPoint( 0 );
83 24 : pAry[1] = aPoly.GetPoint( 1 );
84 24 : pAry[2] = pAry[1];
85 24 : pAry[2].X() += delta;
86 24 : pAry[3] = pAry[1];
87 24 : pAry[3].Y() += delta;
88 24 : pAry[4] = aPoly.GetPoint( 2 );
89 24 : pAry[5] = aPoly.GetPoint( 3 );
90 24 : pAry[6] = aPoly.GetPoint( 4 );
91 : }
92 0 : else if( pData->mnDirection == CURSOR_DIRECTION_RTL )
93 : {
94 : // right-to-left
95 0 : pAry[0] = aPoly.GetPoint( 0 );
96 0 : pAry[1] = aPoly.GetPoint( 1 );
97 0 : pAry[2] = aPoly.GetPoint( 2 );
98 0 : pAry[3] = aPoly.GetPoint( 3 );
99 0 : pAry[4] = pAry[0];
100 0 : pAry[4].Y() += delta;
101 0 : pAry[5] = pAry[0];
102 0 : pAry[5].X() -= delta;
103 0 : pAry[6] = aPoly.GetPoint( 4 );
104 : }
105 24 : aPoly = Polygon( 7, pAry);
106 : }
107 :
108 24 : if ( pData->mnOrientation )
109 0 : aPoly.Rotate( pData->maPixRotOff, pData->mnOrientation );
110 24 : pWindow->Invert( aPoly, nInvertStyle );
111 24 : }
112 : }
113 : else
114 103944 : pWindow->Invert( aRect, nInvertStyle );
115 103968 : pWindow->EnableMapMode( bMapMode );
116 103968 : }
117 :
118 51984 : void vcl::Cursor::ImplDraw()
119 : {
120 51984 : if ( mpData && mpData->mpWindow && !mpData->mbCurVisible )
121 : {
122 51984 : vcl::Window* pWindow = mpData->mpWindow;
123 51984 : mpData->maPixPos = pWindow->LogicToPixel( maPos );
124 51984 : mpData->maPixSize = pWindow->LogicToPixel( maSize );
125 51984 : mpData->mnPixSlant = pWindow->LogicToPixel( Size( mnSlant, 0 ) ).Width();
126 51984 : mpData->mnOrientation = mnOrientation;
127 51984 : mpData->mnDirection = mnDirection;
128 :
129 : // correct the position with the offset
130 51984 : mpData->maPixRotOff = mpData->maPixPos;
131 :
132 : // use width (as set in Settings) if size is 0,
133 51984 : if ( !mpData->maPixSize.Width() )
134 51937 : mpData->maPixSize.Width() = pWindow->GetSettings().GetStyleSettings().GetCursorSize();
135 :
136 : // calculate output area and display
137 51984 : ImplCursorInvert( mpData );
138 51984 : mpData->mbCurVisible = true;
139 : }
140 51984 : }
141 :
142 51984 : void vcl::Cursor::ImplRestore()
143 : {
144 51984 : if ( mpData && mpData->mbCurVisible )
145 : {
146 51984 : ImplCursorInvert( mpData );
147 51984 : mpData->mbCurVisible = false;
148 : }
149 51984 : }
150 :
151 188960 : void vcl::Cursor::ImplDoShow( bool bDrawDirect, bool bRestore )
152 : {
153 188960 : if ( mbVisible )
154 : {
155 : vcl::Window* pWindow;
156 140509 : if ( mpWindow )
157 0 : pWindow = mpWindow;
158 : else
159 : {
160 : // show the cursor, if there is an active window and the cursor
161 : // has been selected in this window
162 140509 : pWindow = Application::GetFocusWindow();
163 140509 : if ( !pWindow || (pWindow->mpWindowImpl->mpCursor != this) || pWindow->mpWindowImpl->mbInPaint
164 50478 : || !pWindow->mpWindowImpl->mpFrameData->mbHasFocus )
165 90031 : pWindow = NULL;
166 : }
167 :
168 140509 : if ( pWindow )
169 : {
170 50478 : if ( !mpData )
171 : {
172 4236 : mpData = new ImplCursorData;
173 4236 : mpData->mbCurVisible = false;
174 4236 : mpData->maTimer.SetTimeoutHdl( LINK( this, Cursor, ImplTimerHdl ) );
175 : }
176 :
177 50478 : mpData->mpWindow = pWindow;
178 50478 : mpData->mnStyle = mnStyle;
179 50478 : if ( bDrawDirect || bRestore )
180 50478 : ImplDraw();
181 :
182 50478 : if ( !mpWindow && ! ( ! bDrawDirect && mpData->maTimer.IsActive()) )
183 : {
184 50478 : mpData->maTimer.SetTimeout( pWindow->GetSettings().GetStyleSettings().GetCursorBlinkTime() );
185 50478 : if ( mpData->maTimer.GetTimeout() != STYLE_CURSOR_NOBLINKTIME )
186 0 : mpData->maTimer.Start();
187 50478 : else if ( !mpData->mbCurVisible )
188 0 : ImplDraw();
189 : }
190 : }
191 : }
192 188960 : }
193 :
194 178494 : bool vcl::Cursor::ImplDoHide( bool bSuspend )
195 : {
196 178494 : bool bWasCurVisible = false;
197 178494 : if ( mpData && mpData->mpWindow )
198 : {
199 52332 : bWasCurVisible = mpData->mbCurVisible;
200 52332 : if ( mpData->mbCurVisible )
201 50478 : ImplRestore();
202 :
203 52332 : if ( !bSuspend )
204 : {
205 48213 : mpData->maTimer.Stop();
206 48213 : mpData->mpWindow = NULL;
207 : }
208 : }
209 178494 : return bWasCurVisible;
210 : }
211 :
212 150418 : void vcl::Cursor::ImplShow( bool bDrawDirect )
213 : {
214 150418 : ImplDoShow( bDrawDirect, false );
215 150418 : }
216 :
217 140286 : void vcl::Cursor::ImplHide( bool i_bStopTimer )
218 : {
219 : assert( i_bStopTimer );
220 140286 : ImplDoHide( !i_bStopTimer );
221 140286 : }
222 :
223 38542 : void vcl::Cursor::ImplResume( bool bRestore )
224 : {
225 38542 : ImplDoShow( false, bRestore );
226 38542 : }
227 :
228 38208 : bool vcl::Cursor::ImplSuspend()
229 : {
230 38208 : return ImplDoHide( true );
231 : }
232 :
233 193141 : void vcl::Cursor::ImplNew()
234 : {
235 193141 : if ( mbVisible && mpData && mpData->mpWindow )
236 : {
237 1506 : if ( mpData->mbCurVisible )
238 1506 : ImplRestore();
239 :
240 1506 : ImplDraw();
241 1506 : if ( !mpWindow )
242 : {
243 1506 : if ( mpData->maTimer.GetTimeout() != STYLE_CURSOR_NOBLINKTIME )
244 0 : mpData->maTimer.Start();
245 : }
246 : }
247 193141 : }
248 :
249 0 : IMPL_LINK_NOARG(vcl::Cursor, ImplTimerHdl)
250 : {
251 0 : if ( mpData->mbCurVisible )
252 0 : ImplRestore();
253 : else
254 0 : ImplDraw();
255 0 : return 0;
256 : }
257 :
258 30767 : vcl::Cursor::Cursor()
259 : {
260 30767 : mpData = NULL;
261 30767 : mpWindow = NULL;
262 30767 : mnSlant = 0;
263 30767 : mnOrientation = 0;
264 30767 : mnDirection = 0;
265 30767 : mnStyle = 0;
266 30767 : mbVisible = false;
267 30767 : }
268 :
269 0 : vcl::Cursor::Cursor( const Cursor& rCursor ) :
270 : maSize( rCursor.maSize ),
271 0 : maPos( rCursor.maPos )
272 : {
273 0 : mpData = NULL;
274 0 : mpWindow = NULL;
275 0 : mnSlant = rCursor.mnSlant;
276 0 : mnOrientation = rCursor.mnOrientation;
277 0 : mnDirection = rCursor.mnDirection;
278 0 : mnStyle = 0;
279 0 : mbVisible = rCursor.mbVisible;
280 0 : }
281 :
282 30755 : vcl::Cursor::~Cursor()
283 : {
284 30755 : if ( mpData )
285 : {
286 4236 : if ( mpData->mbCurVisible )
287 0 : ImplRestore();
288 :
289 4236 : delete mpData;
290 : }
291 30755 : }
292 :
293 0 : void vcl::Cursor::SetStyle( sal_uInt16 nStyle )
294 : {
295 0 : if ( mnStyle != nStyle )
296 : {
297 0 : mnStyle = nStyle;
298 0 : ImplNew();
299 : }
300 0 : }
301 :
302 123173 : void vcl::Cursor::Show()
303 : {
304 123173 : if ( !mbVisible )
305 : {
306 115431 : mbVisible = true;
307 115431 : ImplShow();
308 : }
309 123173 : }
310 :
311 108004 : void vcl::Cursor::Hide()
312 : {
313 108004 : if ( mbVisible )
314 : {
315 105479 : mbVisible = false;
316 105479 : ImplHide( true );
317 : }
318 108004 : }
319 :
320 0 : void vcl::Cursor::SetWindow( vcl::Window* pWindow )
321 : {
322 0 : if ( mpWindow != pWindow )
323 : {
324 0 : mpWindow = pWindow;
325 0 : ImplNew();
326 : }
327 0 : }
328 :
329 107179 : void vcl::Cursor::SetPos( const Point& rPoint )
330 : {
331 107179 : if ( maPos != rPoint )
332 : {
333 20571 : maPos = rPoint;
334 20571 : ImplNew();
335 : }
336 107179 : }
337 :
338 107135 : void vcl::Cursor::SetSize( const Size& rSize )
339 : {
340 107135 : if ( maSize != rSize )
341 : {
342 18344 : maSize = rSize;
343 18344 : ImplNew();
344 : }
345 107135 : }
346 :
347 4708 : void vcl::Cursor::SetWidth( long nNewWidth )
348 : {
349 4708 : if ( maSize.Width() != nNewWidth )
350 : {
351 0 : maSize.Width() = nNewWidth;
352 0 : ImplNew();
353 : }
354 4708 : }
355 :
356 90012 : void vcl::Cursor::SetOrientation( short nNewOrientation )
357 : {
358 90012 : if ( mnOrientation != nNewOrientation )
359 : {
360 0 : mnOrientation = nNewOrientation;
361 0 : ImplNew();
362 : }
363 90012 : }
364 :
365 90030 : void vcl::Cursor::SetDirection( unsigned char nNewDirection )
366 : {
367 90030 : if ( mnDirection != nNewDirection )
368 : {
369 34 : mnDirection = nNewDirection;
370 34 : ImplNew();
371 : }
372 90030 : }
373 :
374 0 : vcl::Cursor& vcl::Cursor::operator=( const vcl::Cursor& rCursor )
375 : {
376 0 : maPos = rCursor.maPos;
377 0 : maSize = rCursor.maSize;
378 0 : mnSlant = rCursor.mnSlant;
379 0 : mnOrientation = rCursor.mnOrientation;
380 0 : mnDirection = rCursor.mnDirection;
381 0 : mbVisible = rCursor.mbVisible;
382 0 : ImplNew();
383 :
384 0 : return *this;
385 : }
386 :
387 0 : bool vcl::Cursor::operator==( const vcl::Cursor& rCursor ) const
388 : {
389 : return
390 0 : ((maPos == rCursor.maPos) &&
391 0 : (maSize == rCursor.maSize) &&
392 0 : (mnSlant == rCursor.mnSlant) &&
393 0 : (mnOrientation == rCursor.mnOrientation) &&
394 0 : (mnDirection == rCursor.mnDirection) &&
395 0 : (mbVisible == rCursor.mbVisible))
396 : ;
397 1233 : }
398 :
399 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|