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 :
21 : #include <svtools/ivctrl.hxx>
22 : #include "imivctl.hxx"
23 : #include <vcl/bitmapex.hxx>
24 : #include <vcl/controllayout.hxx>
25 : #include <vcl/mnemonic.hxx>
26 : #include <vcl/settings.hxx>
27 :
28 : using namespace ::com::sun::star::accessibility;
29 :
30 : /*****************************************************************************
31 : |
32 : | class : SvxIconChoiceCtrlEntry
33 : |
34 : \*****************************************************************************/
35 :
36 0 : SvxIconChoiceCtrlEntry::SvxIconChoiceCtrlEntry( const OUString& rText,
37 : const Image& rImage,
38 : sal_uInt16 _nFlags )
39 : : aImage(rImage)
40 : , aText(rText)
41 : , pUserData(NULL)
42 : , nPos(0)
43 : , pblink(0)
44 : , pflink(0)
45 : , eTextMode(IcnShowTextShort)
46 : , nX(0)
47 : , nY(0)
48 0 : , nFlags(_nFlags)
49 : {
50 0 : }
51 :
52 0 : OUString SvxIconChoiceCtrlEntry::GetDisplayText() const
53 : {
54 0 : return MnemonicGenerator::EraseAllMnemonicChars( aText );
55 : }
56 :
57 :
58 :
59 0 : SvxIconChoiceCtrlColumnInfo::SvxIconChoiceCtrlColumnInfo( const SvxIconChoiceCtrlColumnInfo& rInfo )
60 0 : : aColText( rInfo.aColText ), aColImage( rInfo.aColImage )
61 : {
62 0 : nWidth = rInfo.nWidth;
63 0 : eAlignment = rInfo.eAlignment;
64 0 : nSubItem = rInfo.nSubItem;
65 0 : }
66 :
67 : /*****************************************************************************
68 : |
69 : | class : SvtIconChoiceCtrl
70 : |
71 : \*****************************************************************************/
72 :
73 0 : SvtIconChoiceCtrl::SvtIconChoiceCtrl( Window* pParent, WinBits nWinStyle ) :
74 :
75 : // WB_CLIPCHILDREN on, as ScrollBars lie on the window!
76 : Control( pParent, nWinStyle | WB_CLIPCHILDREN ),
77 :
78 : _pCurKeyEvent ( NULL ),
79 0 : _pImp ( new SvxIconChoiceCtrl_Impl( this, nWinStyle ) ),
80 0 : _bAutoFontColor ( false )
81 :
82 : {
83 0 : SetLineColor();
84 0 : _pImp->SetGrid( Size( 100, 70 ) );
85 0 : _pImp->InitSettings();
86 0 : _pImp->SetPositionMode( IcnViewPositionModeAutoArrange );
87 0 : }
88 :
89 0 : SvtIconChoiceCtrl::~SvtIconChoiceCtrl()
90 : {
91 0 : _pImp->CallEventListeners( VCLEVENT_OBJECT_DYING );
92 0 : delete _pImp;
93 0 : }
94 :
95 0 : SvxIconChoiceCtrlEntry* SvtIconChoiceCtrl::InsertEntry( const OUString& rText, const Image& rImage, sal_uLong nPos, const Point* pPos, sal_uInt16 nFlags )
96 : {
97 0 : SvxIconChoiceCtrlEntry* pEntry = new SvxIconChoiceCtrlEntry( rText, rImage, nFlags);
98 :
99 0 : _pImp->InsertEntry( pEntry, nPos, pPos );
100 :
101 0 : return pEntry;
102 : }
103 :
104 0 : bool SvtIconChoiceCtrl::EditedEntry( SvxIconChoiceCtrlEntry*, const OUString&, bool )
105 : {
106 0 : return true;
107 : }
108 :
109 0 : bool SvtIconChoiceCtrl::EditingEntry( SvxIconChoiceCtrlEntry* )
110 : {
111 0 : return true;
112 : }
113 :
114 0 : void SvtIconChoiceCtrl::DrawEntryImage( SvxIconChoiceCtrlEntry* pEntry, const Point& rPos, OutputDevice& rDev )
115 : {
116 0 : rDev.DrawImage( rPos, pEntry->GetImage() );
117 0 : }
118 :
119 0 : OUString SvtIconChoiceCtrl::GetEntryText( SvxIconChoiceCtrlEntry* pEntry, bool )
120 : {
121 0 : return pEntry->GetText();
122 : }
123 :
124 0 : bool SvtIconChoiceCtrl::HasBackground() const
125 : {
126 0 : return false;
127 : }
128 :
129 0 : bool SvtIconChoiceCtrl::HasFont() const
130 : {
131 0 : return false;
132 : }
133 :
134 0 : bool SvtIconChoiceCtrl::HasFontTextColor() const
135 : {
136 0 : return true;
137 : }
138 :
139 0 : bool SvtIconChoiceCtrl::HasFontFillColor() const
140 : {
141 0 : return true;
142 : }
143 :
144 0 : void SvtIconChoiceCtrl::Paint( const Rectangle& rRect )
145 : {
146 0 : _pImp->Paint( rRect );
147 0 : }
148 :
149 0 : void SvtIconChoiceCtrl::MouseButtonDown( const MouseEvent& rMEvt )
150 : {
151 0 : if( !_pImp->MouseButtonDown( rMEvt ) )
152 0 : Control::MouseButtonDown( rMEvt );
153 0 : }
154 :
155 0 : void SvtIconChoiceCtrl::MouseButtonUp( const MouseEvent& rMEvt )
156 : {
157 0 : if( !_pImp->MouseButtonUp( rMEvt ) )
158 0 : Control::MouseButtonUp( rMEvt );
159 0 : }
160 :
161 0 : void SvtIconChoiceCtrl::MouseMove( const MouseEvent& rMEvt )
162 : {
163 0 : if( !_pImp->MouseMove( rMEvt ) )
164 0 : Control::MouseMove( rMEvt );
165 0 : }
166 0 : void SvtIconChoiceCtrl::ArrangeIcons()
167 : {
168 0 : if ( GetStyle() & WB_ALIGN_TOP )
169 : {
170 0 : Size aFullSize;
171 0 : Rectangle aEntryRect;
172 :
173 0 : for ( sal_uLong i = 0; i < GetEntryCount(); i++ )
174 : {
175 0 : SvxIconChoiceCtrlEntry* pEntry = GetEntry ( i );
176 0 : aEntryRect = _pImp->GetEntryBoundRect ( pEntry );
177 :
178 0 : aFullSize.setWidth ( aFullSize.getWidth()+aEntryRect.GetWidth() );
179 : }
180 :
181 0 : _pImp->Arrange ( false, aFullSize.getWidth() );
182 : }
183 0 : else if ( GetStyle() & WB_ALIGN_LEFT )
184 : {
185 0 : Size aFullSize;
186 0 : Rectangle aEntryRect;
187 :
188 0 : for ( sal_uLong i = 0; i < GetEntryCount(); i++ )
189 : {
190 0 : SvxIconChoiceCtrlEntry* pEntry = GetEntry ( i );
191 0 : aEntryRect = _pImp->GetEntryBoundRect ( pEntry );
192 :
193 0 : aFullSize.setHeight ( aFullSize.getHeight()+aEntryRect.GetHeight() );
194 : }
195 :
196 0 : _pImp->Arrange ( false, 0, aFullSize.getHeight() );
197 : }
198 : else
199 : {
200 0 : _pImp->Arrange();
201 : }
202 0 : _pImp->Arrange( false, 0, 1000 );
203 0 : }
204 0 : void SvtIconChoiceCtrl::Resize()
205 : {
206 0 : _pImp->Resize();
207 0 : Control::Resize();
208 0 : }
209 :
210 0 : Point SvtIconChoiceCtrl::GetPixelPos( const Point& rPosLogic ) const
211 : {
212 0 : Point aPos( rPosLogic );
213 0 : aPos += GetMapMode().GetOrigin();
214 0 : return aPos;
215 : }
216 :
217 0 : void SvtIconChoiceCtrl::DocumentRectChanged()
218 : {
219 0 : _aDocRectChangedHdl.Call( this );
220 0 : }
221 :
222 0 : void SvtIconChoiceCtrl::VisibleRectChanged()
223 : {
224 0 : _aVisRectChangedHdl.Call( this );
225 0 : }
226 :
227 0 : void SvtIconChoiceCtrl::GetFocus()
228 : {
229 0 : _pImp->GetFocus();
230 0 : Control::GetFocus();
231 : sal_uLong nPos;
232 0 : SvxIconChoiceCtrlEntry* pSelectedEntry = GetSelectedEntry ( nPos );
233 0 : if ( pSelectedEntry )
234 0 : _pImp->CallEventListeners( VCLEVENT_LISTBOX_SELECT, pSelectedEntry );
235 0 : }
236 :
237 0 : void SvtIconChoiceCtrl::LoseFocus()
238 : {
239 0 : _pImp->LoseFocus();
240 0 : Control::LoseFocus();
241 0 : }
242 :
243 0 : void SvtIconChoiceCtrl::SetFont( const Font& rFont )
244 : {
245 0 : if( rFont != GetFont() )
246 : {
247 0 : Control::SetFont( rFont );
248 0 : _pImp->FontModified();
249 : }
250 0 : }
251 :
252 0 : void SvtIconChoiceCtrl::SetPointFont( const Font& rFont )
253 : {
254 0 : if( rFont != GetPointFont() )
255 : {
256 0 : Control::SetPointFont( rFont );
257 0 : _pImp->FontModified();
258 : }
259 0 : }
260 0 : SvxIconChoiceCtrlEntry* SvtIconChoiceCtrl::GetEntry( const Point& rPixPos, bool bHit ) const
261 : {
262 0 : Point aPos( rPixPos );
263 0 : aPos -= GetMapMode().GetOrigin();
264 0 : return ((SvtIconChoiceCtrl*)this)->_pImp->GetEntry( aPos, bHit );
265 : }
266 :
267 0 : void SvtIconChoiceCtrl::SetStyle( WinBits nWinStyle )
268 : {
269 0 : _pImp->SetStyle( nWinStyle );
270 0 : }
271 :
272 0 : WinBits SvtIconChoiceCtrl::GetStyle() const
273 : {
274 0 : return _pImp->GetStyle();
275 : }
276 0 : void SvtIconChoiceCtrl::Command( const CommandEvent& rCEvt )
277 : {
278 0 : _pImp->Command( rCEvt );
279 0 : }
280 :
281 : #ifdef DBG_UTIL
282 : void SvtIconChoiceCtrl::SetEntryTextMode( SvxIconChoiceCtrlTextMode eMode, SvxIconChoiceCtrlEntry* pEntry )
283 : {
284 : _pImp->SetEntryTextMode( eMode, pEntry );
285 : }
286 : #endif
287 :
288 0 : sal_uLong SvtIconChoiceCtrl::GetEntryCount() const
289 : {
290 0 : return _pImp->GetEntryCount();
291 : }
292 :
293 0 : SvxIconChoiceCtrlEntry* SvtIconChoiceCtrl::GetEntry( sal_uLong nPos ) const
294 : {
295 0 : return _pImp->GetEntry( nPos );
296 : }
297 :
298 0 : void SvtIconChoiceCtrl::CreateAutoMnemonics( MnemonicGenerator& _rUsedMnemonics )
299 : {
300 0 : _pImp->CreateAutoMnemonics( &_rUsedMnemonics );
301 0 : }
302 :
303 0 : void SvtIconChoiceCtrl::CreateAutoMnemonics( void )
304 : {
305 0 : _pImp->CreateAutoMnemonics();
306 0 : }
307 :
308 0 : SvxIconChoiceCtrlEntry* SvtIconChoiceCtrl::GetSelectedEntry( sal_uLong& rPos ) const
309 : {
310 0 : return _pImp->GetFirstSelectedEntry( rPos );
311 : }
312 :
313 0 : void SvtIconChoiceCtrl::ClickIcon()
314 : {
315 : sal_uLong nPos;
316 0 : GetSelectedEntry ( nPos );
317 0 : _aClickIconHdl.Call( this );
318 0 : }
319 0 : bool SvtIconChoiceCtrl::IsEntryEditing() const
320 : {
321 0 : return _pImp->IsEntryEditing();
322 : }
323 :
324 0 : bool SvtIconChoiceCtrl::SetChoiceWithCursor ( bool bDo )
325 : {
326 0 : return _pImp->SetChoiceWithCursor (bDo);
327 : }
328 :
329 0 : void SvtIconChoiceCtrl::KeyInput( const KeyEvent& rKEvt )
330 : {
331 0 : bool bKeyUsed = DoKeyInput( rKEvt );
332 0 : if ( !bKeyUsed )
333 : {
334 0 : _pCurKeyEvent = (KeyEvent*)&rKEvt;
335 0 : Control::KeyInput( rKEvt );
336 0 : _pCurKeyEvent = NULL;
337 : }
338 0 : }
339 0 : bool SvtIconChoiceCtrl::DoKeyInput( const KeyEvent& rKEvt )
340 : {
341 : // under OS/2, we get key up/down even while editing
342 0 : if( IsEntryEditing() )
343 0 : return true;
344 0 : _pCurKeyEvent = (KeyEvent*)&rKEvt;
345 0 : bool bHandled = _pImp->KeyInput( rKEvt );
346 0 : _pCurKeyEvent = NULL;
347 0 : return bHandled;
348 : }
349 0 : sal_uLong SvtIconChoiceCtrl::GetEntryListPos( SvxIconChoiceCtrlEntry* pEntry ) const
350 : {
351 0 : return _pImp->GetEntryListPos( pEntry );
352 : }
353 0 : SvxIconChoiceCtrlEntry* SvtIconChoiceCtrl::GetCursor( ) const
354 : {
355 0 : return _pImp->GetCurEntry( );
356 : }
357 0 : void SvtIconChoiceCtrl::SetCursor( SvxIconChoiceCtrlEntry* pEntry )
358 : {
359 0 : _pImp->SetCursor( pEntry );
360 0 : }
361 0 : void SvtIconChoiceCtrl::InvalidateEntry( SvxIconChoiceCtrlEntry* pEntry )
362 : {
363 0 : _pImp->InvalidateEntry( pEntry );
364 0 : }
365 :
366 0 : void SvtIconChoiceCtrl::StateChanged( StateChangedType nType )
367 : {
368 0 : Control::StateChanged( nType );
369 0 : }
370 :
371 :
372 0 : void SvtIconChoiceCtrl::DataChanged( const DataChangedEvent& rDCEvt )
373 : {
374 0 : if ( ((rDCEvt.GetType() == DATACHANGED_SETTINGS) ||
375 0 : (rDCEvt.GetType() == DATACHANGED_FONTSUBSTITUTION) ||
376 0 : (rDCEvt.GetType() == DATACHANGED_FONTS) ) &&
377 0 : (rDCEvt.GetFlags() & SETTINGS_STYLE) )
378 : {
379 0 : _pImp->InitSettings();
380 0 : Invalidate(INVALIDATE_NOCHILDREN);
381 : }
382 : else
383 0 : Control::DataChanged( rDCEvt );
384 0 : }
385 :
386 0 : void SvtIconChoiceCtrl::SetBackground( const Wallpaper& rPaper )
387 : {
388 0 : if( rPaper != GetBackground() )
389 : {
390 0 : const StyleSettings& rStyleSettings = GetSettings().GetStyleSettings();
391 0 : Wallpaper aEmpty;
392 0 : if( rPaper == aEmpty )
393 0 : Control::SetBackground( rStyleSettings.GetFieldColor() );
394 : else
395 : {
396 0 : Wallpaper aBackground( rPaper );
397 : // HACK, as background might be transparent!
398 0 : if( !aBackground.IsBitmap() )
399 0 : aBackground.SetStyle( WALLPAPER_TILE );
400 :
401 0 : WallpaperStyle eStyle = aBackground.GetStyle();
402 0 : Color aBack( aBackground.GetColor());
403 0 : Color aTrans( COL_TRANSPARENT );
404 0 : if( aBack == aTrans && (
405 0 : (!aBackground.IsBitmap() ||
406 0 : aBackground.GetBitmap().IsTransparent() ||
407 0 : (eStyle != WALLPAPER_TILE && eStyle != WALLPAPER_SCALE))))
408 : {
409 0 : aBackground.SetColor( rStyleSettings.GetFieldColor() );
410 : }
411 0 : if( aBackground.IsScrollable() )
412 : {
413 0 : Rectangle aRect;
414 0 : aRect.SetSize( Size(32765, 32765) );
415 0 : aBackground.SetRect( aRect );
416 : }
417 : else
418 : {
419 0 : Rectangle aRect( _pImp->GetOutputRect() );
420 0 : aBackground.SetRect( aRect );
421 : }
422 0 : Control::SetBackground( aBackground );
423 : }
424 :
425 : // If text colors are attributed "hard," don't use automatism to select
426 : // a readable text color.
427 0 : Font aFont( GetFont() );
428 0 : aFont.SetColor( rStyleSettings.GetFieldTextColor() );
429 0 : SetFont( aFont );
430 :
431 0 : Invalidate(INVALIDATE_NOCHILDREN);
432 : }
433 0 : }
434 :
435 0 : void SvtIconChoiceCtrl::RequestHelp( const HelpEvent& rHEvt )
436 : {
437 0 : if ( !_pImp->RequestHelp( rHEvt ) )
438 0 : Control::RequestHelp( rHEvt );
439 0 : }
440 :
441 0 : void SvtIconChoiceCtrl::SetSelectionMode( SelectionMode eMode )
442 : {
443 0 : _pImp->SetSelectionMode( eMode );
444 0 : }
445 :
446 0 : Rectangle SvtIconChoiceCtrl::GetBoundingBox( SvxIconChoiceCtrlEntry* pEntry ) const
447 : {
448 0 : return _pImp->GetEntryBoundRect( pEntry );
449 : }
450 :
451 0 : void SvtIconChoiceCtrl::FillLayoutData() const
452 : {
453 0 : CreateLayoutData();
454 :
455 0 : SvtIconChoiceCtrl* pNonConstMe = const_cast< SvtIconChoiceCtrl* >( this );
456 :
457 : // loop through all entries
458 0 : sal_uInt16 nCount = (sal_uInt16)GetEntryCount();
459 0 : sal_uInt16 nPos = 0;
460 0 : while ( nPos < nCount )
461 : {
462 0 : SvxIconChoiceCtrlEntry* pEntry = GetEntry( nPos );
463 :
464 0 : Point aPos = _pImp->GetEntryBoundRect( pEntry ).TopLeft();
465 0 : OUString sEntryText = pEntry->GetDisplayText( );
466 0 : Rectangle aTextRect = _pImp->CalcTextRect( pEntry, &aPos, false, &sEntryText );
467 :
468 0 : bool bLargeIconMode = WB_ICON == ( _pImp->GetStyle() & ( VIEWMODE_MASK ) );
469 0 : sal_uInt16 nTextPaintFlags = bLargeIconMode ? PAINTFLAG_HOR_CENTERED : PAINTFLAG_VER_CENTERED;
470 :
471 0 : _pImp->PaintItem( aTextRect, IcnViewFieldTypeText, pEntry, nTextPaintFlags, pNonConstMe, &sEntryText, GetLayoutData() );
472 :
473 0 : ++nPos;
474 0 : }
475 0 : }
476 :
477 0 : Rectangle SvtIconChoiceCtrl::GetEntryCharacterBounds( const sal_Int32 _nEntryPos, const sal_Int32 _nCharacterIndex ) const
478 : {
479 0 : Rectangle aRect;
480 :
481 0 : Pair aEntryCharacterRange = GetLineStartEnd( _nEntryPos );
482 0 : if ( aEntryCharacterRange.A() + _nCharacterIndex < aEntryCharacterRange.B() )
483 : {
484 0 : aRect = GetCharacterBounds( aEntryCharacterRange.A() + _nCharacterIndex );
485 : }
486 :
487 0 : return aRect;
488 : }
489 :
490 0 : void SvtIconChoiceCtrl::SetNoSelection()
491 : {
492 0 : _pImp->SetNoSelection();
493 0 : }
494 :
495 0 : void SvtIconChoiceCtrl::CallImplEventListeners(sal_uLong nEvent, void* pData)
496 : {
497 0 : CallEventListeners(nEvent, pData);
498 0 : }
499 0 : ::com::sun::star::uno::Reference< XAccessible > SvtIconChoiceCtrl::CreateAccessible()
500 : {
501 0 : Window* pParent = GetAccessibleParentWindow();
502 : DBG_ASSERT( pParent, "SvTreeListBox::CreateAccessible - accessible parent not found" );
503 :
504 0 : ::com::sun::star::uno::Reference< XAccessible > xAccessible;
505 0 : if ( pParent )
506 : {
507 0 : ::com::sun::star::uno::Reference< XAccessible > xAccParent = pParent->GetAccessible();
508 0 : if ( xAccParent.is() )
509 : {
510 0 : ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer > xTemp(GetComponentInterface());
511 0 : xAccessible = _pImp->GetAccessibleFactory().createAccessibleIconChoiceCtrl( *this, xAccParent );
512 0 : }
513 : }
514 0 : return xAccessible;
515 : }
516 :
517 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|