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