LCOV - code coverage report
Current view: top level - libreoffice/svtools/source/toolpanel - tablayouter.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 77 0.0 %
Date: 2012-12-27 Functions: 0 17 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : 
      21             : #include "svtools/toolpanel/tablayouter.hxx"
      22             : #include "svtools/toolpanel/toolpaneldeck.hxx"
      23             : #include "svtools/toolpanel/paneltabbar.hxx"
      24             : #include "svtaccessiblefactory.hxx"
      25             : 
      26             : #include <tools/gen.hxx>
      27             : #include <tools/diagnose_ex.h>
      28             : 
      29             : //........................................................................
      30             : namespace svt
      31             : {
      32             : //........................................................................
      33             : 
      34             :     using ::com::sun::star::uno::Reference;
      35             :     using ::com::sun::star::accessibility::XAccessible;
      36             : 
      37             :     //====================================================================
      38             :     //= TabDeckLayouter_Data
      39             :     //====================================================================
      40           0 :     struct TabDeckLayouter_Data
      41             :     {
      42             :         TabAlignment                    eAlignment;
      43             :         IToolPanelDeck&                 rPanels;
      44             :         ::std::auto_ptr< PanelTabBar >  pTabBar;
      45             :         AccessibleFactoryAccess         aAccessibleFactory;
      46             : 
      47           0 :         TabDeckLayouter_Data( Window& i_rParent, IToolPanelDeck& i_rPanels,
      48             :                 const TabAlignment i_eAlignment, const TabItemContent i_eItemContent )
      49             :             :eAlignment( i_eAlignment )
      50             :             ,rPanels( i_rPanels )
      51           0 :             ,pTabBar( new PanelTabBar( i_rParent, i_rPanels, i_eAlignment, i_eItemContent ) )
      52             :         {
      53           0 :             pTabBar->Show();
      54           0 :         }
      55             :     };
      56             : 
      57             :     //====================================================================
      58             :     //= helper
      59             :     //====================================================================
      60             :     namespace
      61             :     {
      62           0 :         static bool lcl_isVerticalTabBar( const TabAlignment i_eAlignment )
      63             :         {
      64             :             return  ( i_eAlignment == TABS_RIGHT )
      65           0 :                 ||  ( i_eAlignment == TABS_LEFT );
      66             :         }
      67             : 
      68           0 :         static bool lcl_checkDisposed( const TabDeckLayouter_Data& i_rData )
      69             :         {
      70           0 :             if ( !i_rData.pTabBar.get() )
      71             :             {
      72             :                 OSL_FAIL( "lcl_checkDisposed: already disposed!" );
      73           0 :                 return true;
      74             :             }
      75           0 :             return false;
      76             :         }
      77             :     }
      78             : 
      79             :     //====================================================================
      80             :     //= TabDeckLayouter
      81             :     //====================================================================
      82             :     //--------------------------------------------------------------------
      83           0 :     TabDeckLayouter::TabDeckLayouter( Window& i_rParent, IToolPanelDeck& i_rPanels,
      84             :             const TabAlignment i_eAlignment, const TabItemContent i_eItemContent )
      85           0 :         :m_pData( new TabDeckLayouter_Data( i_rParent, i_rPanels, i_eAlignment, i_eItemContent ) )
      86             :     {
      87           0 :     }
      88             : 
      89             :     //--------------------------------------------------------------------
      90           0 :     TabDeckLayouter::~TabDeckLayouter()
      91             :     {
      92           0 :     }
      93             : 
      94             :     //--------------------------------------------------------------------
      95           0 :     IMPLEMENT_IREFERENCE( TabDeckLayouter )
      96             : 
      97             :     //--------------------------------------------------------------------
      98           0 :     TabItemContent TabDeckLayouter::GetTabItemContent() const
      99             :     {
     100           0 :         if ( lcl_checkDisposed( *m_pData ) )
     101           0 :             return TABITEM_IMAGE_AND_TEXT;
     102           0 :         return m_pData->pTabBar->GetTabItemContent();
     103             :     }
     104             : 
     105             :     //--------------------------------------------------------------------
     106           0 :     void TabDeckLayouter::SetTabItemContent( const TabItemContent& i_eItemContent )
     107             :     {
     108           0 :         if ( lcl_checkDisposed( *m_pData ) )
     109           0 :             return;
     110           0 :         m_pData->pTabBar->SetTabItemContent( i_eItemContent );
     111             :     }
     112             : 
     113             :     //--------------------------------------------------------------------
     114           0 :     TabAlignment TabDeckLayouter::GetTabAlignment() const
     115             :     {
     116           0 :         if ( lcl_checkDisposed( *m_pData ) )
     117           0 :             return TABS_RIGHT;
     118           0 :         return m_pData->eAlignment;
     119             :     }
     120             : 
     121             :     //--------------------------------------------------------------------
     122           0 :     Rectangle TabDeckLayouter::Layout( const Rectangle& i_rDeckPlayground )
     123             :     {
     124           0 :         if ( lcl_checkDisposed( *m_pData ) )
     125           0 :             return i_rDeckPlayground;
     126             : 
     127           0 :         const Size aPreferredSize( m_pData->pTabBar->GetOptimalSize( WINDOWSIZE_PREFERRED ) );
     128           0 :         if ( lcl_isVerticalTabBar( m_pData->eAlignment ) )
     129             :         {
     130           0 :             Size aTabBarSize =  ( aPreferredSize.Width() < i_rDeckPlayground.GetWidth() )
     131             :                             ?   aPreferredSize
     132           0 :                             :   m_pData->pTabBar->GetOptimalSize( WINDOWSIZE_MINIMUM );
     133           0 :             aTabBarSize.Height() = i_rDeckPlayground.GetHeight();
     134             : 
     135           0 :             Rectangle aPanelRect( i_rDeckPlayground );
     136           0 :             if ( m_pData->eAlignment == TABS_RIGHT )
     137             :             {
     138           0 :                 aPanelRect.Right() -= aTabBarSize.Width();
     139           0 :                 Point aTabBarTopLeft( aPanelRect.TopRight() );
     140           0 :                 aTabBarTopLeft.X() += 1;
     141           0 :                 m_pData->pTabBar->SetPosSizePixel( aTabBarTopLeft, aTabBarSize );
     142             :             }
     143             :             else
     144             :             {
     145           0 :                 m_pData->pTabBar->SetPosSizePixel( aPanelRect.TopLeft(), aTabBarSize );
     146           0 :                 aPanelRect.Left() += aTabBarSize.Width();
     147             :             }
     148           0 :             if ( aPanelRect.Left() >= aPanelRect.Right() )
     149           0 :                 aPanelRect = Rectangle();
     150             : 
     151           0 :             return aPanelRect;
     152             :         }
     153             : 
     154           0 :         Size aTabBarSize =  ( aPreferredSize.Height() < i_rDeckPlayground.GetHeight() )
     155             :                         ?   aPreferredSize
     156           0 :                         :   m_pData->pTabBar->GetOptimalSize( WINDOWSIZE_MINIMUM );
     157           0 :         aTabBarSize.Width() = i_rDeckPlayground.GetWidth();
     158             : 
     159           0 :         Rectangle aPanelRect( i_rDeckPlayground );
     160           0 :         if ( m_pData->eAlignment == TABS_TOP )
     161             :         {
     162           0 :             m_pData->pTabBar->SetPosSizePixel( aPanelRect.TopLeft(), aTabBarSize );
     163           0 :             aPanelRect.Top() += aTabBarSize.Height();
     164             :         }
     165             :         else
     166             :         {
     167           0 :             aPanelRect.Bottom() -= aTabBarSize.Height();
     168           0 :             Point aTabBarTopLeft( aPanelRect.BottomLeft() );
     169           0 :             aTabBarTopLeft.Y() -= 1;
     170           0 :             m_pData->pTabBar->SetPosSizePixel( aTabBarTopLeft, aTabBarSize );
     171             :         }
     172           0 :         if ( aPanelRect.Top() >= aPanelRect.Bottom() )
     173           0 :             aPanelRect = Rectangle();
     174             : 
     175           0 :         return aPanelRect;
     176             :     }
     177             : 
     178             :     //--------------------------------------------------------------------
     179           0 :     void TabDeckLayouter::Destroy()
     180             :     {
     181           0 :         m_pData->pTabBar.reset();
     182           0 :     }
     183             : 
     184             :     //--------------------------------------------------------------------
     185           0 :     void TabDeckLayouter::SetFocusToPanelSelector()
     186             :     {
     187           0 :         if ( lcl_checkDisposed( *m_pData ) )
     188           0 :             return;
     189           0 :         m_pData->pTabBar->GrabFocus();
     190             :     }
     191             : 
     192             :     //--------------------------------------------------------------------
     193           0 :     size_t TabDeckLayouter::GetAccessibleChildCount() const
     194             :     {
     195           0 :         if ( lcl_checkDisposed( *m_pData ) )
     196           0 :             return 0;
     197             : 
     198           0 :         return 1;
     199             :     }
     200             : 
     201             :     //--------------------------------------------------------------------
     202           0 :     Reference< XAccessible > TabDeckLayouter::GetAccessibleChild( const size_t i_nChildIndex, const Reference< XAccessible >& i_rParentAccessible )
     203             :     {
     204             :         (void)i_nChildIndex;
     205             :         (void)i_rParentAccessible;
     206           0 :         if ( lcl_checkDisposed( *m_pData ) )
     207           0 :             return NULL;
     208             : 
     209           0 :         return m_pData->pTabBar->GetAccessible( sal_True );
     210             :     }
     211             : 
     212             : //........................................................................
     213             : } // namespace svt
     214             : //........................................................................
     215             : 
     216             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10