LCOV - code coverage report
Current view: top level - libreoffice/svx/source/tbxctrls - colrctrl.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 1 250 0.4 %
Date: 2012-12-27 Functions: 2 31 6.5 %
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           9 : SFX_IMPL_DOCKINGWINDOW_WITHID( SvxColorChildWindow, SID_COLOR_CONTROL )
      40             : 
      41             : // ------------------------
      42             : // - SvxColorValueSetData -
      43             : // ------------------------
      44             : 
      45           0 : class SvxColorValueSetData : public TransferableHelper
      46             : {
      47             : private:
      48             : 
      49             :     XFillExchangeData       maData;
      50             : 
      51             : protected:
      52             : 
      53             :     virtual void            AddSupportedFormats();
      54             :     virtual sal_Bool        GetData( const ::com::sun::star::datatransfer::DataFlavor& rFlavor );
      55             :     virtual sal_Bool        WriteObject( SotStorageStreamRef& rxOStm, void* pUserObject, sal_uInt32 nUserObjectId, const ::com::sun::star::datatransfer::DataFlavor& rFlavor );
      56             : 
      57             : public:
      58             : 
      59           0 :                             SvxColorValueSetData( const XFillAttrSetItem& rSetItem ) :
      60           0 :                                 maData( rSetItem ) {}
      61             : };
      62             : 
      63             : // -----------------------------------------------------------------------------
      64             : 
      65           0 : void SvxColorValueSetData::AddSupportedFormats()
      66             : {
      67           0 :     AddFormat( SOT_FORMATSTR_ID_XFA );
      68           0 : }
      69             : 
      70             : // -----------------------------------------------------------------------------
      71             : 
      72           0 : sal_Bool SvxColorValueSetData::GetData( const ::com::sun::star::datatransfer::DataFlavor& rFlavor )
      73             : {
      74           0 :     sal_Bool bRet = sal_False;
      75             : 
      76           0 :     if( SotExchange::GetFormat( rFlavor ) == SOT_FORMATSTR_ID_XFA )
      77             :     {
      78           0 :         SetObject( &maData, 0, rFlavor );
      79           0 :         bRet = sal_True;
      80             :     }
      81             : 
      82           0 :     return bRet;
      83             : }
      84             : 
      85             : // -----------------------------------------------------------------------------
      86             : 
      87           0 : sal_Bool SvxColorValueSetData::WriteObject( SotStorageStreamRef& rxOStm, void*, sal_uInt32 , const ::com::sun::star::datatransfer::DataFlavor&  )
      88             : {
      89           0 :     *rxOStm << maData;
      90           0 :     return( rxOStm->GetError() == ERRCODE_NONE );
      91             : }
      92             : 
      93             : /*************************************************************************
      94             : |*
      95             : |* SvxColorValueSet: Ctor
      96             : |*
      97             : \************************************************************************/
      98             : 
      99           0 : SvxColorValueSet::SvxColorValueSet( Window* _pParent, const ResId& rResId ) :
     100             :     ValueSet( _pParent, rResId ),
     101             :     DragSourceHelper( this ),
     102           0 :     bLeft (sal_True)
     103             : {
     104           0 :     SetAccessibleName(String( SVX_RES( STR_COLORTABLE )  ));
     105           0 : }
     106             : 
     107             : /*************************************************************************
     108             : |*
     109             : |* SvxColorValueSet: MouseButtonDown
     110             : |*
     111             : \************************************************************************/
     112             : 
     113           0 : void SvxColorValueSet::MouseButtonDown( const MouseEvent& rMEvt )
     114             : {
     115             :     // Fuer Mac noch anders handlen !
     116           0 :     if( rMEvt.IsLeft() )
     117             :     {
     118           0 :         bLeft = sal_True;
     119           0 :         ValueSet::MouseButtonDown( rMEvt );
     120             :     }
     121             :     else
     122             :     {
     123           0 :         bLeft = sal_False;
     124           0 :         MouseEvent aMEvt( rMEvt.GetPosPixel(),
     125           0 :                           rMEvt.GetClicks(),
     126           0 :                           rMEvt.GetMode(),
     127             :                           MOUSE_LEFT,
     128           0 :                           rMEvt.GetModifier() );
     129           0 :         ValueSet::MouseButtonDown( aMEvt );
     130             :     }
     131             : 
     132           0 :     aDragPosPixel = GetPointerPosPixel();
     133           0 : }
     134             : 
     135             : /*************************************************************************
     136             : |*
     137             : |* SvxColorValueSet: MouseButtonUp
     138             : |*
     139             : \************************************************************************/
     140             : 
     141           0 : void SvxColorValueSet::MouseButtonUp( const MouseEvent& rMEvt )
     142             : {
     143             :     // Fuer Mac noch anders handlen !
     144           0 :     if( rMEvt.IsLeft() )
     145             :     {
     146           0 :         bLeft = sal_True;
     147           0 :         ValueSet::MouseButtonUp( rMEvt );
     148             :     }
     149             :     else
     150             :     {
     151           0 :         bLeft = sal_False;
     152           0 :         MouseEvent aMEvt( rMEvt.GetPosPixel(),
     153           0 :                           rMEvt.GetClicks(),
     154           0 :                           rMEvt.GetMode(),
     155             :                           MOUSE_LEFT,
     156           0 :                           rMEvt.GetModifier() );
     157           0 :         ValueSet::MouseButtonUp( aMEvt );
     158             :     }
     159           0 :     SetNoSelection();
     160           0 : }
     161             : 
     162             : /*************************************************************************
     163             : |*
     164             : |* Command-Event
     165             : |*
     166             : \************************************************************************/
     167             : 
     168           0 : void SvxColorValueSet::Command(const CommandEvent& rCEvt)
     169             : {
     170             :     // Basisklasse
     171           0 :     ValueSet::Command(rCEvt);
     172           0 : }
     173             : 
     174             : /*************************************************************************
     175             : |*
     176             : |* StartDrag
     177             : |*
     178             : \************************************************************************/
     179             : 
     180           0 : void SvxColorValueSet::StartDrag( sal_Int8 , const Point&  )
     181             : {
     182           0 :     Application::PostUserEvent(STATIC_LINK(this, SvxColorValueSet, ExecDragHdl));
     183           0 : }
     184             : 
     185             : /*************************************************************************
     186             : |*
     187             : |* Drag&Drop asynchron ausfuehren
     188             : |*
     189             : \************************************************************************/
     190             : 
     191           0 : void SvxColorValueSet::DoDrag()
     192             : {
     193           0 :     SfxObjectShell* pDocSh = SfxObjectShell::Current();
     194           0 :     sal_uInt16          nItemId = GetItemId( aDragPosPixel );
     195             : 
     196           0 :     if( pDocSh && nItemId )
     197             :     {
     198           0 :         XFillAttrSetItem    aXFillSetItem( &pDocSh->GetPool() );
     199           0 :         SfxItemSet&         rSet = aXFillSetItem.GetItemSet();
     200             : 
     201           0 :         rSet.Put( XFillColorItem( GetItemText( nItemId ), GetItemColor( nItemId ) ) );
     202           0 :         rSet.Put(XFillStyleItem( ( 1 == nItemId ) ? XFILL_NONE : XFILL_SOLID ) );
     203             : 
     204           0 :         EndSelection();
     205           0 :         ( new SvxColorValueSetData( aXFillSetItem ) )->StartDrag( this, DND_ACTION_COPY );
     206           0 :         ReleaseMouse();
     207             :     }
     208           0 : }
     209             : 
     210           0 : IMPL_STATIC_LINK(SvxColorValueSet, ExecDragHdl, void*, EMPTYARG)
     211             : {
     212             :     // Als Link, damit asynchron ohne ImpMouseMoveMsg auf dem Stack auch die
     213             :     // Farbleiste geloescht werden darf
     214           0 :     pThis->DoDrag();
     215           0 :     return(0);
     216             : }
     217             : 
     218             : /*************************************************************************
     219             : |*
     220             : |* Ableitung vom SfxChildWindow als "Behaelter" fuer Animator
     221             : |*
     222             : \************************************************************************/
     223             : 
     224           0 : SvxColorChildWindow::SvxColorChildWindow( Window* _pParent,
     225             :                                           sal_uInt16 nId,
     226             :                                           SfxBindings* pBindings,
     227             :                                           SfxChildWinInfo* pInfo ) :
     228           0 :     SfxChildWindow( _pParent, nId )
     229             : {
     230             :     SvxColorDockingWindow* pWin = new SvxColorDockingWindow( pBindings, this,
     231           0 :                                         _pParent, SVX_RES( RID_SVXCTRL_COLOR ) );
     232           0 :     pWindow = pWin;
     233             : 
     234           0 :     eChildAlignment = SFX_ALIGN_BOTTOM;
     235             : 
     236           0 :     pWin->Initialize( pInfo );
     237           0 : }
     238             : 
     239             : 
     240             : 
     241             : /*************************************************************************
     242             : |*
     243             : |* Ctor: SvxColorDockingWindow
     244             : |*
     245             : \************************************************************************/
     246             : 
     247           0 : SvxColorDockingWindow::SvxColorDockingWindow
     248             : (
     249             :     SfxBindings* _pBindings,
     250             :     SfxChildWindow* pCW,
     251             :     Window* _pParent,
     252             :     const ResId& rResId
     253             : ) :
     254             : 
     255             :     SfxDockingWindow( _pBindings, pCW, _pParent, rResId ),
     256             :     pColorList      (),
     257           0 :     aColorSet       ( this, ResId( 1, *rResId.GetResMgr() ) ),
     258             :     nLeftSlot       ( SID_ATTR_FILL_COLOR ),
     259             :     nRightSlot      ( SID_ATTR_LINE_COLOR ),
     260             :     nCols           ( 20 ),
     261             :     nLines          ( 1 ),
     262           0 :     aColorSize      ( 14, 14 )
     263             : 
     264             : {
     265           0 :     FreeResource();
     266             : 
     267           0 :     aColorSet.SetStyle( aColorSet.GetStyle() | WB_ITEMBORDER );
     268           0 :     aColorSet.SetSelectHdl( LINK( this, SvxColorDockingWindow, SelectHdl ) );
     269             : 
     270             :     // Get the model from the view shell.  Using SfxObjectShell::Current()
     271             :     // is unreliable when called at the wrong times.
     272           0 :     SfxObjectShell* pDocSh = NULL;
     273           0 :     if (_pBindings != NULL)
     274             :     {
     275           0 :         SfxDispatcher* pDispatcher = _pBindings->GetDispatcher();
     276           0 :         if (pDispatcher != NULL)
     277             :         {
     278           0 :             SfxViewFrame* pFrame = pDispatcher->GetFrame();
     279           0 :             if (pFrame != NULL)
     280             :             {
     281           0 :                 SfxViewShell* pViewShell = pFrame->GetViewShell();
     282           0 :                 if (pViewShell != NULL)
     283           0 :                     pDocSh = pViewShell->GetObjectShell();
     284             :             }
     285             :         }
     286             :     }
     287             : 
     288           0 :     if ( pDocSh )
     289             :     {
     290           0 :         const SfxPoolItem*  pItem = pDocSh->GetItem( SID_COLOR_TABLE );
     291           0 :         if( pItem )
     292             :         {
     293           0 :             pColorList = ( (SvxColorListItem*) pItem )->GetColorList();
     294           0 :             FillValueSet();
     295             :         }
     296             :     }
     297           0 :     aItemSize = aColorSet.CalcItemSizePixel( aColorSize );
     298           0 :     aItemSize.Width() = aItemSize.Width() + aColorSize.Width();
     299           0 :     aItemSize.Width() /= 2;
     300           0 :     aItemSize.Height() = aItemSize.Height() + aColorSize.Height();
     301           0 :     aItemSize.Height() /= 2;
     302             : 
     303           0 :     SetSize();
     304           0 :     aColorSet.Show();
     305           0 :     StartListening( *_pBindings, sal_True );
     306           0 : }
     307             : 
     308             : 
     309             : /*************************************************************************
     310             : |*
     311             : |* Dtor: SvxColorDockingWindow
     312             : |*
     313             : \************************************************************************/
     314             : 
     315           0 : SvxColorDockingWindow::~SvxColorDockingWindow()
     316             : {
     317           0 :     EndListening( GetBindings() );
     318           0 : }
     319             : 
     320             : /*************************************************************************
     321             : |*
     322             : |* Notify
     323             : |*
     324             : \************************************************************************/
     325             : 
     326           0 : void SvxColorDockingWindow::Notify( SfxBroadcaster& , const SfxHint& rHint )
     327             : {
     328           0 :     const SfxPoolItemHint *pPoolItemHint = PTR_CAST(SfxPoolItemHint, &rHint);
     329           0 :     if ( pPoolItemHint
     330           0 :          && ( pPoolItemHint->GetObject()->ISA( SvxColorListItem ) ) )
     331             :     {
     332             :         // Die Liste der Farben hat sich geaendert
     333           0 :         pColorList = ( (SvxColorListItem*) pPoolItemHint->GetObject() )->GetColorList();
     334           0 :         FillValueSet();
     335             :     }
     336           0 : }
     337             : 
     338             : /*************************************************************************
     339             : |*
     340             : |* FillValueSet
     341             : |*
     342             : \************************************************************************/
     343             : 
     344           0 : void SvxColorDockingWindow::FillValueSet()
     345             : {
     346           0 :     if( pColorList.is() )
     347             :     {
     348           0 :         aColorSet.Clear();
     349             : 
     350             :         // Erster Eintrag: unsichtbar
     351           0 :         long nPtX = aColorSize.Width() - 1;
     352           0 :         long nPtY = aColorSize.Height() - 1;
     353           0 :         VirtualDevice aVD;
     354           0 :         aVD.SetOutputSizePixel( aColorSize );
     355           0 :         aVD.SetLineColor( Color( COL_BLACK ) );
     356           0 :         aVD.SetBackground( Wallpaper( Color( COL_WHITE ) ) );
     357           0 :         aVD.DrawLine( Point(), Point( nPtX, nPtY ) );
     358           0 :         aVD.DrawLine( Point( 0, nPtY ), Point( nPtX, 0 ) );
     359             : 
     360           0 :         Bitmap aBmp( aVD.GetBitmap( Point(), aColorSize ) );
     361             : 
     362           0 :         aColorSet.InsertItem( (sal_uInt16)1, Image(aBmp), SVX_RESSTR( RID_SVXSTR_INVISIBLE ) );
     363             : 
     364             :         XColorEntry* pEntry;
     365           0 :         nCount = pColorList->Count();
     366             : 
     367           0 :         for( long i = 0; i < nCount; i++ )
     368             :         {
     369           0 :             pEntry = pColorList->GetColor( i );
     370             :             aColorSet.InsertItem( (sal_uInt16)i+2,
     371           0 :                             pEntry->GetColor(), pEntry->GetName() );
     372           0 :         }
     373             :     }
     374           0 : }
     375             : 
     376             : /*************************************************************************
     377             : |*
     378             : |* SetSize
     379             : |*
     380             : \************************************************************************/
     381             : 
     382           0 : void SvxColorDockingWindow::SetSize()
     383             : {
     384             :     // Groesse fuer ValueSet berechnen
     385           0 :     Size aSize = GetOutputSizePixel();
     386           0 :     aSize.Width()  -= 4;
     387           0 :     aSize.Height() -= 4;
     388             : 
     389             :     // Zeilen und Spalten berechnen
     390           0 :     nCols = (sal_uInt16) ( aSize.Width() / aItemSize.Width() );
     391           0 :     nLines = (sal_uInt16) ( (float) aSize.Height() / (float) aItemSize.Height() /*+ 0.35*/ );
     392           0 :     if( nLines == 0 )
     393           0 :         nLines++;
     394             : 
     395             :     // Scrollbar setzen/entfernen
     396           0 :     WinBits nBits = aColorSet.GetStyle();
     397           0 :     if ( nLines * nCols >= nCount )
     398           0 :         nBits &= ~WB_VSCROLL;
     399             :     else
     400           0 :         nBits |= WB_VSCROLL;
     401           0 :     aColorSet.SetStyle( nBits );
     402             : 
     403             :     // ScrollBar ?
     404           0 :     long nScrollWidth = aColorSet.GetScrollWidth();
     405           0 :     if( nScrollWidth > 0 )
     406             :     {
     407             :         // Spalten mit ScrollBar berechnen
     408           0 :         nCols = (sal_uInt16) ( ( aSize.Width() - nScrollWidth ) / aItemSize.Width() );
     409             :     }
     410           0 :     aColorSet.SetColCount( nCols );
     411             : 
     412           0 :     if( IsFloatingMode() )
     413           0 :         aColorSet.SetLineCount( nLines );
     414             :     else
     415             :     {
     416           0 :         aColorSet.SetLineCount( 0 ); // sonst wird LineHeight ignoriert
     417           0 :         aColorSet.SetItemHeight( aItemSize.Height() );
     418             :     }
     419             : 
     420           0 :     aColorSet.SetPosSizePixel( Point( 2, 2 ), aSize );
     421           0 : }
     422             : 
     423             : /*************************************************************************
     424             : |*
     425             : |* SvxColorDockingWindow: Close
     426             : |*
     427             : \************************************************************************/
     428             : 
     429           0 : sal_Bool SvxColorDockingWindow::Close()
     430             : {
     431           0 :     SfxBoolItem aItem( SID_COLOR_CONTROL, sal_False );
     432           0 :     GetBindings().GetDispatcher()->Execute(
     433           0 :         SID_COLOR_CONTROL, SFX_CALLMODE_ASYNCHRON | SFX_CALLMODE_RECORD, &aItem, 0L );
     434           0 :     SfxDockingWindow::Close();
     435           0 :     return( sal_True );
     436             : }
     437             : 
     438             : /*************************************************************************
     439             : |*
     440             : |* SelectHdl
     441             : |*
     442             : \************************************************************************/
     443             : 
     444           0 : IMPL_LINK_NOARG(SvxColorDockingWindow, SelectHdl)
     445             : {
     446           0 :     SfxDispatcher* pDispatcher = GetBindings().GetDispatcher();
     447           0 :     sal_uInt16 nPos = aColorSet.GetSelectItemId();
     448           0 :     Color  aColor( aColorSet.GetItemColor( nPos ) );
     449           0 :     String aStr( aColorSet.GetItemText( nPos ) );
     450             : 
     451           0 :     if (aColorSet.IsLeftButton())
     452             :     {
     453           0 :         if ( nLeftSlot == SID_ATTR_FILL_COLOR )
     454             :         {
     455           0 :             if ( nPos == 1 )        // unsichtbar
     456             :             {
     457           0 :                 XFillStyleItem aXFillStyleItem( XFILL_NONE );
     458           0 :                 pDispatcher->Execute( nLeftSlot, SFX_CALLMODE_RECORD, &aXFillStyleItem, 0L );
     459             :             }
     460             :             else
     461             :             {
     462           0 :                 sal_Bool bDone = sal_False;
     463             : 
     464             :                 // Wenn wir eine DrawView haben und uns im TextEdit-Modus befinden,
     465             :                 // wird nicht die Flaechen-, sondern die Textfarbe zugewiesen
     466           0 :                 SfxViewShell* pViewSh = SfxViewShell::Current();
     467           0 :                 if ( pViewSh )
     468             :                 {
     469           0 :                     SdrView* pView = pViewSh->GetDrawView();
     470           0 :                     if ( pView && pView->IsTextEdit() )
     471             :                     {
     472           0 :                         SvxColorItem aTextColorItem( aColor, SID_ATTR_CHAR_COLOR );
     473             :                         pDispatcher->Execute(
     474           0 :                             SID_ATTR_CHAR_COLOR, SFX_CALLMODE_RECORD, &aTextColorItem, 0L );
     475           0 :                         bDone = sal_True;
     476             :                     }
     477             :                 }
     478           0 :                 if ( !bDone )
     479             :                 {
     480           0 :                     XFillStyleItem aXFillStyleItem( XFILL_SOLID );
     481           0 :                     XFillColorItem aXFillColorItem( aStr, aColor );
     482             :                     pDispatcher->Execute(
     483           0 :                         nLeftSlot, SFX_CALLMODE_RECORD, &aXFillColorItem, &aXFillStyleItem, 0L );
     484             :                 }
     485             :             }
     486             :         }
     487           0 :         else if ( nPos != 1 )       // unsichtbar
     488             :         {
     489           0 :             SvxColorItem aLeftColorItem( aColor, nLeftSlot );
     490           0 :             pDispatcher->Execute( nLeftSlot, SFX_CALLMODE_RECORD, &aLeftColorItem, 0L );
     491             :         }
     492             :     }
     493             :     else
     494             :     {
     495           0 :         if ( nRightSlot == SID_ATTR_LINE_COLOR )
     496             :         {
     497           0 :             if( nPos == 1 )     // unsichtbar
     498             :             {
     499           0 :                 XLineStyleItem aXLineStyleItem( XLINE_NONE );
     500           0 :                 pDispatcher->Execute( nRightSlot, SFX_CALLMODE_RECORD, &aXLineStyleItem, 0L );
     501             :             }
     502             :             else
     503             :             {
     504             :                 // Sollte der LineStyle unsichtbar sein, so wird er auf SOLID gesetzt
     505           0 :                 SfxViewShell* pViewSh = SfxViewShell::Current();
     506           0 :                 if ( pViewSh )
     507             :                 {
     508           0 :                     SdrView* pView = pViewSh->GetDrawView();
     509           0 :                     if ( pView )
     510             :                     {
     511           0 :                         SfxItemSet aAttrSet( pView->GetModel()->GetItemPool() );
     512           0 :                         pView->GetAttributes( aAttrSet );
     513           0 :                         if ( aAttrSet.GetItemState( XATTR_LINESTYLE ) != SFX_ITEM_DONTCARE )
     514             :                         {
     515             :                             XLineStyle eXLS = (XLineStyle)
     516           0 :                                 ( (const XLineStyleItem&)aAttrSet.Get( XATTR_LINESTYLE ) ).GetValue();
     517           0 :                             if ( eXLS == XLINE_NONE )
     518             :                             {
     519           0 :                                 XLineStyleItem aXLineStyleItem( XLINE_SOLID );
     520           0 :                                 pDispatcher->Execute( nRightSlot, SFX_CALLMODE_RECORD, &aXLineStyleItem, 0L );
     521             :                             }
     522           0 :                         }
     523             :                     }
     524             :                 }
     525             : 
     526           0 :                 XLineColorItem aXLineColorItem( aStr, aColor );
     527           0 :                 pDispatcher->Execute( nRightSlot, SFX_CALLMODE_RECORD, &aXLineColorItem, 0L );
     528             :             }
     529             :         }
     530           0 :         else if ( nPos != 1 )       // unsichtbar
     531             :         {
     532           0 :             SvxColorItem aRightColorItem( aColor, nRightSlot );
     533           0 :             pDispatcher->Execute( nRightSlot, SFX_CALLMODE_RECORD, &aRightColorItem, 0L );
     534             :         }
     535             :     }
     536             : 
     537           0 :     return 0;
     538             : }
     539             : 
     540             : /*************************************************************************
     541             : |*
     542             : |* Resizing
     543             : |*
     544             : \************************************************************************/
     545             : 
     546             : 
     547           0 : void SvxColorDockingWindow::Resizing( Size& rNewSize )
     548             : {
     549           0 :     rNewSize.Width()  -= 4;
     550           0 :     rNewSize.Height() -= 4;
     551             : 
     552             :     // Spalten und Reihen ermitteln
     553           0 :     nCols = (sal_uInt16) ( (float) rNewSize.Width() / (float) aItemSize.Width() + 0.5 );
     554           0 :     nLines = (sal_uInt16) ( (float) rNewSize.Height() / (float) aItemSize.Height() + 0.5 );
     555           0 :     if( nLines == 0 )
     556           0 :         nLines = 1;
     557             : 
     558             :     // Scrollbar setzen/entfernen
     559           0 :     WinBits nBits = aColorSet.GetStyle();
     560           0 :     if ( nLines * nCols >= nCount )
     561           0 :         nBits &= ~WB_VSCROLL;
     562             :     else
     563           0 :         nBits |= WB_VSCROLL;
     564           0 :     aColorSet.SetStyle( nBits );
     565             : 
     566             :     // ScrollBar ?
     567           0 :     long nScrollWidth = aColorSet.GetScrollWidth();
     568           0 :     if( nScrollWidth > 0 )
     569             :     {
     570             :         // Spalten mit ScrollBar berechnen
     571           0 :         nCols = (sal_uInt16) ( ( ( (float) rNewSize.Width() - (float) nScrollWidth ) )
     572           0 :                             / (float) aItemSize.Width() + 0.5 );
     573             :     }
     574           0 :     if( nCols <= 1 )
     575           0 :         nCols = 2;
     576             : 
     577             :     // Max. Reihen anhand der gegebenen Spalten berechnen
     578           0 :     long nMaxLines = nCount / nCols;
     579           0 :     if( nCount %  nCols )
     580           0 :         nMaxLines++;
     581             : 
     582             :     nLines = sal::static_int_cast< sal_uInt16 >(
     583           0 :         std::min< long >( nLines, nMaxLines ) );
     584             : 
     585             :     // Groesse des Windows setzen
     586           0 :     rNewSize.Width()  = nCols * aItemSize.Width() + nScrollWidth + 4;
     587           0 :     rNewSize.Height() = nLines * aItemSize.Height() + 4;
     588           0 : }
     589             : 
     590             : /*************************************************************************
     591             : |*
     592             : |* Resize
     593             : |*
     594             : \************************************************************************/
     595             : 
     596           0 : void SvxColorDockingWindow::Resize()
     597             : {
     598           0 :     if ( !IsFloatingMode() || !GetFloatingWindow()->IsRollUp() )
     599           0 :         SetSize();
     600           0 :     SfxDockingWindow::Resize();
     601           0 : }
     602             : 
     603             : 
     604             : 
     605           0 : void SvxColorDockingWindow::GetFocus (void)
     606             : {
     607           0 :     SfxDockingWindow::GetFocus();
     608             :     // Grab the focus to the color value set so that it can be controlled
     609             :     // with the keyboard.
     610           0 :     aColorSet.GrabFocus();
     611           0 : }
     612             : 
     613           0 : long SvxColorDockingWindow::Notify( NotifyEvent& rNEvt )
     614             : {
     615           0 :     long nRet = 0;
     616           0 :     if( ( rNEvt.GetType() == EVENT_KEYINPUT ) )
     617             :     {
     618           0 :         KeyEvent aKeyEvt = *rNEvt.GetKeyEvent();
     619           0 :         sal_uInt16   nKeyCode = aKeyEvt.GetKeyCode().GetCode();
     620           0 :         switch( nKeyCode )
     621             :         {
     622             :             case KEY_ESCAPE:
     623           0 :                 GrabFocusToDocument();
     624           0 :                 nRet = 1;
     625           0 :                 break;
     626             :         }
     627             :     }
     628             : 
     629           0 :     return nRet ? nRet : SfxDockingWindow::Notify( rNEvt );
     630             : }
     631             : 
     632             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10