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 "csvruler.hxx"
21 : #include "AccessibleCsvControl.hxx"
22 :
23 :
24 : #include <optutil.hxx>
25 : #include <com/sun/star/uno/Any.hxx>
26 : #include <com/sun/star/uno/Sequence.hxx>
27 : #include <comphelper/string.hxx>
28 : #include <vcl/settings.hxx>
29 : #include "miscuno.hxx"
30 :
31 : using namespace com::sun::star::uno;
32 :
33 :
34 :
35 : #define SEP_PATH "Office.Calc/Dialogs/CSVImport"
36 : #define FIXED_WIDTH_LIST "FixedWidthList"
37 :
38 :
39 0 : static void load_FixedWidthList(ScCsvSplits &aSplits)
40 : {
41 0 : OUString sSplits;
42 0 : OUString sFixedWidthLists;
43 :
44 0 : Sequence<Any>aValues;
45 : const Any *pProperties;
46 0 : Sequence<OUString> aNames(1);
47 0 : OUString* pNames = aNames.getArray();
48 0 : ScLinkConfigItem aItem( OUString( SEP_PATH ) );
49 :
50 0 : pNames[0] = OUString( FIXED_WIDTH_LIST );
51 0 : aValues = aItem.GetProperties( aNames );
52 0 : pProperties = aValues.getConstArray();
53 :
54 0 : if( pProperties[0].hasValue() )
55 : {
56 0 : aSplits.Clear();
57 0 : pProperties[0] >>= sFixedWidthLists;
58 :
59 0 : sSplits = sFixedWidthLists;
60 :
61 : // String ends with a semi-colon so there is no 'int' after the last one.
62 0 : sal_Int32 n = comphelper::string::getTokenCount(sSplits, ';') - 1;
63 0 : for (sal_Int32 i = 0; i < n; ++i)
64 0 : aSplits.Insert( sSplits.getToken(i, ';').toInt32() );
65 0 : }
66 0 : }
67 0 : static void save_FixedWidthList(ScCsvSplits aSplits)
68 : {
69 0 : OUStringBuffer sSplits;
70 : // Create a semi-colon separated string to save the splits
71 0 : sal_uInt32 n = aSplits.Count();
72 0 : for (sal_uInt32 i = 0; i < n; ++i)
73 : {
74 0 : sSplits.append( OUString::number( aSplits[i] ) );
75 0 : sSplits.append(";");
76 : }
77 :
78 0 : OUString sFixedWidthLists = sSplits.makeStringAndClear();
79 0 : Sequence<Any> aValues;
80 : Any *pProperties;
81 0 : Sequence<OUString> aNames(1);
82 0 : OUString* pNames = aNames.getArray();
83 0 : ScLinkConfigItem aItem( OUString( SEP_PATH ) );
84 :
85 0 : pNames[0] = OUString( FIXED_WIDTH_LIST );
86 0 : aValues = aItem.GetProperties( aNames );
87 0 : pProperties = aValues.getArray();
88 0 : pProperties[0] <<= sFixedWidthLists;
89 :
90 0 : aItem.PutProperties(aNames, aValues);
91 0 : }
92 :
93 0 : ScCsvRuler::ScCsvRuler( ScCsvControl& rParent ) :
94 : ScCsvControl( rParent ),
95 0 : mnPosCursorLast( 1 )
96 : {
97 0 : EnableRTL( false ); // RTL
98 0 : InitColors();
99 0 : InitSizeData();
100 0 : maBackgrDev.SetFont( GetFont() );
101 0 : maRulerDev.SetFont( GetFont() );
102 :
103 0 : load_FixedWidthList( maSplits );
104 0 : }
105 :
106 0 : ScCsvRuler::~ScCsvRuler()
107 : {
108 0 : save_FixedWidthList( maSplits );
109 0 : }
110 :
111 :
112 : // common ruler handling ------------------------------------------------------
113 :
114 0 : void ScCsvRuler::setPosSizePixel(
115 : long nX, long nY, long nWidth, long nHeight, sal_uInt16 nFlags )
116 : {
117 0 : if( nFlags & WINDOW_POSSIZE_HEIGHT )
118 0 : nHeight = GetTextHeight() + mnSplitSize + 2;
119 0 : ScCsvControl::setPosSizePixel( nX, nY, nWidth, nHeight, nFlags );
120 0 : }
121 :
122 0 : void ScCsvRuler::ApplyLayout( const ScCsvLayoutData& rOldData )
123 : {
124 0 : ScCsvDiff nDiff = GetLayoutData().GetDiff( rOldData ) & (CSV_DIFF_HORIZONTAL | CSV_DIFF_RULERCURSOR);
125 0 : if( nDiff == CSV_DIFF_EQUAL ) return;
126 :
127 0 : DisableRepaint();
128 0 : if( nDiff & CSV_DIFF_HORIZONTAL )
129 : {
130 0 : InitSizeData();
131 0 : if( GetRulerCursorPos() >= GetPosCount() )
132 0 : MoveCursor( GetPosCount() - 1 );
133 : }
134 0 : if( nDiff & CSV_DIFF_RULERCURSOR )
135 : {
136 0 : ImplInvertCursor( rOldData.mnPosCursor );
137 0 : ImplInvertCursor( GetRulerCursorPos() );
138 : }
139 0 : EnableRepaint();
140 :
141 0 : if( nDiff & CSV_DIFF_POSOFFSET )
142 0 : AccSendVisibleEvent();
143 : }
144 :
145 0 : void ScCsvRuler::InitColors()
146 : {
147 0 : const StyleSettings& rSett = GetSettings().GetStyleSettings();
148 0 : maBackColor = rSett.GetFaceColor();
149 0 : maActiveColor = rSett.GetWindowColor();
150 0 : maTextColor = rSett.GetLabelTextColor();
151 0 : maSplitColor = maBackColor.IsDark() ? maTextColor : Color( COL_LIGHTRED );
152 0 : InvalidateGfx();
153 0 : }
154 :
155 0 : void ScCsvRuler::InitSizeData()
156 : {
157 0 : maWinSize = GetSizePixel();
158 :
159 0 : mnSplitSize = (GetCharWidth() * 3 / 5) | 1; // make an odd number
160 :
161 0 : sal_Int32 nActiveWidth = std::min( GetWidth() - GetHdrWidth(), GetPosCount() * GetCharWidth() );
162 0 : sal_Int32 nActiveHeight = GetTextHeight();
163 :
164 0 : maActiveRect.SetPos( Point( GetFirstX(), (GetHeight() - nActiveHeight - 1) / 2 ) );
165 0 : maActiveRect.SetSize( Size( nActiveWidth, nActiveHeight ) );
166 :
167 0 : maBackgrDev.SetOutputSizePixel( maWinSize );
168 0 : maRulerDev.SetOutputSizePixel( maWinSize );
169 :
170 0 : InvalidateGfx();
171 0 : }
172 :
173 0 : void ScCsvRuler::MoveCursor( sal_Int32 nPos, bool bScroll )
174 : {
175 0 : DisableRepaint();
176 0 : if( bScroll )
177 0 : Execute( CSVCMD_MAKEPOSVISIBLE, nPos );
178 0 : Execute( CSVCMD_MOVERULERCURSOR, IsVisibleSplitPos( nPos ) ? nPos : CSV_POS_INVALID );
179 0 : EnableRepaint();
180 0 : AccSendCaretEvent();
181 0 : }
182 :
183 0 : void ScCsvRuler::MoveCursorRel( ScMoveMode eDir )
184 : {
185 0 : if( GetRulerCursorPos() != CSV_POS_INVALID )
186 : {
187 0 : switch( eDir )
188 : {
189 : case MOVE_FIRST:
190 0 : MoveCursor( 1 );
191 0 : break;
192 : case MOVE_LAST:
193 0 : MoveCursor( GetPosCount() - 1 );
194 0 : break;
195 : case MOVE_PREV:
196 0 : if( GetRulerCursorPos() > 1 )
197 0 : MoveCursor( GetRulerCursorPos() - 1 );
198 0 : break;
199 : case MOVE_NEXT:
200 0 : if( GetRulerCursorPos() < GetPosCount() - 1 )
201 0 : MoveCursor( GetRulerCursorPos() + 1 );
202 0 : break;
203 : default:
204 : {
205 : // added to avoid warnings
206 : }
207 : }
208 : }
209 0 : }
210 :
211 0 : void ScCsvRuler::MoveCursorToSplit( ScMoveMode eDir )
212 : {
213 0 : if( GetRulerCursorPos() != CSV_POS_INVALID )
214 : {
215 0 : sal_uInt32 nIndex = CSV_VEC_NOTFOUND;
216 0 : switch( eDir )
217 : {
218 0 : case MOVE_FIRST: nIndex = maSplits.LowerBound( 0 ); break;
219 0 : case MOVE_LAST: nIndex = maSplits.UpperBound( GetPosCount() ); break;
220 0 : case MOVE_PREV: nIndex = maSplits.UpperBound( GetRulerCursorPos() - 1 ); break;
221 0 : case MOVE_NEXT: nIndex = maSplits.LowerBound( GetRulerCursorPos() + 1 ); break;
222 : default:
223 : {
224 : // added to avoid warnings
225 : }
226 : }
227 0 : sal_Int32 nPos = maSplits[ nIndex ];
228 0 : if( nPos != CSV_POS_INVALID )
229 0 : MoveCursor( nPos );
230 : }
231 0 : }
232 :
233 0 : void ScCsvRuler::ScrollVertRel( ScMoveMode eDir )
234 : {
235 0 : sal_Int32 nLine = GetFirstVisLine();
236 0 : switch( eDir )
237 : {
238 0 : case MOVE_PREV: --nLine; break;
239 0 : case MOVE_NEXT: ++nLine; break;
240 0 : case MOVE_PREVPAGE: nLine -= GetVisLineCount() - 1; break;
241 0 : case MOVE_NEXTPAGE: nLine += GetVisLineCount() - 1; break;
242 : default:
243 : {
244 : // added to avoid warnings
245 : }
246 : }
247 0 : Execute( CSVCMD_SETLINEOFFSET, nLine );
248 0 : }
249 :
250 :
251 : // split handling -------------------------------------------------------------
252 :
253 0 : sal_Int32 ScCsvRuler::GetNoScrollPos( sal_Int32 nPos ) const
254 : {
255 0 : sal_Int32 nNewPos = nPos;
256 0 : if( nNewPos != CSV_POS_INVALID )
257 : {
258 0 : if( nNewPos < GetFirstVisPos() + CSV_SCROLL_DIST )
259 : {
260 0 : sal_Int32 nScroll = (GetFirstVisPos() > 0) ? CSV_SCROLL_DIST : 0;
261 0 : nNewPos = std::max( nPos, GetFirstVisPos() + nScroll );
262 : }
263 0 : else if( nNewPos > GetLastVisPos() - CSV_SCROLL_DIST - 1L )
264 : {
265 0 : sal_Int32 nScroll = (GetFirstVisPos() < GetMaxPosOffset()) ? CSV_SCROLL_DIST : 0;
266 0 : nNewPos = std::min( nNewPos, GetLastVisPos() - nScroll - sal_Int32( 1 ) );
267 : }
268 : }
269 0 : return nNewPos;
270 : }
271 :
272 0 : void ScCsvRuler::InsertSplit( sal_Int32 nPos )
273 : {
274 0 : if( maSplits.Insert( nPos ) )
275 : {
276 0 : ImplDrawSplit( nPos );
277 0 : Repaint();
278 : }
279 0 : }
280 :
281 0 : void ScCsvRuler::RemoveSplit( sal_Int32 nPos )
282 : {
283 0 : if( maSplits.Remove( nPos ) )
284 : {
285 0 : ImplEraseSplit( nPos );
286 0 : Repaint();
287 : }
288 0 : }
289 :
290 0 : void ScCsvRuler::MoveSplit( sal_Int32 nPos, sal_Int32 nNewPos )
291 : {
292 0 : bool bRemove = maSplits.Remove( nPos );
293 0 : bool bInsert = maSplits.Insert( nNewPos );
294 0 : if( bRemove || bInsert )
295 : {
296 0 : ImplEraseSplit( nPos );
297 0 : ImplDrawSplit( nNewPos );
298 0 : Repaint();
299 : }
300 0 : }
301 :
302 0 : void ScCsvRuler::RemoveAllSplits()
303 : {
304 0 : maSplits.Clear();
305 0 : Repaint( true );
306 0 : }
307 :
308 0 : sal_Int32 ScCsvRuler::FindEmptyPos( sal_Int32 nPos, ScMoveMode eDir ) const
309 : {
310 0 : sal_Int32 nNewPos = nPos;
311 0 : if( nNewPos != CSV_POS_INVALID )
312 : {
313 0 : switch( eDir )
314 : {
315 : case MOVE_FIRST:
316 0 : nNewPos = std::min( nPos, FindEmptyPos( 0, MOVE_NEXT ) );
317 0 : break;
318 : case MOVE_LAST:
319 0 : nNewPos = std::max( nPos, FindEmptyPos( GetPosCount(), MOVE_PREV ) );
320 0 : break;
321 : case MOVE_PREV:
322 0 : while( HasSplit( --nNewPos ) ) ;
323 0 : break;
324 : case MOVE_NEXT:
325 0 : while( HasSplit( ++nNewPos ) ) ;
326 0 : break;
327 : default:
328 : {
329 : // added to avoid warnings
330 : }
331 : }
332 : }
333 0 : return IsValidSplitPos( nNewPos ) ? nNewPos : CSV_POS_INVALID;
334 : }
335 :
336 0 : void ScCsvRuler::MoveCurrSplit( sal_Int32 nNewPos )
337 : {
338 0 : DisableRepaint();
339 0 : Execute( CSVCMD_MOVESPLIT, GetRulerCursorPos(), nNewPos );
340 0 : MoveCursor( nNewPos );
341 0 : EnableRepaint();
342 0 : }
343 :
344 0 : void ScCsvRuler::MoveCurrSplitRel( ScMoveMode eDir )
345 : {
346 0 : if( HasSplit( GetRulerCursorPos() ) )
347 : {
348 0 : sal_Int32 nNewPos = FindEmptyPos( GetRulerCursorPos(), eDir );
349 0 : if( nNewPos != CSV_POS_INVALID )
350 0 : MoveCurrSplit( nNewPos );
351 : }
352 0 : }
353 :
354 :
355 : // event handling -------------------------------------------------------------
356 :
357 0 : void ScCsvRuler::Resize()
358 : {
359 0 : ScCsvControl::Resize();
360 0 : InitSizeData();
361 0 : Repaint();
362 0 : }
363 :
364 0 : void ScCsvRuler::GetFocus()
365 : {
366 0 : ScCsvControl::GetFocus();
367 0 : DisableRepaint();
368 0 : if( GetRulerCursorPos() == CSV_POS_INVALID )
369 0 : MoveCursor( GetNoScrollPos( mnPosCursorLast ) );
370 0 : EnableRepaint();
371 0 : }
372 :
373 0 : void ScCsvRuler::LoseFocus()
374 : {
375 0 : ScCsvControl::LoseFocus();
376 0 : mnPosCursorLast = GetRulerCursorPos();
377 0 : MoveCursor( CSV_POS_INVALID );
378 0 : }
379 :
380 0 : void ScCsvRuler::DataChanged( const DataChangedEvent& rDCEvt )
381 : {
382 0 : if( (rDCEvt.GetType() == DATACHANGED_SETTINGS) && (rDCEvt.GetFlags() & SETTINGS_STYLE) )
383 : {
384 0 : InitColors();
385 0 : Repaint();
386 : }
387 0 : ScCsvControl::DataChanged( rDCEvt );
388 0 : }
389 :
390 0 : void ScCsvRuler::MouseButtonDown( const MouseEvent& rMEvt )
391 : {
392 0 : DisableRepaint();
393 0 : if( !HasFocus() )
394 0 : GrabFocus();
395 0 : if( rMEvt.IsLeft() )
396 : {
397 0 : sal_Int32 nPos = GetPosFromX( rMEvt.GetPosPixel().X() );
398 0 : if( IsVisibleSplitPos( nPos ) )
399 0 : StartMouseTracking( nPos );
400 0 : ImplSetMousePointer( nPos );
401 : }
402 0 : EnableRepaint();
403 0 : }
404 :
405 0 : void ScCsvRuler::MouseMove( const MouseEvent& rMEvt )
406 : {
407 0 : if( !rMEvt.IsModifierChanged() )
408 : {
409 0 : sal_Int32 nPos = GetPosFromX( rMEvt.GetPosPixel().X() );
410 0 : if( IsTracking() )
411 : {
412 : // on mouse tracking: keep position valid
413 0 : nPos = std::max( std::min( nPos, GetPosCount() - sal_Int32( 1 ) ), sal_Int32( 1 ) );
414 0 : MoveMouseTracking( nPos );
415 : }
416 : else
417 : {
418 0 : Point aPoint;
419 0 : Rectangle aRect( aPoint, maWinSize );
420 0 : if( !IsVisibleSplitPos( nPos ) || !aRect.IsInside( rMEvt.GetPosPixel() ) )
421 : // if focused, keep old cursor position for key input
422 0 : nPos = HasFocus() ? GetRulerCursorPos() : CSV_POS_INVALID;
423 0 : MoveCursor( nPos, false );
424 : }
425 0 : ImplSetMousePointer( nPos );
426 : }
427 0 : }
428 :
429 0 : void ScCsvRuler::Tracking( const TrackingEvent& rTEvt )
430 : {
431 0 : if( rTEvt.IsTrackingEnded() || rTEvt.IsTrackingRepeat() )
432 0 : MouseMove( rTEvt.GetMouseEvent() );
433 0 : if( rTEvt.IsTrackingEnded() )
434 0 : EndMouseTracking( !rTEvt.IsTrackingCanceled() );
435 0 : }
436 :
437 0 : void ScCsvRuler::KeyInput( const KeyEvent& rKEvt )
438 : {
439 0 : const KeyCode& rKCode = rKEvt.GetKeyCode();
440 0 : sal_uInt16 nCode = rKCode.GetCode();
441 0 : bool bNoMod = !rKCode.GetModifier();
442 0 : bool bShift = (rKCode.GetModifier() == KEY_SHIFT);
443 0 : bool bJump = (rKCode.GetModifier() == KEY_MOD1);
444 0 : bool bMove = (rKCode.GetModifier() == (KEY_MOD1 | KEY_SHIFT));
445 :
446 0 : ScMoveMode eHDir = GetHorzDirection( nCode, true );
447 0 : ScMoveMode eVDir = GetVertDirection( nCode, false );
448 :
449 0 : if( bNoMod )
450 : {
451 0 : if( eHDir != MOVE_NONE )
452 0 : MoveCursorRel( eHDir );
453 0 : else if( eVDir != MOVE_NONE )
454 0 : ScrollVertRel( eVDir );
455 0 : else switch( nCode )
456 : {
457 0 : case KEY_SPACE: Execute( CSVCMD_TOGGLESPLIT, GetRulerCursorPos() ); break;
458 0 : case KEY_INSERT: Execute( CSVCMD_INSERTSPLIT, GetRulerCursorPos() ); break;
459 0 : case KEY_DELETE: Execute( CSVCMD_REMOVESPLIT, GetRulerCursorPos() ); break;
460 : }
461 : }
462 0 : else if( bJump && (eHDir != MOVE_NONE) )
463 0 : MoveCursorToSplit( eHDir );
464 0 : else if( bMove && (eHDir != MOVE_NONE) )
465 0 : MoveCurrSplitRel( eHDir );
466 0 : else if( bShift && (nCode == KEY_DELETE) )
467 0 : Execute( CSVCMD_REMOVEALLSPLITS );
468 :
469 0 : if( rKCode.GetGroup() != KEYGROUP_CURSOR )
470 0 : ScCsvControl::KeyInput( rKEvt );
471 0 : }
472 :
473 0 : void ScCsvRuler::StartMouseTracking( sal_Int32 nPos )
474 : {
475 0 : mnPosMTStart = mnPosMTCurr = nPos;
476 0 : mbPosMTMoved = false;
477 0 : maOldSplits = maSplits;
478 0 : Execute( CSVCMD_INSERTSPLIT, nPos );
479 0 : if( HasSplit( nPos ) )
480 0 : StartTracking( STARTTRACK_BUTTONREPEAT );
481 0 : }
482 :
483 0 : void ScCsvRuler::MoveMouseTracking( sal_Int32 nPos )
484 : {
485 0 : if( mnPosMTCurr != nPos )
486 : {
487 0 : DisableRepaint();
488 0 : MoveCursor( nPos );
489 0 : if( (mnPosMTCurr != mnPosMTStart) && maOldSplits.HasSplit( mnPosMTCurr ) )
490 0 : Execute( CSVCMD_INSERTSPLIT, nPos );
491 : else
492 0 : Execute( CSVCMD_MOVESPLIT, mnPosMTCurr, nPos );
493 0 : mnPosMTCurr = nPos;
494 0 : mbPosMTMoved = true;
495 0 : EnableRepaint();
496 : }
497 0 : }
498 :
499 0 : void ScCsvRuler::EndMouseTracking( bool bApply )
500 : {
501 0 : if( bApply ) // tracking finished successfully
502 : {
503 : // remove on simple click on an existing split
504 0 : if( (mnPosMTCurr == mnPosMTStart) && maOldSplits.HasSplit( mnPosMTCurr ) && !mbPosMTMoved )
505 0 : Execute( CSVCMD_REMOVESPLIT, mnPosMTCurr );
506 : }
507 : else // tracking cancelled
508 : {
509 0 : MoveCursor( mnPosMTStart );
510 : // move split to origin
511 0 : if( maOldSplits.HasSplit( mnPosMTStart ) )
512 0 : MoveMouseTracking( mnPosMTStart );
513 : // remove temporarily inserted split
514 0 : else if( !maOldSplits.HasSplit( mnPosMTCurr ) )
515 0 : Execute( CSVCMD_REMOVESPLIT, mnPosMTCurr );
516 : }
517 0 : mnPosMTStart = CSV_POS_INVALID;
518 0 : }
519 :
520 :
521 : // painting -------------------------------------------------------------------
522 :
523 0 : void ScCsvRuler::Paint( const Rectangle& )
524 : {
525 0 : Repaint();
526 0 : }
527 :
528 0 : void ScCsvRuler::ImplRedraw()
529 : {
530 0 : if( IsVisible() )
531 : {
532 0 : if( !IsValidGfx() )
533 : {
534 0 : ValidateGfx();
535 0 : ImplDrawBackgrDev();
536 0 : ImplDrawRulerDev();
537 : }
538 0 : DrawOutDev( Point(), maWinSize, Point(), maWinSize, maRulerDev );
539 0 : ImplDrawTrackingRect();
540 : }
541 0 : }
542 :
543 0 : void ScCsvRuler::ImplDrawArea( sal_Int32 nPosX, sal_Int32 nWidth )
544 : {
545 0 : maBackgrDev.SetLineColor();
546 0 : Rectangle aRect( Point( nPosX, 0 ), Size( nWidth, GetHeight() ) );
547 0 : maBackgrDev.SetFillColor( maBackColor );
548 0 : maBackgrDev.DrawRect( aRect );
549 :
550 0 : aRect = maActiveRect;
551 0 : aRect.Left() = std::max( GetFirstX(), nPosX );
552 0 : aRect.Right() = std::min( std::min( GetX( GetPosCount() ), GetLastX() ), nPosX + nWidth - sal_Int32( 1 ) );
553 0 : if( aRect.Left() <= aRect.Right() )
554 : {
555 0 : maBackgrDev.SetFillColor( maActiveColor );
556 0 : maBackgrDev.DrawRect( aRect );
557 : }
558 :
559 0 : maBackgrDev.SetLineColor( maTextColor );
560 0 : sal_Int32 nY = GetHeight() - 1;
561 0 : maBackgrDev.DrawLine( Point( nPosX, nY ), Point( nPosX + nWidth - 1, nY ) );
562 0 : }
563 :
564 0 : void ScCsvRuler::ImplDrawBackgrDev()
565 : {
566 0 : ImplDrawArea( 0, GetWidth() );
567 :
568 : // scale
569 0 : maBackgrDev.SetLineColor( maTextColor );
570 0 : maBackgrDev.SetFillColor();
571 : sal_Int32 nPos;
572 :
573 0 : sal_Int32 nFirstPos = std::max( GetPosFromX( 0 ) - (sal_Int32)(1L), (sal_Int32)(0L) );
574 0 : sal_Int32 nLastPos = GetPosFromX( GetWidth() );
575 0 : sal_Int32 nY = (maActiveRect.Top() + maActiveRect.Bottom()) / 2;
576 0 : for( nPos = nFirstPos; nPos <= nLastPos; ++nPos )
577 : {
578 0 : sal_Int32 nX = GetX( nPos );
579 0 : if( nPos % 5 )
580 0 : maBackgrDev.DrawPixel( Point( nX, nY ) );
581 : else
582 0 : maBackgrDev.DrawLine( Point( nX, nY - 1 ), Point( nX, nY + 1 ) );
583 : }
584 :
585 : // texts
586 0 : maBackgrDev.SetTextColor( maTextColor );
587 0 : maBackgrDev.SetTextFillColor();
588 0 : for( nPos = ((nFirstPos + 9) / 10) * 10; nPos <= nLastPos; nPos += 10 )
589 : {
590 0 : OUString aText( OUString::number( nPos ) );
591 0 : sal_Int32 nTextWidth = maBackgrDev.GetTextWidth( aText );
592 0 : sal_Int32 nTextX = GetX( nPos ) - nTextWidth / 2;
593 0 : ImplDrawArea( nTextX - 1, nTextWidth + 2 );
594 0 : maBackgrDev.DrawText( Point( nTextX, maActiveRect.Top() ), aText );
595 0 : }
596 0 : }
597 :
598 0 : void ScCsvRuler::ImplDrawSplit( sal_Int32 nPos )
599 : {
600 0 : if( IsVisibleSplitPos( nPos ) )
601 : {
602 0 : Point aPos( GetX( nPos ) - mnSplitSize / 2, GetHeight() - mnSplitSize - 2 );
603 0 : Size aSize( mnSplitSize, mnSplitSize );
604 0 : maRulerDev.SetLineColor( maTextColor );
605 0 : maRulerDev.SetFillColor( maSplitColor );
606 0 : maRulerDev.DrawEllipse( Rectangle( aPos, aSize ) );
607 0 : maRulerDev.DrawPixel( Point( GetX( nPos ), GetHeight() - 2 ) );
608 : }
609 0 : }
610 :
611 0 : void ScCsvRuler::ImplEraseSplit( sal_Int32 nPos )
612 : {
613 0 : if( IsVisibleSplitPos( nPos ) )
614 : {
615 0 : ImplInvertCursor( GetRulerCursorPos() );
616 0 : Point aPos( GetX( nPos ) - mnSplitSize / 2, 0 );
617 0 : Size aSize( mnSplitSize, GetHeight() );
618 0 : maRulerDev.DrawOutDev( aPos, aSize, aPos, aSize, maBackgrDev );
619 0 : ImplInvertCursor( GetRulerCursorPos() );
620 : }
621 0 : }
622 :
623 0 : void ScCsvRuler::ImplDrawRulerDev()
624 : {
625 0 : maRulerDev.DrawOutDev( Point(), maWinSize, Point(), maWinSize, maBackgrDev );
626 0 : ImplInvertCursor( GetRulerCursorPos() );
627 :
628 0 : sal_uInt32 nFirst = maSplits.LowerBound( GetFirstVisPos() );
629 0 : sal_uInt32 nLast = maSplits.UpperBound( GetLastVisPos() );
630 0 : if( (nFirst != CSV_VEC_NOTFOUND) && (nLast != CSV_VEC_NOTFOUND) )
631 0 : for( sal_uInt32 nIndex = nFirst; nIndex <= nLast; ++nIndex )
632 0 : ImplDrawSplit( GetSplitPos( nIndex ) );
633 0 : }
634 :
635 0 : void ScCsvRuler::ImplInvertCursor( sal_Int32 nPos )
636 : {
637 0 : if( IsVisibleSplitPos( nPos ) )
638 : {
639 0 : ImplInvertRect( maRulerDev, Rectangle( Point( GetX( nPos ) - 1, 0 ), Size( 3, GetHeight() - 1 ) ) );
640 0 : if( HasSplit( nPos ) )
641 0 : ImplDrawSplit( nPos );
642 : }
643 0 : }
644 :
645 0 : void ScCsvRuler::ImplDrawTrackingRect()
646 : {
647 0 : if( HasFocus() )
648 0 : InvertTracking( Rectangle( 0, 0, GetWidth() - 1, GetHeight() - 2 ),
649 0 : SHOWTRACK_SMALL | SHOWTRACK_WINDOW );
650 0 : }
651 :
652 0 : void ScCsvRuler::ImplSetMousePointer( sal_Int32 nPos )
653 : {
654 0 : SetPointer( Pointer( HasSplit( nPos ) ? POINTER_HSPLIT : POINTER_ARROW ) );
655 0 : }
656 :
657 :
658 : // accessibility ==============================================================
659 :
660 0 : ScAccessibleCsvControl* ScCsvRuler::ImplCreateAccessible()
661 : {
662 0 : return new ScAccessibleCsvRuler( *this );
663 : }
664 :
665 :
666 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|