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

Generated by: LCOV version 1.10