LCOV - code coverage report
Current view: top level - sfx2/source/sidebar - TabBar.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 110 167 65.9 %
Date: 2014-11-03 Functions: 16 24 66.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 "TabBar.hxx"
      21             : #include "TabItem.hxx"
      22             : #include <sfx2/sidebar/ControlFactory.hxx>
      23             : #include "DeckDescriptor.hxx"
      24             : #include "Paint.hxx"
      25             : #include <sfx2/sidebar/Theme.hxx>
      26             : #include <sfx2/sidebar/Tools.hxx>
      27             : #include "FocusManager.hxx"
      28             : 
      29             : #include <vcl/gradient.hxx>
      30             : #include <vcl/image.hxx>
      31             : #include <vcl/wrkwin.hxx>
      32             : #include <comphelper/processfactory.hxx>
      33             : #include <tools/svborder.hxx>
      34             : 
      35             : #include <com/sun/star/graphic/XGraphicProvider.hpp>
      36             : 
      37             : 
      38             : using namespace css;
      39             : using namespace css::uno;
      40             : 
      41             : 
      42             : 
      43             : 
      44             : namespace sfx2 { namespace sidebar {
      45             : 
      46        4700 : TabBar::TabBar (
      47             :     vcl::Window* pParentWindow,
      48             :     const Reference<frame::XFrame>& rxFrame,
      49             :     const ::boost::function<void(const ::rtl::OUString&)>& rDeckActivationFunctor,
      50             :     const PopupMenuProvider& rPopupMenuProvider)
      51             :     : Window(pParentWindow, WB_DIALOGCONTROL),
      52             :       mxFrame(rxFrame),
      53             :       mpMenuButton(ControlFactory::CreateMenuButton(this)),
      54             :       maItems(),
      55             :       maDeckActivationFunctor(rDeckActivationFunctor),
      56        4700 :       maPopupMenuProvider(rPopupMenuProvider)
      57             : {
      58        4700 :     SetBackground(Theme::GetPaint(Theme::Paint_TabBarBackground).GetWallpaper());
      59             : 
      60        4700 :     mpMenuButton->SetModeImage(Theme::GetImage(Theme::Image_TabBarMenu));
      61        4700 :     mpMenuButton->SetClickHdl(LINK(this, TabBar, OnToolboxClicked));
      62        4700 :     Layout();
      63             : 
      64             : #ifdef DEBUG
      65             :     SetText(OUString("TabBar"));
      66             : #endif
      67        4700 : }
      68             : 
      69             : 
      70             : 
      71             : 
      72        9400 : TabBar::~TabBar (void)
      73             : {
      74        9400 : }
      75             : 
      76             : 
      77             : 
      78             : 
      79       10298 : void TabBar::Paint (const Rectangle& rUpdateArea)
      80             : {
      81       10298 :     Window::Paint(rUpdateArea);
      82             : 
      83       10298 :     const sal_Int32 nHorizontalPadding (Theme::GetInteger(Theme::Int_TabMenuSeparatorPadding));
      84       10298 :     SetLineColor(Theme::GetColor(Theme::Color_TabMenuSeparator));
      85             :     DrawLine(
      86             :         Point(nHorizontalPadding, mnMenuSeparatorY),
      87       10298 :         Point(GetSizePixel().Width()-nHorizontalPadding, mnMenuSeparatorY));
      88       10298 : }
      89             : 
      90             : 
      91             : 
      92             : 
      93       59372 : sal_Int32 TabBar::GetDefaultWidth (void)
      94             : {
      95       59372 :     return Theme::GetInteger(Theme::Int_TabItemWidth)
      96       59372 :         + Theme::GetInteger(Theme::Int_TabBarLeftPadding)
      97       59372 :         + Theme::GetInteger(Theme::Int_TabBarRightPadding);
      98             : }
      99             : 
     100             : 
     101             : 
     102             : 
     103         786 : void TabBar::SetDecks (
     104             :     const ResourceManager::DeckContextDescriptorContainer& rDecks)
     105             : {
     106             :     // Remove the current buttons.
     107             :     {
     108         858 :         for(ItemContainer::iterator
     109         786 :                 iItem(maItems.begin()), iEnd(maItems.end());
     110             :             iItem!=iEnd;
     111             :             ++iItem)
     112             :         {
     113          72 :             iItem->mpButton.reset();
     114             :         }
     115         786 :         maItems.clear();
     116             :     }
     117             : 
     118         786 :     maItems.resize(rDecks.size());
     119         786 :     sal_Int32 nIndex (0);
     120        4002 :     for (ResourceManager::DeckContextDescriptorContainer::const_iterator
     121         786 :              iDeck(rDecks.begin()),
     122         786 :              iEnd(rDecks.end());
     123             :          iDeck!=iEnd;
     124             :          ++iDeck)
     125             :     {
     126        3216 :         const DeckDescriptor* pDescriptor = ResourceManager::Instance().GetDeckDescriptor(iDeck->msId);
     127        3216 :         if (pDescriptor == NULL)
     128             :         {
     129             :             OSL_ASSERT(pDescriptor!=NULL);
     130           0 :             continue;
     131             :         }
     132             : 
     133        3216 :         Item& rItem (maItems[nIndex++]);
     134        3216 :         rItem.msDeckId = pDescriptor->msId;
     135        3216 :         rItem.mpButton.reset(CreateTabItem(*pDescriptor));
     136        3216 :         rItem.mpButton->SetClickHdl(LINK(&rItem, TabBar::Item, HandleClick));
     137        3216 :         rItem.maDeckActivationFunctor = maDeckActivationFunctor;
     138        3216 :         rItem.mbIsHiddenByDefault = false;
     139        3216 :         rItem.mbIsHidden = ! pDescriptor->mbIsEnabled;
     140             : 
     141        3216 :         rItem.mpButton->Enable(iDeck->mbIsEnabled);
     142             :     }
     143             : 
     144         786 :     UpdateButtonIcons();
     145         786 :     Layout();
     146         786 : }
     147             : 
     148             : 
     149             : 
     150             : 
     151         790 : void TabBar::UpdateButtonIcons (void)
     152             : {
     153         790 :     Image aImage = Theme::GetImage(Theme::Image_TabBarMenu);
     154         790 :     if ( mpMenuButton->GetDPIScaleFactor() > 1 )
     155             :     {
     156           0 :         BitmapEx b = aImage.GetBitmapEx();
     157           0 :         b.Scale(mpMenuButton->GetDPIScaleFactor(), mpMenuButton->GetDPIScaleFactor(), BMP_SCALE_FAST);
     158           0 :         aImage = Image(b);
     159             :     }
     160         790 :     mpMenuButton->SetModeImage(aImage);
     161             : 
     162        4006 :     for(ItemContainer::const_iterator
     163         790 :             iItem(maItems.begin()), iEnd(maItems.end());
     164             :         iItem!=iEnd;
     165             :         ++iItem)
     166             :     {
     167        3216 :         const DeckDescriptor* pDeckDescriptor = ResourceManager::Instance().GetDeckDescriptor(iItem->msDeckId);
     168        3216 :         if (pDeckDescriptor != NULL)
     169             :         {
     170        3216 :             aImage = GetItemImage(*pDeckDescriptor);
     171        3216 :             if ( mpMenuButton->GetDPIScaleFactor() > 1 )
     172             :             {
     173           0 :                 BitmapEx b = aImage.GetBitmapEx();
     174           0 :                 b.Scale(mpMenuButton->GetDPIScaleFactor(), mpMenuButton->GetDPIScaleFactor(), BMP_SCALE_FAST);
     175           0 :                 aImage = Image(b);
     176             :             }
     177             : 
     178        3216 :             iItem->mpButton->SetModeImage(aImage);
     179             :         }
     180             :     }
     181             : 
     182         790 :     Invalidate();
     183         790 : }
     184             : 
     185             : 
     186             : 
     187             : 
     188        5486 : void TabBar::Layout (void)
     189             : {
     190             :     const SvBorder aPadding (
     191        5486 :         Theme::GetInteger(Theme::Int_TabBarLeftPadding),
     192        5486 :         Theme::GetInteger(Theme::Int_TabBarTopPadding),
     193        5486 :         Theme::GetInteger(Theme::Int_TabBarRightPadding),
     194       21944 :         Theme::GetInteger(Theme::Int_TabBarBottomPadding));
     195        5486 :     sal_Int32 nX (aPadding.Top());
     196        5486 :     sal_Int32 nY (aPadding.Left());
     197             :     const Size aTabItemSize (
     198        5486 :         Theme::GetInteger(Theme::Int_TabItemWidth) * GetDPIScaleFactor(),
     199       10972 :         Theme::GetInteger(Theme::Int_TabItemHeight) * GetDPIScaleFactor());
     200             : 
     201             :     // Place the menu button and the separator.
     202        5486 :     if (mpMenuButton != 0)
     203             :     {
     204        5486 :         mpMenuButton->SetPosSizePixel(
     205             :             Point(nX,nY),
     206        5486 :             aTabItemSize);
     207        5486 :         mpMenuButton->Show();
     208        5486 :         nY += mpMenuButton->GetSizePixel().Height() + 1 + Theme::GetInteger(Theme::Int_TabMenuPadding);
     209        5486 :         mnMenuSeparatorY = nY - Theme::GetInteger(Theme::Int_TabMenuPadding)/2 - 1;
     210             :     }
     211             : 
     212             :     // Place the deck selection buttons.
     213        8702 :     for(ItemContainer::const_iterator
     214        5486 :             iItem(maItems.begin()), iEnd(maItems.end());
     215             :         iItem!=iEnd;
     216             :         ++iItem)
     217             :     {
     218        3216 :         Button& rButton (*iItem->mpButton);
     219        3216 :         rButton.Show( ! iItem->mbIsHidden);
     220             : 
     221        3216 :         if (iItem->mbIsHidden)
     222           0 :             continue;
     223             : 
     224             :         // Place and size the icon.
     225             :         rButton.SetPosSizePixel(
     226             :             Point(nX,nY),
     227        3216 :             aTabItemSize);
     228        3216 :         rButton.Show();
     229             : 
     230        3216 :         nY += rButton.GetSizePixel().Height() + 1 + aPadding.Bottom();
     231             :     }
     232        5486 :     Invalidate();
     233        5486 : }
     234             : 
     235             : 
     236             : 
     237             : 
     238       10972 : void TabBar::HighlightDeck (const ::rtl::OUString& rsDeckId)
     239             : {
     240       17404 :     for (ItemContainer::iterator iItem(maItems.begin()),iEnd(maItems.end());
     241             :          iItem!=iEnd;
     242             :          ++iItem)
     243             :     {
     244        6432 :         if (iItem->msDeckId.equals(rsDeckId))
     245        1572 :             iItem->mpButton->Check(true);
     246             :         else
     247        4860 :             iItem->mpButton->Check(false);
     248             :     }
     249       10972 : }
     250             : 
     251             : 
     252             : 
     253             : 
     254           0 : void TabBar::RemoveDeckHighlight ()
     255             : {
     256           0 :     for (ItemContainer::iterator iItem(maItems.begin()),iEnd(maItems.end());
     257             :          iItem!=iEnd;
     258             :          ++iItem)
     259             :     {
     260           0 :         iItem->mpButton->Check(false);
     261             :     }
     262           0 : }
     263             : 
     264             : 
     265             : 
     266             : 
     267           4 : void TabBar::DataChanged (const DataChangedEvent& rDataChangedEvent)
     268             : {
     269           4 :     SetBackground(Theme::GetPaint(Theme::Paint_TabBarBackground).GetWallpaper());
     270           4 :     UpdateButtonIcons();
     271             : 
     272           4 :     Window::DataChanged(rDataChangedEvent);
     273           4 : }
     274             : 
     275             : 
     276             : 
     277             : 
     278        7926 : bool TabBar::Notify (NotifyEvent&)
     279             : {
     280        7926 :     return false;
     281             : }
     282             : 
     283             : 
     284             : 
     285             : 
     286        3216 : RadioButton* TabBar::CreateTabItem (const DeckDescriptor& rDeckDescriptor)
     287             : {
     288        3216 :     RadioButton* pItem = ControlFactory::CreateTabItem(this);
     289        3216 :     pItem->SetHelpText(rDeckDescriptor.msHelpText);
     290        3216 :     pItem->SetQuickHelpText(rDeckDescriptor.msHelpText);
     291             : 
     292        3216 :     return pItem;
     293             : }
     294             : 
     295             : 
     296             : 
     297        3216 : Image TabBar::GetItemImage (const DeckDescriptor& rDeckDescriptor) const
     298             : {
     299             :     return Tools::GetImage(
     300             :         rDeckDescriptor.msIconURL,
     301             :         rDeckDescriptor.msHighContrastIconURL,
     302        3216 :         mxFrame);
     303             : }
     304             : 
     305             : 
     306             : 
     307             : 
     308             : 
     309           0 : IMPL_LINK(TabBar::Item, HandleClick, Button*, EMPTYARG)
     310             : {
     311             :     try
     312             :     {
     313           0 :         maDeckActivationFunctor(msDeckId);
     314             :     }
     315           0 :     catch( const ::com::sun::star::uno::Exception&) {} // workaround for #i123198#
     316             : 
     317           0 :     return 1;
     318             : }
     319             : 
     320             : 
     321             : 
     322             : 
     323           0 : const ::rtl::OUString TabBar::GetDeckIdForIndex (const sal_Int32 nIndex) const
     324             : {
     325           0 :     if (nIndex<0 || static_cast<size_t>(nIndex)>=maItems.size())
     326           0 :         throw RuntimeException();
     327             :     else
     328           0 :         return maItems[nIndex].msDeckId;
     329             : }
     330             : 
     331             : 
     332             : 
     333             : 
     334           0 : void TabBar::ToggleHideFlag (const sal_Int32 nIndex)
     335             : {
     336           0 :     if (nIndex<0 || static_cast<size_t>(nIndex)>=maItems.size())
     337           0 :         throw RuntimeException();
     338             :     else
     339             :     {
     340           0 :         maItems[nIndex].mbIsHidden = ! maItems[nIndex].mbIsHidden;
     341           0 :         ResourceManager::Instance().SetIsDeckEnabled(
     342           0 :             maItems[nIndex].msDeckId,
     343           0 :             maItems[nIndex].mbIsHidden);
     344           0 :         Layout();
     345             :     }
     346           0 : }
     347             : 
     348             : 
     349             : 
     350             : 
     351           0 : void TabBar::RestoreHideFlags (void)
     352             : {
     353           0 :     bool bNeedsLayout (false);
     354           0 :     for(ItemContainer::iterator iItem(maItems.begin()),iEnd(maItems.end());
     355             :         iItem!=iEnd;
     356             :         ++iItem)
     357             :     {
     358           0 :         if (iItem->mbIsHidden != iItem->mbIsHiddenByDefault)
     359             :         {
     360           0 :             iItem->mbIsHidden = iItem->mbIsHiddenByDefault;
     361           0 :             bNeedsLayout = true;
     362             :         }
     363             :     }
     364           0 :     if (bNeedsLayout)
     365           0 :         Layout();
     366           0 : }
     367             : 
     368             : 
     369             : 
     370             : 
     371        5486 : void TabBar::UpdateFocusManager (FocusManager& rFocusManager)
     372             : {
     373        5486 :     ::std::vector<Button*> aButtons;
     374        5486 :     aButtons.reserve(maItems.size()+1);
     375             : 
     376        5486 :     aButtons.push_back(mpMenuButton.get());
     377        8702 :     for(ItemContainer::const_iterator
     378        5486 :             iItem(maItems.begin()), iEnd(maItems.end());
     379             :         iItem!=iEnd;
     380             :         ++iItem)
     381             :     {
     382        3216 :         aButtons.push_back(iItem->mpButton.get());
     383             :     }
     384        5486 :     rFocusManager.SetButtons(aButtons);
     385        5486 : }
     386             : 
     387             : 
     388             : 
     389             : 
     390           0 : IMPL_LINK(TabBar, OnToolboxClicked, void*, EMPTYARG)
     391             : {
     392           0 :     if ( ! mpMenuButton)
     393           0 :         return 0;
     394             : 
     395           0 :     ::std::vector<DeckMenuData> aMenuData;
     396             : 
     397           0 :     for(ItemContainer::const_iterator iItem(maItems.begin()),iEnd(maItems.end());
     398             :         iItem!=iEnd;
     399             :         ++iItem)
     400             :     {
     401           0 :         const DeckDescriptor* pDeckDescriptor = ResourceManager::Instance().GetDeckDescriptor(iItem->msDeckId);
     402           0 :         if (pDeckDescriptor != NULL)
     403             :         {
     404           0 :             DeckMenuData aData;
     405           0 :             aData.msDisplayName = pDeckDescriptor->msTitle;
     406           0 :             aData.msDeckId = pDeckDescriptor->msId;
     407           0 :             aData.mbIsCurrentDeck = iItem->mpButton->IsChecked();
     408           0 :             aData.mbIsActive = !iItem->mbIsHidden;
     409           0 :             aData.mbIsEnabled = iItem->mpButton->IsEnabled();
     410             : 
     411           0 :             aMenuData.push_back(aData);
     412             :         }
     413             :     }
     414             : 
     415             :     maPopupMenuProvider(
     416             :         Rectangle(
     417           0 :             mpMenuButton->GetPosPixel(),
     418           0 :             mpMenuButton->GetSizePixel()),
     419           0 :         aMenuData);
     420           0 :     mpMenuButton->Check(false);
     421             : 
     422           0 :     return 0;
     423             : }
     424             : 
     425             : 
     426             : 
     427         951 : } } // end of namespace sfx2::sidebar
     428             : 
     429             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10