LCOV - code coverage report
Current view: top level - extensions/source/propctrlr - propertyeditor.cxx (source / functions) Hit Total Coverage
Test: commit e02a6cb2c3e2b23b203b422e4e0680877f232636 Lines: 0 249 0.0 %
Date: 2014-04-14 Functions: 0 46 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             : #include "propertyeditor.hxx"
      21             : #include "browserpage.hxx"
      22             : #include "linedescriptor.hxx"
      23             : 
      24             : #include <tools/debug.hxx>
      25             : 
      26             : 
      27             : namespace pcr
      28             : {
      29             : 
      30             : 
      31             :     #define LAYOUT_BORDER_LEFT      3
      32             :     #define LAYOUT_BORDER_TOP       3
      33             :     #define LAYOUT_BORDER_RIGHT     3
      34             :     #define LAYOUT_BORDER_BOTTOM    3
      35             : 
      36             :     using ::com::sun::star::uno::Any;
      37             :     using ::com::sun::star::inspection::XPropertyControl;
      38             :     using ::com::sun::star::uno::Reference;
      39             : 
      40             : 
      41             :     // class OPropertyEditor
      42             : 
      43             : 
      44           0 :     OPropertyEditor::OPropertyEditor( Window* pParent, WinBits nWinStyle)
      45             :             :Control(pParent, nWinStyle)
      46             :             ,m_aTabControl( this )
      47             :             ,m_pListener(NULL)
      48             :             ,m_pObserver(NULL)
      49             :             ,m_nNextId(1)
      50             :             ,m_bHasHelpSection( false )
      51             :             ,m_nMinHelpLines( 0 )
      52           0 :             ,m_nMaxHelpLines( 0 )
      53             :     {
      54             : 
      55           0 :         m_aTabControl.Show();
      56           0 :         m_aTabControl.SetDeactivatePageHdl(LINK(this, OPropertyEditor, OnPageDeactivate));
      57           0 :         m_aTabControl.SetActivatePageHdl(LINK(this, OPropertyEditor, OnPageActivate));
      58           0 :         m_aTabControl.SetBackground(GetBackground());
      59           0 :         m_aTabControl.SetPaintTransparent(true);
      60           0 :     }
      61             : 
      62             : 
      63           0 :     OPropertyEditor::~OPropertyEditor()
      64             :     {
      65           0 :         Hide();
      66           0 :         ClearAll();
      67           0 :     }
      68             : 
      69             : 
      70           0 :     void OPropertyEditor::ClearAll()
      71             :     {
      72           0 :         m_nNextId=1;
      73           0 :         sal_uInt16 nCount = m_aTabControl.GetPageCount();
      74           0 :         for(long i = nCount-1; i >= 0; --i)
      75             :         {
      76           0 :             sal_uInt16 nID = m_aTabControl.GetPageId((sal_uInt16)i);
      77           0 :             OBrowserPage* pPage = static_cast<OBrowserPage*>(m_aTabControl.GetTabPage(nID));
      78           0 :             if (pPage)
      79             :             {
      80           0 :                 pPage->EnableInput(false);
      81           0 :                 m_aTabControl.RemovePage(nID);
      82           0 :                 delete pPage;
      83             :             }
      84             :         }
      85           0 :         m_aTabControl.Clear();
      86             : 
      87             :         {
      88           0 :             MapStringToPageId aEmpty;
      89           0 :             m_aPropertyPageIds.swap( aEmpty );
      90             :         }
      91             : 
      92           0 :         while ( !m_aHiddenPages.empty() )
      93             :         {
      94           0 :             delete m_aHiddenPages.begin()->second.pPage;
      95           0 :             m_aHiddenPages.erase( m_aHiddenPages.begin() );
      96             :         }
      97           0 :     }
      98             : 
      99             : 
     100           0 :     sal_Int32 OPropertyEditor::getMinimumHeight()
     101             :     {
     102           0 :         sal_Int32 nMinHeight( LAYOUT_BORDER_TOP + LAYOUT_BORDER_BOTTOM );
     103             : 
     104           0 :         if ( m_aTabControl.GetPageCount() > 0 )
     105             :         {
     106           0 :             sal_uInt16 nFirstID = m_aTabControl.GetPageId( 0 );
     107             : 
     108             :             // reserve space for the tabs themself
     109           0 :             Rectangle aTabArea( m_aTabControl.GetTabBounds( nFirstID ) );
     110           0 :             nMinHeight += aTabArea.GetHeight();
     111             : 
     112             :             // ask the page how much it requires
     113           0 :             OBrowserPage* pPage = static_cast< OBrowserPage* >( m_aTabControl.GetTabPage( nFirstID ) );
     114           0 :             if ( pPage )
     115           0 :                 nMinHeight += pPage->getMinimumHeight();
     116             :         }
     117             :         else
     118           0 :             nMinHeight += 250;  // arbitrary ...
     119             : 
     120           0 :         return nMinHeight;
     121             :     }
     122             : 
     123             : 
     124           0 :     sal_Int32 OPropertyEditor::getMinimumWidth()
     125             :     {
     126           0 :         sal_uInt16 nCount = m_aTabControl.GetPageCount();
     127           0 :         sal_Int32 nPageMinWidth = 0;
     128           0 :         for(long i = nCount-1; i >= 0; --i)
     129             :         {
     130           0 :             sal_uInt16 nID = m_aTabControl.GetPageId((sal_uInt16)i);
     131           0 :             OBrowserPage* pPage = static_cast<OBrowserPage*>(m_aTabControl.GetTabPage(nID));
     132           0 :             if (pPage)
     133             :             {
     134           0 :                 sal_Int32 nCurPageMinWidth = pPage->getMinimumWidth();
     135           0 :                 if( nCurPageMinWidth > nPageMinWidth )
     136           0 :                     nPageMinWidth = nCurPageMinWidth;
     137             :             }
     138             :         }
     139           0 :         return nPageMinWidth+6;
     140             :     }
     141             : 
     142             : 
     143           0 :     void OPropertyEditor::CommitModified()
     144             :     {
     145             :         // commit all of my pages, if necessary
     146             : 
     147           0 :         sal_uInt16 nCount = m_aTabControl.GetPageCount();
     148           0 :         for ( sal_uInt16 i=0; i<nCount; ++i )
     149             :         {
     150           0 :             sal_uInt16 nID = m_aTabControl.GetPageId( i );
     151           0 :             OBrowserPage* pPage = static_cast< OBrowserPage* >( m_aTabControl.GetTabPage( nID ) );
     152             : 
     153           0 :             if ( pPage && pPage->getListBox().IsModified() )
     154           0 :                 pPage->getListBox().CommitModified();
     155             :         }
     156           0 :     }
     157             : 
     158             : 
     159           0 :     void OPropertyEditor::GetFocus()
     160             :     {
     161           0 :         m_aTabControl.GrabFocus();
     162           0 :     }
     163             : 
     164             : 
     165           0 :     OBrowserPage* OPropertyEditor::getPage( const OUString& _rPropertyName )
     166             :     {
     167           0 :         OBrowserPage* pPage = NULL;
     168           0 :         MapStringToPageId::const_iterator aPropertyPageIdPos = m_aPropertyPageIds.find( _rPropertyName );
     169           0 :         if ( aPropertyPageIdPos != m_aPropertyPageIds.end() )
     170           0 :             pPage = static_cast< OBrowserPage* >( m_aTabControl.GetTabPage( aPropertyPageIdPos->second ) );
     171           0 :         return pPage;
     172             :     }
     173             : 
     174             : 
     175           0 :     const OBrowserPage* OPropertyEditor::getPage( const OUString& _rPropertyName ) const
     176             :     {
     177           0 :         return const_cast< OPropertyEditor* >( this )->getPage( _rPropertyName );
     178             :     }
     179             : 
     180             : 
     181           0 :     OBrowserPage* OPropertyEditor::getPage( sal_uInt16& _rPageId )
     182             :     {
     183           0 :         return static_cast< OBrowserPage* >( m_aTabControl.GetTabPage( _rPageId ) );
     184             :     }
     185             : 
     186             : 
     187           0 :     const OBrowserPage* OPropertyEditor::getPage( sal_uInt16& _rPageId ) const
     188             :     {
     189           0 :         return const_cast< OPropertyEditor* >( this )->getPage( _rPageId );
     190             :     }
     191             : 
     192             : 
     193           0 :     void OPropertyEditor::Resize()
     194             :     {
     195             :         Rectangle aPlayground(
     196             :             Point( LAYOUT_BORDER_LEFT, LAYOUT_BORDER_TOP ),
     197             :             Size(
     198           0 :                 GetOutputSizePixel().Width() - LAYOUT_BORDER_LEFT - LAYOUT_BORDER_RIGHT,
     199           0 :                 GetOutputSizePixel().Height() - LAYOUT_BORDER_TOP - LAYOUT_BORDER_BOTTOM
     200             :             )
     201           0 :         );
     202             : 
     203           0 :         Rectangle aTabArea( aPlayground );
     204           0 :         m_aTabControl.SetPosSizePixel( aTabArea.TopLeft(), aTabArea.GetSize() );
     205           0 :     }
     206             : 
     207             : 
     208           0 :     sal_uInt16 OPropertyEditor::AppendPage( const OUString & _rText, const OString& _rHelpId )
     209             :     {
     210             :         // obtain a new id
     211           0 :         sal_uInt16 nId = m_nNextId++;
     212             :         // insert the id
     213           0 :         m_aTabControl.InsertPage(nId, _rText);
     214             : 
     215             :         // create a new page
     216           0 :         OBrowserPage* pPage = new OBrowserPage(&m_aTabControl);
     217           0 :         pPage->SetText( _rText );
     218             :         // some knittings
     219           0 :         pPage->SetSizePixel(m_aTabControl.GetTabPageSizePixel());
     220           0 :         pPage->getListBox().SetListener(m_pListener);
     221           0 :         pPage->getListBox().SetObserver(m_pObserver);
     222           0 :         pPage->getListBox().EnableHelpSection( m_bHasHelpSection );
     223           0 :         pPage->getListBox().SetHelpLineLimites( m_nMinHelpLines, m_nMaxHelpLines );
     224           0 :         pPage->SetHelpId( _rHelpId );
     225             : 
     226             :         // immediately activate the page
     227           0 :         m_aTabControl.SetTabPage(nId, pPage);
     228           0 :         m_aTabControl.SetCurPageId(nId);
     229             : 
     230           0 :         return nId;
     231             :     }
     232             : 
     233             : 
     234           0 :     void OPropertyEditor::SetHelpId( const OString& rHelpId )
     235             :     {
     236           0 :         Control::SetHelpId("");
     237           0 :         m_aTabControl.SetHelpId(rHelpId);
     238           0 :     }
     239             : 
     240             : 
     241           0 :     void OPropertyEditor::RemovePage(sal_uInt16 nID)
     242             :     {
     243           0 :         OBrowserPage* pPage = static_cast<OBrowserPage*>(m_aTabControl.GetTabPage(nID));
     244             : 
     245           0 :         if (pPage)
     246           0 :             pPage->EnableInput(false);
     247           0 :         m_aTabControl.RemovePage(nID);
     248           0 :         if (pPage)
     249           0 :             delete pPage;
     250           0 :     }
     251             : 
     252             : 
     253           0 :     void OPropertyEditor::SetPage(sal_uInt16 nId)
     254             :     {
     255           0 :         m_aTabControl.SetCurPageId(nId);
     256           0 :     }
     257             : 
     258             : 
     259           0 :     sal_uInt16 OPropertyEditor::GetCurPage()
     260             :     {
     261           0 :         if(m_aTabControl.GetPageCount()>0)
     262           0 :             return m_aTabControl.GetCurPageId();
     263             :         else
     264           0 :             return 0;
     265             :     }
     266             : 
     267             : 
     268           0 :     void OPropertyEditor::Update(const ::std::mem_fun_t<void,OBrowserListBox>& _aUpdateFunction)
     269             :     {
     270             :         // forward this to all our pages
     271           0 :         sal_uInt16 nCount = m_aTabControl.GetPageCount();
     272           0 :         for (sal_uInt16 i=0;i<nCount;++i)
     273             :         {
     274           0 :             sal_uInt16 nID = m_aTabControl.GetPageId(i);
     275           0 :             OBrowserPage* pPage = static_cast<OBrowserPage*>(m_aTabControl.GetTabPage(nID));
     276           0 :             if (pPage)
     277           0 :                 _aUpdateFunction(&pPage->getListBox());
     278             :         }
     279           0 :     }
     280             : 
     281           0 :     void OPropertyEditor::EnableUpdate()
     282             :     {
     283           0 :         Update(::std::mem_fun(&OBrowserListBox::EnableUpdate));
     284           0 :     }
     285             : 
     286           0 :     void OPropertyEditor::DisableUpdate()
     287             :     {
     288           0 :         Update(::std::mem_fun(&OBrowserListBox::DisableUpdate));
     289           0 :     }
     290             : 
     291             : 
     292           0 :     void OPropertyEditor::forEachPage( PageOperation _pOperation, const void* _pArgument )
     293             :     {
     294           0 :         sal_uInt16 nCount = m_aTabControl.GetPageCount();
     295           0 :         for ( sal_uInt16 i=0; i<nCount; ++i )
     296             :         {
     297           0 :             sal_uInt16 nID = m_aTabControl.GetPageId(i);
     298           0 :             OBrowserPage* pPage = static_cast< OBrowserPage* >( m_aTabControl.GetTabPage( nID ) );
     299           0 :             if ( !pPage )
     300           0 :                 continue;
     301           0 :             (this->*_pOperation)( *pPage, _pArgument );
     302             :         }
     303           0 :     }
     304             : 
     305             : 
     306           0 :     void OPropertyEditor::setPageLineListener( OBrowserPage& _rPage, const void* )
     307             :     {
     308           0 :         _rPage.getListBox().SetListener( m_pListener );
     309           0 :     }
     310             : 
     311             : 
     312           0 :     void OPropertyEditor::SetLineListener(IPropertyLineListener* _pListener)
     313             :     {
     314           0 :         m_pListener = _pListener;
     315           0 :         forEachPage( &OPropertyEditor::setPageLineListener );
     316           0 :     }
     317             : 
     318             : 
     319           0 :     void OPropertyEditor::setPageControlObserver( OBrowserPage& _rPage, const void* )
     320             :     {
     321           0 :         _rPage.getListBox().SetObserver( m_pObserver );
     322           0 :     }
     323             : 
     324             : 
     325           0 :     void OPropertyEditor::SetControlObserver( IPropertyControlObserver* _pObserver )
     326             :     {
     327           0 :         m_pObserver = _pObserver;
     328           0 :         forEachPage( &OPropertyEditor::setPageControlObserver );
     329           0 :     }
     330             : 
     331             : 
     332           0 :     void OPropertyEditor::EnableHelpSection( bool _bEnable )
     333             :     {
     334           0 :         m_bHasHelpSection = _bEnable;
     335           0 :         forEachPage( &OPropertyEditor::enableHelpSection );
     336           0 :     }
     337             : 
     338             : 
     339           0 :     bool OPropertyEditor::HasHelpSection() const
     340             :     {
     341           0 :         return m_bHasHelpSection;
     342             :     }
     343             : 
     344             : 
     345           0 :     void OPropertyEditor::SetHelpText( const OUString& _rHelpText )
     346             :     {
     347           0 :         forEachPage( &OPropertyEditor::setHelpSectionText, &_rHelpText );
     348           0 :     }
     349             : 
     350             : 
     351           0 :     void OPropertyEditor::SetHelpLineLimites( sal_Int32 _nMinLines, sal_Int32 _nMaxLines )
     352             :     {
     353           0 :         m_nMinHelpLines = _nMinLines;
     354           0 :         m_nMaxHelpLines = _nMaxLines;
     355           0 :         forEachPage( &OPropertyEditor::setHelpLineLimits );
     356           0 :     }
     357             : 
     358             : 
     359           0 :     void OPropertyEditor::enableHelpSection( OBrowserPage& _rPage, const void* )
     360             :     {
     361           0 :         _rPage.getListBox().EnableHelpSection( m_bHasHelpSection );
     362           0 :     }
     363             : 
     364             : 
     365           0 :     void OPropertyEditor::setHelpSectionText( OBrowserPage& _rPage, const void* _pPointerToOUString )
     366             :     {
     367             :         OSL_ENSURE( _pPointerToOUString, "OPropertyEditor::setHelpSectionText: invalid argument!" );
     368           0 :         if ( !_pPointerToOUString )
     369           0 :             return;
     370             : 
     371           0 :         const OUString& rText( *(const OUString*)_pPointerToOUString );
     372           0 :         _rPage.getListBox().SetHelpText( rText );
     373             :     }
     374             : 
     375             : 
     376           0 :     void OPropertyEditor::setHelpLineLimits( OBrowserPage& _rPage, const void* )
     377             :     {
     378           0 :         _rPage.getListBox().SetHelpLineLimites( m_nMinHelpLines, m_nMaxHelpLines );
     379           0 :     }
     380             : 
     381             : 
     382           0 :     sal_uInt16 OPropertyEditor::InsertEntry( const OLineDescriptor& rData, sal_uInt16 _nPageId, sal_uInt16 nPos )
     383             :     {
     384             :         // let the current page handle this
     385           0 :         OBrowserPage* pPage = getPage( _nPageId );
     386             :         DBG_ASSERT( pPage, "OPropertyEditor::InsertEntry: don't have such a page!" );
     387           0 :         if ( !pPage )
     388           0 :             return EDITOR_LIST_ENTRY_NOTFOUND;
     389             : 
     390           0 :         sal_uInt16 nEntry = pPage->getListBox().InsertEntry( rData, nPos );
     391             : 
     392             :         OSL_ENSURE( m_aPropertyPageIds.find( rData.sName ) == m_aPropertyPageIds.end(),
     393             :             "OPropertyEditor::InsertEntry: property already present in the map!" );
     394           0 :         m_aPropertyPageIds.insert( MapStringToPageId::value_type( rData.sName, _nPageId ) );
     395             : 
     396           0 :         return nEntry;
     397             :     }
     398             : 
     399             : 
     400           0 :     void OPropertyEditor::RemoveEntry( const OUString& _rName )
     401             :     {
     402           0 :         OBrowserPage* pPage = getPage( _rName );
     403           0 :         if ( pPage )
     404             :         {
     405           0 :             OSL_VERIFY( pPage->getListBox().RemoveEntry( _rName ) );
     406             : 
     407             :             OSL_ENSURE( m_aPropertyPageIds.find( _rName ) != m_aPropertyPageIds.end(),
     408             :                 "OPropertyEditor::RemoveEntry: property not present in the map!" );
     409           0 :             m_aPropertyPageIds.erase( _rName );
     410             :         }
     411           0 :     }
     412             : 
     413             : 
     414           0 :     void OPropertyEditor::ChangeEntry( const OLineDescriptor& rData )
     415             :     {
     416           0 :         OBrowserPage* pPage = getPage( rData.sName );
     417           0 :         if ( pPage )
     418           0 :             pPage->getListBox().ChangeEntry( rData, EDITOR_LIST_REPLACE_EXISTING );
     419           0 :     }
     420             : 
     421             : 
     422           0 :     void OPropertyEditor::SetPropertyValue( const OUString& rEntryName, const Any& _rValue, bool _bUnknownValue )
     423             :     {
     424           0 :         OBrowserPage* pPage = getPage( rEntryName );
     425           0 :         if ( pPage )
     426           0 :             pPage->getListBox().SetPropertyValue( rEntryName, _rValue, _bUnknownValue );
     427           0 :     }
     428             : 
     429             : 
     430           0 :     sal_uInt16 OPropertyEditor::GetPropertyPos( const OUString& rEntryName ) const
     431             :     {
     432           0 :         sal_uInt16 nVal=EDITOR_LIST_ENTRY_NOTFOUND;
     433           0 :         const OBrowserPage* pPage = getPage( rEntryName );
     434           0 :         if ( pPage )
     435           0 :             nVal = pPage->getListBox().GetPropertyPos( rEntryName );
     436           0 :         return nVal;
     437             :     }
     438             : 
     439             : 
     440           0 :     void OPropertyEditor::ShowPropertyPage( sal_uInt16 _nPageId, bool _bShow )
     441             :     {
     442           0 :         if ( !_bShow )
     443             :         {
     444           0 :             sal_uInt16 nPagePos = m_aTabControl.GetPagePos( _nPageId );
     445           0 :             if ( TAB_PAGE_NOTFOUND == nPagePos )
     446           0 :                 return;
     447             :             DBG_ASSERT( m_aHiddenPages.find( _nPageId ) == m_aHiddenPages.end(), "OPropertyEditor::ShowPropertyPage: page already hidden!" );
     448             : 
     449           0 :             m_aHiddenPages[ _nPageId ] = HiddenPage( nPagePos, m_aTabControl.GetTabPage( _nPageId ) );
     450           0 :             m_aTabControl.RemovePage( _nPageId );
     451             :         }
     452             :         else
     453             :         {
     454           0 :             ::std::map< sal_uInt16, HiddenPage >::iterator aPagePos = m_aHiddenPages.find( _nPageId );
     455           0 :             if ( aPagePos == m_aHiddenPages.end() )
     456           0 :                 return;
     457             : 
     458           0 :             aPagePos->second.pPage->SetSizePixel( m_aTabControl.GetTabPageSizePixel() );
     459           0 :             m_aTabControl.InsertPage( aPagePos->first, aPagePos->second.pPage->GetText(), aPagePos->second.nPos );
     460           0 :             m_aTabControl.SetTabPage( aPagePos->first, aPagePos->second.pPage );
     461             : 
     462           0 :             m_aHiddenPages.erase( aPagePos );
     463             :         }
     464             :     }
     465             : 
     466             : 
     467           0 :     void OPropertyEditor::EnablePropertyControls( const OUString& _rEntryName, sal_Int16 _nControls, bool _bEnable )
     468             :     {
     469           0 :         for ( sal_uInt16 i = 0; i < m_aTabControl.GetPageCount(); ++i )
     470             :         {
     471           0 :             OBrowserPage* pPage = static_cast< OBrowserPage* >( m_aTabControl.GetTabPage( m_aTabControl.GetPageId( i ) ) );
     472           0 :             if ( pPage )
     473           0 :                 pPage->getListBox().EnablePropertyControls( _rEntryName, _nControls, _bEnable );
     474             :         }
     475           0 :     }
     476             : 
     477             : 
     478           0 :     void OPropertyEditor::EnablePropertyLine( const OUString& _rEntryName, bool _bEnable )
     479             :     {
     480           0 :         for ( sal_uInt16 i = 0; i < m_aTabControl.GetPageCount(); ++i )
     481             :         {
     482           0 :             OBrowserPage* pPage = static_cast< OBrowserPage* >( m_aTabControl.GetTabPage( m_aTabControl.GetPageId( i ) ) );
     483           0 :             if ( pPage )
     484           0 :                 pPage->getListBox().EnablePropertyLine( _rEntryName, _bEnable );
     485             :         }
     486           0 :     }
     487             : 
     488             : 
     489           0 :     Reference< XPropertyControl > OPropertyEditor::GetPropertyControl(const OUString& rEntryName)
     490             :     {
     491           0 :         Reference< XPropertyControl > xControl;
     492             :         // let the current page handle this
     493           0 :         OBrowserPage* pPage = static_cast<OBrowserPage*>(m_aTabControl.GetTabPage(m_aTabControl.GetCurPageId()));
     494           0 :         if (pPage)
     495           0 :             xControl = pPage->getListBox().GetPropertyControl(rEntryName);
     496           0 :         return xControl;
     497             :     }
     498             : 
     499             : 
     500           0 :     IMPL_LINK_NOARG(OPropertyEditor, OnPageActivate)
     501             :     {
     502           0 :         if (m_aPageActivationHandler.IsSet())
     503           0 :             m_aPageActivationHandler.Call(NULL);
     504           0 :         return 0L;
     505             :     }
     506             : 
     507             : 
     508           0 :     IMPL_LINK_NOARG(OPropertyEditor, OnPageDeactivate)
     509             :     {
     510             :         // commit the data on the current (to-be-decativated) tab page
     511             :         // (79404)
     512           0 :         sal_Int32 nCurrentId = m_aTabControl.GetCurPageId();
     513           0 :         OBrowserPage* pCurrentPage = static_cast<OBrowserPage*>(m_aTabControl.GetTabPage((sal_uInt16)nCurrentId));
     514           0 :         if ( !pCurrentPage )
     515           0 :             return 1L;
     516             : 
     517           0 :         if ( pCurrentPage->getListBox().IsModified() )
     518           0 :             pCurrentPage->getListBox().CommitModified();
     519             : 
     520           0 :         return 1L;
     521             :     }
     522             : 
     523             : 
     524             : } // namespace pcr
     525             : 
     526             : 
     527             : 
     528             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10