From 99648095012187ef284d0a9399a8e12878b2a370 Mon Sep 17 00:00:00 2001 From: Samuel Mehrbrodt Date: Wed, 18 Nov 2015 14:07:46 +0100 Subject: ToolBox: Remove unused methods Change-Id: Ic56cf27c61a904278770f0617d827e574d1eae68 --- vcl/source/window/toolbox.cxx | 55 -------------------------- vcl/source/window/toolbox2.cxx | 90 ------------------------------------------ 2 files changed, 145 deletions(-) (limited to 'vcl/source/window') diff --git a/vcl/source/window/toolbox.cxx b/vcl/source/window/toolbox.cxx index 01a73059611c..b9ad577a41fc 100644 --- a/vcl/source/window/toolbox.cxx +++ b/vcl/source/window/toolbox.cxx @@ -1540,61 +1540,6 @@ void ToolBox::ImplInitSettings(bool bFont, bool bForeground, bool bBackground) } } -void ToolBox::ImplLoadRes( const ResId& rResId ) -{ - ResMgr* pMgr = rResId.GetResMgr(); - if( ! pMgr ) - return; - - DockingWindow::ImplLoadRes( rResId ); - - sal_uLong nObjMask; - - nObjMask = ReadLongRes(); - - if ( nObjMask & RSC_TOOLBOX_BUTTONTYPE ) - SetButtonType( (ButtonType)ReadLongRes() ); - - if ( nObjMask & RSC_TOOLBOX_ALIGN ) - SetAlign( (WindowAlign)ReadLongRes() ); - - if ( nObjMask & RSC_TOOLBOX_LINECOUNT ) - SetLineCount( sal::static_int_cast(ReadLongRes()) ); - - if ( nObjMask & RSC_TOOLBOX_CUSTOMIZE ) - { - bool bCust = ReadShortRes(); - EnableCustomize( bCust ); - } - - if ( nObjMask & RSC_TOOLBOX_MENUSTRINGS ) - { - bool bCust = ReadShortRes(); - EnableMenuStrings( bCust ); - } - - if ( nObjMask & RSC_TOOLBOX_FLOATLINES ) - SetFloatingLines( ReadShortRes() ); - - if ( nObjMask & RSC_TOOLBOX_ITEMIMAGELIST ) - { - maImageList = ImageList( ResId( static_cast(GetClassRes()), *pMgr ) ); - IncrementRes( GetObjSizeRes( static_cast(GetClassRes()) ) ); - } - - if ( nObjMask & RSC_TOOLBOX_ITEMLIST ) - { - sal_uLong nEle = ReadLongRes(); - - // insert item - for ( sal_uLong i = 0; i < nEle; i++ ) - { - InsertItem( ResId( static_cast(GetClassRes()), *pMgr ) ); - IncrementRes( GetObjSizeRes( static_cast(GetClassRes()) ) ); - } - } -} - ToolBox::ToolBox( vcl::Window* pParent, WinBits nStyle ) : DockingWindow( WINDOW_TOOLBOX ) { diff --git a/vcl/source/window/toolbox2.cxx b/vcl/source/window/toolbox2.cxx index 88995776f914..7833345eca0e 100644 --- a/vcl/source/window/toolbox2.cxx +++ b/vcl/source/window/toolbox2.cxx @@ -448,96 +448,6 @@ void ToolBox::Select() pWrapper->GetFloatingWindow()->EndPopupMode(); } -void ToolBox::InsertItem( const ResId& rResId, sal_uInt16 nPos ) -{ - sal_uLong nObjMask; - bool bImage = false; // has image - - // create item - ImplToolItem aItem; - - GetRes( rResId.SetRT( RSC_TOOLBOXITEM ) ); - nObjMask = ReadLongRes(); - - if ( nObjMask & RSC_TOOLBOXITEM_ID ) - aItem.mnId = sal::static_int_cast(ReadLongRes()); - else - aItem.mnId = 1; - - if ( nObjMask & RSC_TOOLBOXITEM_TYPE ) - aItem.meType = (ToolBoxItemType)ReadLongRes(); - - if ( nObjMask & RSC_TOOLBOXITEM_STATUS ) - aItem.mnBits = (ToolBoxItemBits)ReadLongRes(); - - if( nObjMask & RSC_TOOLBOXITEM_HELPID ) - aItem.maHelpId = ReadByteStringRes(); - - if ( nObjMask & RSC_TOOLBOXITEM_TEXT ) - { - aItem.maText = ReadStringRes(); - aItem.maText = ImplConvertMenuString( aItem.maText ); - } - if ( nObjMask & RSC_TOOLBOXITEM_HELPTEXT ) - aItem.maHelpText = ReadStringRes(); - - if ( nObjMask & RSC_TOOLBOXITEM_BITMAP ) - { - Bitmap aBmp = Bitmap( ResId( static_cast(GetClassRes()), *rResId.GetResMgr() ) ); - IncrementRes( GetObjSizeRes( static_cast(GetClassRes()) ) ); - aItem.maImage = Image( aBmp, IMAGE_STDBTN_COLOR ); - bImage = true; - } - if ( nObjMask & RSC_TOOLBOXITEM_IMAGE ) - { - aItem.maImage = Image( ResId( static_cast(GetClassRes()), *rResId.GetResMgr() ) ); - IncrementRes( GetObjSizeRes( static_cast(GetClassRes()) ) ); - bImage = true; - } - if ( nObjMask & RSC_TOOLBOXITEM_DISABLE ) - aItem.mbEnabled = ReadShortRes() == 0; - - if ( nObjMask & RSC_TOOLBOXITEM_STATE ) - aItem.meState = (TriState)ReadLongRes(); - - if ( nObjMask & RSC_TOOLBOXITEM_HIDE ) - aItem.mbVisible = ReadShortRes() == 0; - - if ( nObjMask & RSC_TOOLBOXITEM_COMMAND ) - aItem.maCommandStr = ReadStringRes(); - - // if no image is loaded, try to load one from the image list - if ( !bImage && aItem.mnId ) - aItem.maImage = maImageList.GetImage( aItem.mnId ); - - // if this is a ButtonItem, check ID - bool bNewCalc; - if ( aItem.meType != ToolBoxItemType::BUTTON ) - { - bNewCalc = false; - aItem.mnId = 0; - } - else - { - bNewCalc = true; - - DBG_ASSERT( aItem.mnId, "ToolBox::InsertItem(): ItemId == 0" ); - DBG_ASSERT( GetItemPos( aItem.mnId ) == TOOLBOX_ITEM_NOTFOUND, - "ToolBox::InsertItem(): ItemId already exists" ); - } - - // create item and add to list - mpData->m_aItems.insert( (nPos < mpData->m_aItems.size()) ? mpData->m_aItems.begin()+nPos : mpData->m_aItems.end(), aItem ); - mpData->ImplClearLayoutData(); - - // recalculate ToolBox and redraw - ImplInvalidate( bNewCalc ); - - // Notify - sal_uInt16 nNewPos = sal::static_int_cast(( nPos == TOOLBOX_APPEND ) ? ( mpData->m_aItems.size() - 1 ) : nPos); - CallEventListeners( VCLEVENT_TOOLBOX_ITEMADDED, reinterpret_cast< void* >( nNewPos ) ); -} - void ToolBox::InsertItem( sal_uInt16 nItemId, const Image& rImage, ToolBoxItemBits nBits, sal_uInt16 nPos ) { -- cgit v1.2.3