LCOV - code coverage report
Current view: top level - svtools/source/contnr - ivctrl.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 105 238 44.1 %
Date: 2015-06-13 12:38:46 Functions: 28 51 54.9 %
Legend: Lines: hit not hit

          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          28 : SvxIconChoiceCtrlEntry::SvxIconChoiceCtrlEntry( const OUString& rText,
      37             :                                                 const Image& rImage,
      38             :                                                 SvxIconViewFlags _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          28 :     , nFlags(_nFlags)
      49             : {
      50          28 : }
      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           7 : SvtIconChoiceCtrl::SvtIconChoiceCtrl( vcl::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           7 :     _pImp           ( new SvxIconChoiceCtrl_Impl( this, nWinStyle ) ),
      80          14 :     _bAutoFontColor ( false )
      81             : 
      82             : {
      83           7 :     SetLineColor();
      84           7 :     _pImp->SetGrid( Size( 100, 70 ) );
      85           7 :     _pImp->InitSettings();
      86           7 :     _pImp->SetPositionMode( IcnViewPositionModeAutoArrange );
      87           7 : }
      88             : 
      89          10 : SvtIconChoiceCtrl::~SvtIconChoiceCtrl()
      90             : {
      91           5 :     disposeOnce();
      92           5 : }
      93             : 
      94           5 : void SvtIconChoiceCtrl::dispose()
      95             : {
      96           5 :     if (_pImp)
      97             :     {
      98           5 :         _pImp->CallEventListeners( VCLEVENT_OBJECT_DYING );
      99           5 :         delete _pImp;
     100           5 :         _pImp = NULL;
     101             :     }
     102           5 :     Control::dispose();
     103           5 : }
     104             : 
     105          28 : SvxIconChoiceCtrlEntry* SvtIconChoiceCtrl::InsertEntry( const OUString& rText, const Image& rImage, sal_uLong nPos, const Point* pPos, SvxIconViewFlags nFlags  )
     106             : {
     107          28 :     SvxIconChoiceCtrlEntry* pEntry = new SvxIconChoiceCtrlEntry( rText, rImage, nFlags);
     108             : 
     109          28 :     _pImp->InsertEntry( pEntry, nPos, pPos );
     110             : 
     111          28 :     return pEntry;
     112             : }
     113             : 
     114          24 : void SvtIconChoiceCtrl::DrawEntryImage( SvxIconChoiceCtrlEntry* pEntry, const Point& rPos, OutputDevice& rDev )
     115             : {
     116          24 :     rDev.DrawImage( rPos, pEntry->GetImage() );
     117          24 : }
     118             : 
     119          72 : OUString SvtIconChoiceCtrl::GetEntryText( SvxIconChoiceCtrlEntry* pEntry, bool )
     120             : {
     121          72 :     return pEntry->GetText();
     122             : }
     123             : 
     124           6 : void SvtIconChoiceCtrl::Paint(vcl::RenderContext& rRenderContext, const Rectangle& rRect)
     125             : {
     126           6 :     _pImp->Paint(rRenderContext, rRect);
     127           6 : }
     128             : 
     129           0 : void SvtIconChoiceCtrl::MouseButtonDown( const MouseEvent& rMEvt )
     130             : {
     131           0 :     if( !_pImp->MouseButtonDown( rMEvt ) )
     132           0 :         Control::MouseButtonDown( rMEvt );
     133           0 : }
     134             : 
     135           0 : void SvtIconChoiceCtrl::MouseButtonUp( const MouseEvent& rMEvt )
     136             : {
     137           0 :     if( !_pImp->MouseButtonUp( rMEvt ) )
     138           0 :         Control::MouseButtonUp( rMEvt );
     139           0 : }
     140             : 
     141           0 : void SvtIconChoiceCtrl::MouseMove( const MouseEvent& rMEvt )
     142             : {
     143           0 :     if( !_pImp->MouseMove( rMEvt ) )
     144           0 :         Control::MouseMove( rMEvt );
     145           0 : }
     146          29 : void SvtIconChoiceCtrl::ArrangeIcons()
     147             : {
     148          29 :     if ( GetStyle() & WB_ALIGN_TOP )
     149             :     {
     150           0 :         Size aFullSize;
     151           0 :         Rectangle aEntryRect;
     152             : 
     153           0 :         for ( sal_uLong i = 0; i < GetEntryCount(); i++ )
     154             :         {
     155           0 :             SvxIconChoiceCtrlEntry* pEntry = GetEntry ( i );
     156           0 :             aEntryRect = _pImp->GetEntryBoundRect ( pEntry );
     157             : 
     158           0 :             aFullSize.setWidth ( aFullSize.getWidth()+aEntryRect.GetWidth() );
     159             :         }
     160             : 
     161           0 :         _pImp->Arrange ( false, aFullSize.getWidth() );
     162             :     }
     163          29 :     else if ( GetStyle() & WB_ALIGN_LEFT )
     164             :     {
     165          29 :         Size aFullSize;
     166          29 :         Rectangle aEntryRect;
     167             : 
     168         145 :         for ( sal_uLong i = 0; i < GetEntryCount(); i++ )
     169             :         {
     170         116 :             SvxIconChoiceCtrlEntry* pEntry = GetEntry ( i );
     171         116 :             aEntryRect = _pImp->GetEntryBoundRect ( pEntry );
     172             : 
     173         116 :             aFullSize.setHeight ( aFullSize.getHeight()+aEntryRect.GetHeight() );
     174             :         }
     175             : 
     176          29 :         _pImp->Arrange ( false, 0, aFullSize.getHeight() );
     177             :     }
     178             :     else
     179             :     {
     180           0 :         _pImp->Arrange();
     181             :     }
     182          29 :     _pImp->Arrange( false, 0, 1000 );
     183          29 : }
     184          29 : void SvtIconChoiceCtrl::Resize()
     185             : {
     186          29 :     _pImp->Resize();
     187          29 :     Control::Resize();
     188          29 : }
     189             : 
     190           0 : Point SvtIconChoiceCtrl::GetPixelPos( const Point& rPosLogic ) const
     191             : {
     192           0 :     Point aPos( rPosLogic );
     193           0 :     aPos += GetMapMode().GetOrigin();
     194           0 :     return aPos;
     195             : }
     196             : 
     197           3 : void SvtIconChoiceCtrl::DocumentRectChanged()
     198             : {
     199           3 :     _aDocRectChangedHdl.Call( this );
     200           3 : }
     201             : 
     202           3 : void SvtIconChoiceCtrl::VisibleRectChanged()
     203             : {
     204           3 :     _aVisRectChangedHdl.Call( this );
     205           3 : }
     206             : 
     207          12 : void SvtIconChoiceCtrl::GetFocus()
     208             : {
     209          12 :     _pImp->GetFocus();
     210          12 :     Control::GetFocus();
     211             :     sal_uLong nPos;
     212          12 :     SvxIconChoiceCtrlEntry* pSelectedEntry = GetSelectedEntry ( nPos );
     213          12 :     if ( pSelectedEntry )
     214           0 :         _pImp->CallEventListeners( VCLEVENT_LISTBOX_SELECT, pSelectedEntry );
     215          12 : }
     216             : 
     217           6 : void SvtIconChoiceCtrl::LoseFocus()
     218             : {
     219           6 :     if (_pImp)
     220           6 :         _pImp->LoseFocus();
     221           6 :     Control::LoseFocus();
     222           6 : }
     223             : 
     224           0 : void SvtIconChoiceCtrl::SetFont(const vcl::Font& rFont)
     225             : {
     226           0 :     if (rFont != GetFont())
     227             :     {
     228           0 :         Control::SetFont(rFont);
     229           0 :         _pImp->FontModified();
     230             :     }
     231           0 : }
     232             : 
     233           7 : void SvtIconChoiceCtrl::SetPointFont(const vcl::Font& rFont)
     234             : {
     235           7 :     if (rFont != GetPointFont(*this)) //FIXME
     236             :     {
     237           7 :         Control::SetPointFont(*this, rFont); //FIXME
     238           7 :         _pImp->FontModified();
     239             :     }
     240           7 : }
     241             : 
     242           0 : SvxIconChoiceCtrlEntry* SvtIconChoiceCtrl::GetEntry( const Point& rPixPos, bool bHit ) const
     243             : {
     244           0 :     Point aPos( rPixPos );
     245           0 :     aPos -= GetMapMode().GetOrigin();
     246           0 :     return const_cast<SvtIconChoiceCtrl*>(this)->_pImp->GetEntry( aPos, bHit );
     247             : }
     248             : 
     249           0 : void SvtIconChoiceCtrl::SetStyle( WinBits nWinStyle )
     250             : {
     251           0 :     _pImp->SetStyle( nWinStyle );
     252           0 : }
     253             : 
     254          58 : WinBits SvtIconChoiceCtrl::GetStyle() const
     255             : {
     256          58 :     return _pImp->GetStyle();
     257             : }
     258           0 : void SvtIconChoiceCtrl::Command( const CommandEvent& rCEvt )
     259             : {
     260           0 :     _pImp->Command( rCEvt );
     261           0 : }
     262             : 
     263             : #ifdef DBG_UTIL
     264             : void SvtIconChoiceCtrl::SetEntryTextMode( SvxIconChoiceCtrlTextMode eMode, SvxIconChoiceCtrlEntry* pEntry )
     265             : {
     266             :     _pImp->SetEntryTextMode( eMode, pEntry );
     267             : }
     268             : #endif
     269             : 
     270         219 : sal_uLong SvtIconChoiceCtrl::GetEntryCount() const
     271             : {
     272         219 :     return _pImp ? _pImp->GetEntryCount() : 0;
     273             : }
     274             : 
     275         208 : SvxIconChoiceCtrlEntry* SvtIconChoiceCtrl::GetEntry( sal_uLong nPos ) const
     276             : {
     277         208 :     return _pImp ? _pImp->GetEntry( nPos ) : NULL;
     278             : }
     279             : 
     280           7 : void SvtIconChoiceCtrl::CreateAutoMnemonics( MnemonicGenerator& _rUsedMnemonics )
     281             : {
     282           7 :     _pImp->CreateAutoMnemonics( &_rUsedMnemonics );
     283           7 : }
     284             : 
     285         186 : SvxIconChoiceCtrlEntry* SvtIconChoiceCtrl::GetSelectedEntry( sal_uLong& rPos ) const
     286             : {
     287         186 :     return _pImp ? _pImp->GetFirstSelectedEntry( rPos ) : NULL;
     288             : }
     289             : 
     290           3 : void SvtIconChoiceCtrl::ClickIcon()
     291             : {
     292             :     sal_uLong nPos;
     293           3 :     GetSelectedEntry ( nPos );
     294           3 :     _aClickIconHdl.Call( this );
     295           3 : }
     296           0 : bool SvtIconChoiceCtrl::IsEntryEditing() const
     297             : {
     298           0 :     return _pImp->IsEntryEditing();
     299             : }
     300             : 
     301           7 : bool SvtIconChoiceCtrl::SetChoiceWithCursor ( bool bDo )
     302             : {
     303           7 :     return _pImp->SetChoiceWithCursor (bDo);
     304             : }
     305             : 
     306           0 : void SvtIconChoiceCtrl::KeyInput( const KeyEvent& rKEvt )
     307             : {
     308           0 :     bool bKeyUsed = DoKeyInput( rKEvt );
     309           0 :     if ( !bKeyUsed )
     310             :     {
     311           0 :         _pCurKeyEvent = const_cast<KeyEvent*>(&rKEvt);
     312           0 :         Control::KeyInput( rKEvt );
     313           0 :         _pCurKeyEvent = NULL;
     314             :     }
     315           0 : }
     316           0 : bool SvtIconChoiceCtrl::DoKeyInput( const KeyEvent& rKEvt )
     317             : {
     318             :     // under OS/2, we get key up/down even while editing
     319           0 :     if( IsEntryEditing() )
     320           0 :         return true;
     321           0 :     _pCurKeyEvent = const_cast<KeyEvent*>(&rKEvt);
     322           0 :     bool bHandled = _pImp->KeyInput( rKEvt );
     323           0 :     _pCurKeyEvent = NULL;
     324           0 :     return bHandled;
     325             : }
     326           0 : sal_uLong SvtIconChoiceCtrl::GetEntryListPos( SvxIconChoiceCtrlEntry* pEntry ) const
     327             : {
     328           0 :     return _pImp->GetEntryListPos( pEntry );
     329             : }
     330           0 : SvxIconChoiceCtrlEntry* SvtIconChoiceCtrl::GetCursor( ) const
     331             : {
     332           0 :     return _pImp->GetCurEntry( );
     333             : }
     334           3 : void SvtIconChoiceCtrl::SetCursor( SvxIconChoiceCtrlEntry* pEntry )
     335             : {
     336           3 :     _pImp->SetCursor( pEntry );
     337           3 : }
     338           0 : void SvtIconChoiceCtrl::InvalidateEntry( SvxIconChoiceCtrlEntry* pEntry )
     339             : {
     340           0 :     _pImp->InvalidateEntry( pEntry );
     341           0 : }
     342             : 
     343          31 : void SvtIconChoiceCtrl::StateChanged( StateChangedType nType )
     344             : {
     345          31 :     Control::StateChanged( nType );
     346          31 : }
     347             : 
     348             : 
     349           0 : void SvtIconChoiceCtrl::DataChanged( const DataChangedEvent& rDCEvt )
     350             : {
     351           0 :     if ( ((rDCEvt.GetType() == DataChangedEventType::SETTINGS) ||
     352           0 :          (rDCEvt.GetType() == DataChangedEventType::FONTSUBSTITUTION) ||
     353           0 :          (rDCEvt.GetType() == DataChangedEventType::FONTS) ) &&
     354           0 :          (rDCEvt.GetFlags() & AllSettingsFlags::STYLE) )
     355             :     {
     356           0 :         _pImp->InitSettings();
     357           0 :         Invalidate(InvalidateFlags::NoChildren);
     358             :     }
     359             :     else
     360           0 :         Control::DataChanged( rDCEvt );
     361           0 : }
     362             : 
     363           7 : void SvtIconChoiceCtrl::SetBackground( const Wallpaper& rPaper )
     364             : {
     365           7 :     if( rPaper != GetBackground() )
     366             :     {
     367           0 :         const StyleSettings& rStyleSettings = GetSettings().GetStyleSettings();
     368           0 :         Wallpaper aEmpty;
     369           0 :         if( rPaper == aEmpty )
     370           0 :             Control::SetBackground( rStyleSettings.GetFieldColor() );
     371             :         else
     372             :         {
     373           0 :             Wallpaper aBackground( rPaper );
     374             :             // HACK, as background might be transparent!
     375           0 :             if( !aBackground.IsBitmap() )
     376           0 :                 aBackground.SetStyle( WALLPAPER_TILE );
     377             : 
     378           0 :             WallpaperStyle eStyle = aBackground.GetStyle();
     379           0 :             Color aBack( aBackground.GetColor());
     380           0 :             Color aTrans( COL_TRANSPARENT );
     381           0 :             if( aBack == aTrans  && (
     382           0 :                 (!aBackground.IsBitmap() ||
     383           0 :                     aBackground.GetBitmap().IsTransparent() ||
     384           0 :                     (eStyle != WALLPAPER_TILE && eStyle != WALLPAPER_SCALE))))
     385             :             {
     386           0 :                 aBackground.SetColor( rStyleSettings.GetFieldColor() );
     387             :             }
     388           0 :             if( aBackground.IsScrollable() )
     389             :             {
     390           0 :                 Rectangle aRect;
     391           0 :                 aRect.SetSize( Size(32765, 32765) );
     392           0 :                 aBackground.SetRect( aRect );
     393             :             }
     394             :             else
     395             :             {
     396           0 :                 Rectangle aRect( _pImp->GetOutputRect() );
     397           0 :                 aBackground.SetRect( aRect );
     398             :             }
     399           0 :             Control::SetBackground( aBackground );
     400             :         }
     401             : 
     402             :         // If text colors are attributed "hard," don't use automatism to select
     403             :         // a readable text color.
     404           0 :         vcl::Font aFont( GetFont() );
     405           0 :         aFont.SetColor( rStyleSettings.GetFieldTextColor() );
     406           0 :         SetFont( aFont );
     407             : 
     408           0 :         Invalidate(InvalidateFlags::NoChildren);
     409             :     }
     410           7 : }
     411             : 
     412           0 : void SvtIconChoiceCtrl::RequestHelp( const HelpEvent& rHEvt )
     413             : {
     414           0 :     if ( !_pImp->RequestHelp( rHEvt ) )
     415           0 :         Control::RequestHelp( rHEvt );
     416           0 : }
     417             : 
     418           7 : void SvtIconChoiceCtrl::SetSelectionMode( SelectionMode eMode )
     419             : {
     420           7 :     _pImp->SetSelectionMode( eMode );
     421           7 : }
     422             : 
     423          51 : Rectangle SvtIconChoiceCtrl::GetBoundingBox( SvxIconChoiceCtrlEntry* pEntry ) const
     424             : {
     425          51 :     return _pImp->GetEntryBoundRect( pEntry );
     426             : }
     427             : 
     428           0 : void SvtIconChoiceCtrl::FillLayoutData() const
     429             : {
     430           0 :     CreateLayoutData();
     431           0 :     const_cast<SvtIconChoiceCtrl*>(this)->Invalidate();
     432           0 : }
     433             : 
     434           0 : Rectangle SvtIconChoiceCtrl::GetEntryCharacterBounds( const sal_Int32 _nEntryPos, const sal_Int32 _nCharacterIndex ) const
     435             : {
     436           0 :     Rectangle aRect;
     437             : 
     438           0 :     Pair aEntryCharacterRange = GetLineStartEnd( _nEntryPos );
     439           0 :     if ( aEntryCharacterRange.A() + _nCharacterIndex < aEntryCharacterRange.B() )
     440             :     {
     441           0 :         aRect = GetCharacterBounds( aEntryCharacterRange.A() + _nCharacterIndex );
     442             :     }
     443             : 
     444           0 :     return aRect;
     445             : }
     446             : 
     447           0 : void SvtIconChoiceCtrl::SetNoSelection()
     448             : {
     449           0 :     _pImp->SetNoSelection();
     450           0 : }
     451             : 
     452           8 : void SvtIconChoiceCtrl::CallImplEventListeners(sal_uLong nEvent, void* pData)
     453             : {
     454           8 :     CallEventListeners(nEvent, pData);
     455           8 : }
     456           0 : ::com::sun::star::uno::Reference< XAccessible > SvtIconChoiceCtrl::CreateAccessible()
     457             : {
     458           0 :     vcl::Window* pParent = GetAccessibleParentWindow();
     459             :     DBG_ASSERT( pParent, "SvTreeListBox::CreateAccessible - accessible parent not found" );
     460             : 
     461           0 :     ::com::sun::star::uno::Reference< XAccessible > xAccessible;
     462           0 :     if ( pParent )
     463             :     {
     464           0 :         ::com::sun::star::uno::Reference< XAccessible > xAccParent = pParent->GetAccessible();
     465           0 :         if ( xAccParent.is() )
     466             :         {
     467           0 :             ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer > xTemp(GetComponentInterface());
     468           0 :             xAccessible = _pImp->GetAccessibleFactory().createAccessibleIconChoiceCtrl( *this, xAccParent );
     469           0 :         }
     470             :     }
     471           0 :     return xAccessible;
     472             : }
     473             : 
     474             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11