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