LCOV - code coverage report
Current view: top level - svx/source/tbxctrls - colrctrl.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 1 248 0.4 %
Date: 2015-06-13 12:38:46 Functions: 2 30 6.7 %
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             : #include <sal/config.h>
      21             : 
      22             : #include <sot/exchange.hxx>
      23             : #include <sot/storage.hxx>
      24             : #include <svx/dialogs.hrc>
      25             : 
      26             : #include <sfx2/viewsh.hxx>
      27             : #include <sfx2/objsh.hxx>
      28             : #include <sfx2/dispatch.hxx>
      29             : #include <vcl/image.hxx>
      30             : 
      31             : #include <svx/colrctrl.hxx>
      32             : 
      33             : #include <svx/svdview.hxx>
      34             : #include "svx/drawitem.hxx"
      35             : #include <editeng/colritem.hxx>
      36             : #include "svx/xattr.hxx"
      37             : #include <svx/xtable.hxx>
      38             : #include <svx/dialmgr.hxx>
      39             : #include "svx/xexch.hxx"
      40             : #include "helpid.hrc"
      41             : #include <vcl/svapp.hxx>
      42             : 
      43             : using namespace com::sun::star;
      44             : 
      45             : // - SvxColorValueSetData -
      46             : 
      47           0 : class SvxColorValueSetData : public TransferableHelper
      48             : {
      49             : private:
      50             : 
      51             :     XFillExchangeData       maData;
      52             : 
      53             : protected:
      54             : 
      55             :     virtual void            AddSupportedFormats() SAL_OVERRIDE;
      56             :     virtual bool GetData( const css::datatransfer::DataFlavor& rFlavor, const OUString& rDestDoc ) SAL_OVERRIDE;
      57             :     virtual bool            WriteObject( tools::SvRef<SotStorageStream>& rxOStm, void* pUserObject, SotClipboardFormatId nUserObjectId, const ::com::sun::star::datatransfer::DataFlavor& rFlavor ) SAL_OVERRIDE;
      58             : 
      59             : public:
      60             : 
      61           0 :     explicit SvxColorValueSetData( const XFillAttrSetItem& rSetItem ) :
      62           0 :         maData( rSetItem ) {}
      63             : };
      64             : 
      65           0 : void SvxColorValueSetData::AddSupportedFormats()
      66             : {
      67           0 :     AddFormat( SotClipboardFormatId::XFA );
      68           0 : }
      69             : 
      70           0 : bool SvxColorValueSetData::GetData( const css::datatransfer::DataFlavor& rFlavor, const OUString& /*rDestDoc*/ )
      71             : {
      72           0 :     bool bRet = false;
      73             : 
      74           0 :     if( SotExchange::GetFormat( rFlavor ) == SotClipboardFormatId::XFA )
      75             :     {
      76           0 :         SetObject( &maData, SotClipboardFormatId::NONE, rFlavor );
      77           0 :         bRet = true;
      78             :     }
      79             : 
      80           0 :     return bRet;
      81             : }
      82             : 
      83           0 : bool SvxColorValueSetData::WriteObject( tools::SvRef<SotStorageStream>& rxOStm, void*, SotClipboardFormatId, const ::com::sun::star::datatransfer::DataFlavor&  )
      84             : {
      85           0 :     WriteXFillExchangeData( *rxOStm, maData );
      86           0 :     return( rxOStm->GetError() == ERRCODE_NONE );
      87             : }
      88             : 
      89           0 : SvxColorValueSet_docking::SvxColorValueSet_docking( vcl::Window* _pParent, WinBits nWinStyle ) :
      90             :     SvxColorValueSet( _pParent, nWinStyle ),
      91             :     DragSourceHelper( this ),
      92           0 :     mbLeftButton(true)
      93             : {
      94           0 :     SetAccessibleName(SVX_RESSTR(STR_COLORTABLE));
      95           0 : }
      96             : 
      97           0 : void SvxColorValueSet_docking::MouseButtonDown( const MouseEvent& rMEvt )
      98             : {
      99             :     // Fuer Mac noch anders handlen !
     100           0 :     if( rMEvt.IsLeft() )
     101             :     {
     102           0 :         mbLeftButton = true;
     103           0 :         SvxColorValueSet::MouseButtonDown( rMEvt );
     104             :     }
     105             :     else
     106             :     {
     107           0 :         mbLeftButton = false;
     108           0 :         MouseEvent aMEvt( rMEvt.GetPosPixel(),
     109           0 :                           rMEvt.GetClicks(),
     110             :                           rMEvt.GetMode(),
     111             :                           MOUSE_LEFT,
     112           0 :                           rMEvt.GetModifier() );
     113           0 :         SvxColorValueSet::MouseButtonDown( aMEvt );
     114             :     }
     115             : 
     116           0 :     aDragPosPixel = GetPointerPosPixel();
     117           0 : }
     118             : 
     119           0 : void SvxColorValueSet_docking::MouseButtonUp( const MouseEvent& rMEvt )
     120             : {
     121             :     // Fuer Mac noch anders handlen !
     122           0 :     if( rMEvt.IsLeft() )
     123             :     {
     124           0 :         mbLeftButton = true;
     125           0 :         SvxColorValueSet::MouseButtonUp( rMEvt );
     126             :     }
     127             :     else
     128             :     {
     129           0 :         mbLeftButton = false;
     130           0 :         MouseEvent aMEvt( rMEvt.GetPosPixel(),
     131           0 :                           rMEvt.GetClicks(),
     132             :                           rMEvt.GetMode(),
     133             :                           MOUSE_LEFT,
     134           0 :                           rMEvt.GetModifier() );
     135           0 :         SvxColorValueSet::MouseButtonUp( aMEvt );
     136             :     }
     137           0 :     SetNoSelection();
     138           0 : }
     139             : 
     140           0 : void SvxColorValueSet_docking::Command(const CommandEvent& rCEvt)
     141             : {
     142             :     // Basisklasse
     143           0 :     SvxColorValueSet::Command(rCEvt);
     144           0 : }
     145             : 
     146           0 : void SvxColorValueSet_docking::StartDrag( sal_Int8 , const Point&  )
     147             : {
     148           0 :     Application::PostUserEvent(LINK(this, SvxColorValueSet_docking, ExecDragHdl), NULL, true);
     149           0 : }
     150             : 
     151           0 : void SvxColorValueSet_docking::DoDrag()
     152             : {
     153           0 :     SfxObjectShell* pDocSh = SfxObjectShell::Current();
     154           0 :     sal_uInt16          nItemId = GetItemId( aDragPosPixel );
     155             : 
     156           0 :     if( pDocSh && nItemId )
     157             :     {
     158           0 :         XFillAttrSetItem    aXFillSetItem( &pDocSh->GetPool() );
     159           0 :         SfxItemSet&         rSet = aXFillSetItem.GetItemSet();
     160             : 
     161           0 :         rSet.Put( XFillColorItem( GetItemText( nItemId ), GetItemColor( nItemId ) ) );
     162           0 :         rSet.Put(XFillStyleItem( ( 1 == nItemId ) ? drawing::FillStyle_NONE : drawing::FillStyle_SOLID ) );
     163             : 
     164           0 :         EndSelection();
     165           0 :         ( new SvxColorValueSetData( aXFillSetItem ) )->StartDrag( this, DND_ACTION_COPY );
     166           0 :         ReleaseMouse();
     167             :     }
     168           0 : }
     169             : 
     170           0 : IMPL_LINK_NOARG(SvxColorValueSet_docking, ExecDragHdl)
     171             : {
     172             :     // Als Link, damit asynchron ohne ImpMouseMoveMsg auf dem Stack auch die
     173             :     // Farbleiste geloescht werden darf
     174           0 :     DoDrag();
     175           0 :     return 0;
     176             : }
     177             : 
     178           0 : SvxColorDockingWindow::SvxColorDockingWindow
     179             : (
     180             :     SfxBindings* _pBindings,
     181             :     SfxChildWindow* pCW,
     182             :     vcl::Window* _pParent
     183             : ) :
     184             : 
     185             :     SfxDockingWindow( _pBindings, pCW, _pParent, WB_MOVEABLE|WB_CLOSEABLE|WB_SIZEABLE|WB_DOCKABLE ),
     186             :     pColorList      (),
     187             :     aColorSet       ( VclPtr<SvxColorValueSet_docking>::Create(this) ),
     188             :     nLeftSlot       ( SID_ATTR_FILL_COLOR ),
     189             :     nRightSlot      ( SID_ATTR_LINE_COLOR ),
     190             :     nCols           ( 20 ),
     191             :     nLines          ( 1 ),
     192           0 :     nCount          ( 0 )
     193             : {
     194           0 :     SetText(SVX_RESSTR(STR_COLORTABLE));
     195           0 :     SetSizePixel(LogicToPixel(Size(150, 22), MapMode(MAP_APPFONT)));
     196           0 :     SetHelpId(HID_CTRL_COLOR);
     197             : 
     198           0 :     aColorSet->SetSelectHdl( LINK( this, SvxColorDockingWindow, SelectHdl ) );
     199           0 :     aColorSet->SetHelpId(HID_COLOR_CTL_COLORS);
     200           0 :     aColorSet->SetPosSizePixel(LogicToPixel(Point(2, 2), MapMode(MAP_APPFONT)),
     201           0 :                               LogicToPixel(Size(146, 18), MapMode(MAP_APPFONT)));
     202             : 
     203             :     // Get the model from the view shell.  Using SfxObjectShell::Current()
     204             :     // is unreliable when called at the wrong times.
     205           0 :     SfxObjectShell* pDocSh = NULL;
     206           0 :     if (_pBindings != NULL)
     207             :     {
     208           0 :         SfxDispatcher* pDispatcher = _pBindings->GetDispatcher();
     209           0 :         if (pDispatcher != NULL)
     210             :         {
     211           0 :             SfxViewFrame* pFrame = pDispatcher->GetFrame();
     212           0 :             if (pFrame != NULL)
     213             :             {
     214           0 :                 SfxViewShell* pViewShell = pFrame->GetViewShell();
     215           0 :                 if (pViewShell != NULL)
     216           0 :                     pDocSh = pViewShell->GetObjectShell();
     217             :             }
     218             :         }
     219             :     }
     220             : 
     221           0 :     if ( pDocSh )
     222             :     {
     223           0 :         const SfxPoolItem*  pItem = pDocSh->GetItem( SID_COLOR_TABLE );
     224           0 :         if( pItem )
     225             :         {
     226           0 :             pColorList = static_cast<const SvxColorListItem*>(pItem)->GetColorList();
     227           0 :             FillValueSet();
     228             :         }
     229             :     }
     230             : 
     231           0 :     aItemSize = aColorSet->CalcItemSizePixel(Size(SvxColorValueSet::getEntryEdgeLength(), SvxColorValueSet::getEntryEdgeLength()));
     232           0 :     aItemSize.Width() = aItemSize.Width() + SvxColorValueSet::getEntryEdgeLength();
     233           0 :     aItemSize.Width() /= 2;
     234           0 :     aItemSize.Height() = aItemSize.Height() + SvxColorValueSet::getEntryEdgeLength();
     235           0 :     aItemSize.Height() /= 2;
     236             : 
     237           0 :     SetSize();
     238           0 :     aColorSet->Show();
     239           0 :     if (_pBindings != NULL)
     240           0 :         StartListening( *_pBindings, true );
     241           0 : }
     242             : 
     243           0 : SvxColorDockingWindow::~SvxColorDockingWindow()
     244             : {
     245           0 :     disposeOnce();
     246           0 : }
     247             : 
     248           0 : void SvxColorDockingWindow::dispose()
     249             : {
     250           0 :     EndListening( GetBindings() );
     251           0 :     aColorSet.disposeAndClear();
     252           0 :     SfxDockingWindow::dispose();
     253           0 : }
     254             : 
     255           0 : void SvxColorDockingWindow::Notify( SfxBroadcaster& , const SfxHint& rHint )
     256             : {
     257           0 :     const SfxPoolItemHint* pPoolItemHint = dynamic_cast<const SfxPoolItemHint*>(&rHint);
     258           0 :     if ( pPoolItemHint
     259           0 :          && ( pPoolItemHint->GetObject()->ISA( SvxColorListItem ) ) )
     260             :     {
     261             :         // Die Liste der Farben hat sich geaendert
     262           0 :         pColorList = static_cast<SvxColorListItem*>( pPoolItemHint->GetObject() )->GetColorList();
     263           0 :         FillValueSet();
     264             :     }
     265           0 : }
     266             : 
     267           0 : void SvxColorDockingWindow::FillValueSet()
     268             : {
     269           0 :     if( pColorList.is() )
     270             :     {
     271           0 :         nCount = pColorList->Count();
     272           0 :         aColorSet->Clear();
     273             : 
     274             :         // create the first entry for 'invisible/none'
     275           0 :         const Size aColorSize(SvxColorValueSet::getEntryEdgeLength(), SvxColorValueSet::getEntryEdgeLength());
     276           0 :         long nPtX = aColorSize.Width() - 1;
     277           0 :         long nPtY = aColorSize.Height() - 1;
     278           0 :         ScopedVclPtrInstance< VirtualDevice > pVD;
     279             : 
     280           0 :         pVD->SetOutputSizePixel( aColorSize );
     281           0 :         pVD->SetLineColor( Color( COL_BLACK ) );
     282           0 :         pVD->SetBackground( Wallpaper( Color( COL_WHITE ) ) );
     283           0 :         pVD->DrawLine( Point(), Point( nPtX, nPtY ) );
     284           0 :         pVD->DrawLine( Point( 0, nPtY ), Point( nPtX, 0 ) );
     285             : 
     286           0 :         Bitmap aBmp( pVD->GetBitmap( Point(), aColorSize ) );
     287             : 
     288           0 :         aColorSet->InsertItem( (sal_uInt16)1, Image(aBmp), SVX_RESSTR( RID_SVXSTR_INVISIBLE ) );
     289             : 
     290           0 :         aColorSet->addEntriesForXColorList(*pColorList, 2);
     291             :     }
     292           0 : }
     293             : 
     294           0 : void SvxColorDockingWindow::SetSize()
     295             : {
     296             :     // Groesse fuer ValueSet berechnen
     297           0 :     Size aSize = GetOutputSizePixel();
     298           0 :     aSize.Width()  -= 4;
     299           0 :     aSize.Height() -= 4;
     300             : 
     301             :     // Zeilen und Spalten berechnen
     302           0 :     nCols = (sal_uInt16) ( aSize.Width() / aItemSize.Width() );
     303           0 :     nLines = (sal_uInt16) ( (float) aSize.Height() / (float) aItemSize.Height() /*+ 0.35*/ );
     304           0 :     if( nLines == 0 )
     305           0 :         nLines++;
     306             : 
     307             :     // Scrollbar setzen/entfernen
     308           0 :     WinBits nBits = aColorSet->GetStyle();
     309           0 :     if ( static_cast<long>(nLines) * nCols >= nCount )
     310           0 :         nBits &= ~WB_VSCROLL;
     311             :     else
     312           0 :         nBits |= WB_VSCROLL;
     313           0 :     aColorSet->SetStyle( nBits );
     314             : 
     315             :     // ScrollBar ?
     316           0 :     long nScrollWidth = aColorSet->GetScrollWidth();
     317           0 :     if( nScrollWidth > 0 )
     318             :     {
     319             :         // Spalten mit ScrollBar berechnen
     320           0 :         nCols = (sal_uInt16) ( ( aSize.Width() - nScrollWidth ) / aItemSize.Width() );
     321             :     }
     322           0 :     aColorSet->SetColCount( nCols );
     323             : 
     324           0 :     if( IsFloatingMode() )
     325           0 :         aColorSet->SetLineCount( nLines );
     326             :     else
     327             :     {
     328           0 :         aColorSet->SetLineCount( 0 ); // sonst wird LineHeight ignoriert
     329           0 :         aColorSet->SetItemHeight( aItemSize.Height() );
     330             :     }
     331             : 
     332           0 :     aColorSet->SetPosSizePixel( Point( 2, 2 ), aSize );
     333           0 : }
     334             : 
     335           0 : bool SvxColorDockingWindow::Close()
     336             : {
     337           0 :     SfxBoolItem aItem( SID_COLOR_CONTROL, false );
     338           0 :     GetBindings().GetDispatcher()->Execute(
     339           0 :         SID_COLOR_CONTROL, SfxCallMode::ASYNCHRON | SfxCallMode::RECORD, &aItem, 0L );
     340           0 :     SfxDockingWindow::Close();
     341           0 :     return true;
     342             : }
     343             : 
     344           0 : IMPL_LINK_NOARG(SvxColorDockingWindow, SelectHdl)
     345             : {
     346           0 :     SfxDispatcher* pDispatcher = GetBindings().GetDispatcher();
     347           0 :     sal_uInt16 nPos = aColorSet->GetSelectItemId();
     348           0 :     Color  aColor( aColorSet->GetItemColor( nPos ) );
     349           0 :     OUString aStr( aColorSet->GetItemText( nPos ) );
     350             : 
     351           0 :     if (aColorSet->IsLeftButton())
     352             :     {
     353           0 :         if ( nLeftSlot == SID_ATTR_FILL_COLOR )
     354             :         {
     355           0 :             if ( nPos == 1 )        // unsichtbar
     356             :             {
     357           0 :                 XFillStyleItem aXFillStyleItem( drawing::FillStyle_NONE );
     358           0 :                 pDispatcher->Execute( nLeftSlot, SfxCallMode::RECORD, &aXFillStyleItem, 0L );
     359             :             }
     360             :             else
     361             :             {
     362           0 :                 bool bDone = false;
     363             : 
     364             :                 // Wenn wir eine DrawView haben und uns im TextEdit-Modus befinden,
     365             :                 // wird nicht die Flaechen-, sondern die Textfarbe zugewiesen
     366           0 :                 SfxViewShell* pViewSh = SfxViewShell::Current();
     367           0 :                 if ( pViewSh )
     368             :                 {
     369           0 :                     SdrView* pView = pViewSh->GetDrawView();
     370           0 :                     if ( pView && pView->IsTextEdit() )
     371             :                     {
     372           0 :                         SvxColorItem aTextColorItem( aColor, SID_ATTR_CHAR_COLOR );
     373             :                         pDispatcher->Execute(
     374           0 :                             SID_ATTR_CHAR_COLOR, SfxCallMode::RECORD, &aTextColorItem, 0L );
     375           0 :                         bDone = true;
     376             :                     }
     377             :                 }
     378           0 :                 if ( !bDone )
     379             :                 {
     380           0 :                     XFillStyleItem aXFillStyleItem( drawing::FillStyle_SOLID );
     381           0 :                     XFillColorItem aXFillColorItem( aStr, aColor );
     382             :                     pDispatcher->Execute(
     383           0 :                         nLeftSlot, SfxCallMode::RECORD, &aXFillColorItem, &aXFillStyleItem, 0L );
     384             :                 }
     385             :             }
     386             :         }
     387           0 :         else if ( nPos != 1 )       // unsichtbar
     388             :         {
     389           0 :             SvxColorItem aLeftColorItem( aColor, nLeftSlot );
     390           0 :             pDispatcher->Execute( nLeftSlot, SfxCallMode::RECORD, &aLeftColorItem, 0L );
     391             :         }
     392             :     }
     393             :     else
     394             :     {
     395           0 :         if ( nRightSlot == SID_ATTR_LINE_COLOR )
     396             :         {
     397           0 :             if( nPos == 1 )     // unsichtbar
     398             :             {
     399           0 :                 XLineStyleItem aXLineStyleItem( drawing::LineStyle_NONE );
     400           0 :                 pDispatcher->Execute( nRightSlot, SfxCallMode::RECORD, &aXLineStyleItem, 0L );
     401             :             }
     402             :             else
     403             :             {
     404             :                 // Sollte der LineStyle unsichtbar sein, so wird er auf SOLID gesetzt
     405           0 :                 SfxViewShell* pViewSh = SfxViewShell::Current();
     406           0 :                 if ( pViewSh )
     407             :                 {
     408           0 :                     SdrView* pView = pViewSh->GetDrawView();
     409           0 :                     if ( pView )
     410             :                     {
     411           0 :                         SfxItemSet aAttrSet( pView->GetModel()->GetItemPool() );
     412           0 :                         pView->GetAttributes( aAttrSet );
     413           0 :                         if ( aAttrSet.GetItemState( XATTR_LINESTYLE ) != SfxItemState::DONTCARE )
     414             :                         {
     415             :                             drawing::LineStyle eXLS = (drawing::LineStyle)
     416           0 :                                 static_cast<const XLineStyleItem&>(aAttrSet.Get( XATTR_LINESTYLE ) ).GetValue();
     417           0 :                             if ( eXLS == drawing::LineStyle_NONE )
     418             :                             {
     419           0 :                                 XLineStyleItem aXLineStyleItem( drawing::LineStyle_SOLID );
     420           0 :                                 pDispatcher->Execute( nRightSlot, SfxCallMode::RECORD, &aXLineStyleItem, 0L );
     421             :                             }
     422           0 :                         }
     423             :                     }
     424             :                 }
     425             : 
     426           0 :                 XLineColorItem aXLineColorItem( aStr, aColor );
     427           0 :                 pDispatcher->Execute( nRightSlot, SfxCallMode::RECORD, &aXLineColorItem, 0L );
     428             :             }
     429             :         }
     430           0 :         else if ( nPos != 1 )       // unsichtbar
     431             :         {
     432           0 :             SvxColorItem aRightColorItem( aColor, nRightSlot );
     433           0 :             pDispatcher->Execute( nRightSlot, SfxCallMode::RECORD, &aRightColorItem, 0L );
     434             :         }
     435             :     }
     436             : 
     437           0 :     return 0;
     438             : }
     439             : 
     440           0 : void SvxColorDockingWindow::Resizing( Size& rNewSize )
     441             : {
     442           0 :     rNewSize.Width()  -= 4;
     443           0 :     rNewSize.Height() -= 4;
     444             : 
     445             :     // Spalten und Reihen ermitteln
     446           0 :     nCols = (sal_uInt16) ( (float) rNewSize.Width() / (float) aItemSize.Width() + 0.5 );
     447           0 :     nLines = (sal_uInt16) ( (float) rNewSize.Height() / (float) aItemSize.Height() + 0.5 );
     448           0 :     if( nLines == 0 )
     449           0 :         nLines = 1;
     450             : 
     451             :     // Scrollbar setzen/entfernen
     452           0 :     WinBits nBits = aColorSet->GetStyle();
     453           0 :     if ( static_cast<long>(nLines) * nCols >= nCount )
     454           0 :         nBits &= ~WB_VSCROLL;
     455             :     else
     456           0 :         nBits |= WB_VSCROLL;
     457           0 :     aColorSet->SetStyle( nBits );
     458             : 
     459             :     // ScrollBar ?
     460           0 :     long nScrollWidth = aColorSet->GetScrollWidth();
     461           0 :     if( nScrollWidth > 0 )
     462             :     {
     463             :         // Spalten mit ScrollBar berechnen
     464           0 :         nCols = (sal_uInt16) ( ( ( (float) rNewSize.Width() - (float) nScrollWidth ) )
     465           0 :                             / (float) aItemSize.Width() + 0.5 );
     466             :     }
     467           0 :     if( nCols <= 1 )
     468           0 :         nCols = 2;
     469             : 
     470             :     // Max. Reihen anhand der gegebenen Spalten berechnen
     471           0 :     long nMaxLines = nCount / nCols;
     472           0 :     if( nCount %  nCols )
     473           0 :         nMaxLines++;
     474             : 
     475             :     nLines = sal::static_int_cast< sal_uInt16 >(
     476           0 :         std::min< long >( nLines, nMaxLines ) );
     477             : 
     478             :     // Groesse des Windows setzen
     479           0 :     rNewSize.Width()  = nCols * aItemSize.Width() + nScrollWidth + 4;
     480           0 :     rNewSize.Height() = nLines * aItemSize.Height() + 4;
     481           0 : }
     482             : 
     483           0 : void SvxColorDockingWindow::Resize()
     484             : {
     485           0 :     if ( !IsFloatingMode() || !GetFloatingWindow()->IsRollUp() )
     486           0 :         SetSize();
     487           0 :     SfxDockingWindow::Resize();
     488           0 : }
     489             : 
     490             : 
     491             : 
     492           0 : void SvxColorDockingWindow::GetFocus()
     493             : {
     494           0 :     SfxDockingWindow::GetFocus();
     495             :     // Grab the focus to the color value set so that it can be controlled
     496             :     // with the keyboard.
     497           0 :     aColorSet->GrabFocus();
     498           0 : }
     499             : 
     500           0 : bool SvxColorDockingWindow::Notify( NotifyEvent& rNEvt )
     501             : {
     502           0 :     bool nRet = false;
     503           0 :     if( ( rNEvt.GetType() == MouseNotifyEvent::KEYINPUT ) )
     504             :     {
     505           0 :         KeyEvent aKeyEvt = *rNEvt.GetKeyEvent();
     506           0 :         sal_uInt16   nKeyCode = aKeyEvt.GetKeyCode().GetCode();
     507           0 :         switch( nKeyCode )
     508             :         {
     509             :             case KEY_ESCAPE:
     510           0 :                 GrabFocusToDocument();
     511           0 :                 nRet = true;
     512           0 :                 break;
     513             :         }
     514             :     }
     515             : 
     516           0 :     return nRet || SfxDockingWindow::Notify( rNEvt );
     517         390 : }
     518             : 
     519             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11