Kaydet (Commit) 2f44516d authored tarafından Matúš Kukan's avatar Matúš Kukan

unusedcode: remove various classes

üst 6a1486fd
......@@ -81,30 +81,6 @@ SV_DECL_PTRARR_DEL( SfxItemPtrArray, SfxPoolItemPtr, 4, 4 )
// fuer shell.cxx
typedef SfxItemPtrArray SfxItemArray_Impl;
class SfxExecuteItem : public SfxItemPtrArray, public SfxPoolItem
{
sal_uInt16 nSlot;
SfxCallMode eCall;
sal_uInt16 nModifier;
public:
sal_uInt16 GetSlot() const { return nSlot; }
sal_uInt16 GetModifier() const { return nModifier; }
void SetModifier( sal_uInt16 nModifierP ) { nModifier = nModifierP; }
SfxCallMode GetCallMode() const { return eCall; }
void SetCallMode( SfxCallMode eMode ) { eCall = eMode; }
virtual int operator==( const SfxPoolItem& ) const;
virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const;
SfxExecuteItem(
sal_uInt16 nWhich, sal_uInt16 nSlot, SfxCallMode eMode,
const SfxPoolItem *pArg1, ... );
SfxExecuteItem(
sal_uInt16 nWhich, sal_uInt16 nSlot, SfxCallMode eMode );
SfxExecuteItem( const SfxExecuteItem& );
};
//=========================================================================
class SFX2_DLLPUBLIC SfxDispatcher
{
SfxDispatcher_Impl* pImp;
......
......@@ -1129,57 +1129,6 @@ const SfxSlot* SfxDispatcher::GetSlot( const String& rCommand )
return 0;
}
//--------------------------------------------------------------------
int SfxExecuteItem::operator==( const SfxPoolItem& rItem ) const
{
SfxExecuteItem& rArg = (SfxExecuteItem& )rItem;
sal_uInt16 nCount = Count();
if( nCount != rArg.Count() )
return sal_False;
while( nCount -- )
if( *GetObject( nCount ) != *rArg.GetObject( nCount ) )
return sal_False;
return eCall == rArg.eCall;
}
//--------------------------------------------------------------------
SfxPoolItem* SfxExecuteItem::Clone( SfxItemPool* ) const
{
return new SfxExecuteItem( *this );
}
//--------------------------------------------------------------------
SfxExecuteItem::SfxExecuteItem( const SfxExecuteItem& rArg )
: SfxItemPtrArray(), SfxPoolItem( rArg ), nModifier( 0 )
{
eCall = rArg.eCall;
nSlot = rArg.nSlot;
sal_uInt16 nCount = rArg.Count();
for( sal_uInt16 nPos = 0; nPos < nCount; nPos++ )
Insert( rArg[ nPos ]->Clone(), nPos );
}
//--------------------------------------------------------------------
SfxExecuteItem::SfxExecuteItem(
sal_uInt16 nWhichId, sal_uInt16 nSlotP, SfxCallMode eModeP,
const SfxPoolItem* pArg1, ... ) :
SfxPoolItem( nWhichId ), nSlot( nSlotP ), eCall( eModeP ), nModifier( 0 )
{
va_list pVarArgs;
va_start( pVarArgs, pArg1 );
for ( const SfxPoolItem *pArg = pArg1; pArg;
pArg = va_arg( pVarArgs, const SfxPoolItem* ) )
Insert( pArg->Clone(), Count() );
va_end(pVarArgs);
}
//--------------------------------------------------------------------
SfxExecuteItem::SfxExecuteItem(
sal_uInt16 nWhichId, sal_uInt16 nSlotP, SfxCallMode eModeP )
: SfxPoolItem( nWhichId ), nSlot( nSlotP ), eCall( eModeP ), nModifier( 0 )
{
}
//--------------------------------------------------------------------
const SfxPoolItem* SfxDispatcher::Execute(
sal_uInt16 nSlot,
......
......@@ -77,51 +77,6 @@ using namespace ::com::sun::star::util;
//====================================================================
class SfxEnumMenu: public PopupMenu
{
sal_uInt16 nSlot;
SfxEnumItem *pItem;
SfxBindings* pBindings;
protected:
virtual void Select();
public:
SfxEnumMenu( sal_uInt16 nSlot, SfxBindings* pBind, const SfxEnumItem &rItem );
~SfxEnumMenu();
};
//=========================================================================
SfxEnumMenu::SfxEnumMenu( sal_uInt16 nSlotId, SfxBindings* pBind, const SfxEnumItem &rItem ):
nSlot( nSlotId ),
pItem( (SfxEnumItem*) rItem.Clone() ),
pBindings( pBind )
{
for ( sal_uInt16 nVal = 0; nVal < pItem->GetValueCount(); ++nVal )
InsertItem( nVal+1, pItem->GetValueTextByPos(nVal) );
CheckItem( pItem->GetValue() + 1, sal_True );
}
//-------------------------------------------------------------------------
SfxEnumMenu::~SfxEnumMenu()
{
delete pItem;
}
//-------------------------------------------------------------------------
void SfxEnumMenu::Select()
{
pItem->SetValue( GetCurItemId()-1 );
pBindings->GetDispatcher()->Execute( nSlot,
SFX_CALLMODE_ASYNCHRON|SFX_CALLMODE_RECORD,
pItem, 0L, 0L );
}
//--------------------------------------------------------------------
// binds the instance to the specified id and assignes the title
void SfxMenuControl::Bind(
......@@ -291,16 +246,6 @@ void SfxMenuControl::StateChanged
pOwnMenu->SetItemText( GetId(), aStr );
}
#ifdef enum_item_menu_ok
else if ( aType == TYPE(SfxEnumItem) )
{
DBG_ASSERT( GetId() < SID_OBJECTMENU0 || GetId() > SID_OBJECTMENU_LAST,
"SfxEnumItem not allowed for SID_OBJECTMENUx" );
pOwnMenu->GetMenu().ChangePopupMenu( GetId(), &GetBindings(),
new SfxEnumMenu( GetId(), *(const SfxEnumItem*)pState ) );
}
#endif
pOwnMenu->CheckItem( GetId(), bCheck );
}
......
......@@ -81,28 +81,6 @@ public:
sal_uInt8 nMemberId = 0 ) const;
};
class SfxColumnDateTimeItem : public SfxDateTimeItem
{
public:
TYPEINFO();
SfxColumnDateTimeItem( sal_uInt16 nWhich );
SfxColumnDateTimeItem( sal_uInt16 nWhich,
const DateTime& rDT );
SfxColumnDateTimeItem( const SfxDateTimeItem& rCpy );
~SfxColumnDateTimeItem() {}
virtual SfxPoolItem* Clone( SfxItemPool* pPool = 0 ) const;
virtual SfxItemPresentation GetPresentation( SfxItemPresentation ePres,
SfxMapUnit eCoreMetric,
SfxMapUnit ePresMetric,
XubString &rText,
const IntlWrapper * pIntlWrapper = 0 )
const;
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
......@@ -213,68 +213,5 @@ bool SfxDateTimeItem::QueryValue( com::sun::star::uno::Any& rVal,
return true;
}
// -----------------------------------------------------------------------
// -----------------------------------------------------------------------
// -----------------------------------------------------------------------
TYPEINIT1(SfxColumnDateTimeItem, SfxDateTimeItem);
SfxColumnDateTimeItem::SfxColumnDateTimeItem( sal_uInt16 which ) :
SfxDateTimeItem( which )
{}
SfxColumnDateTimeItem::SfxColumnDateTimeItem( sal_uInt16 which, const DateTime& rDT ) :
SfxDateTimeItem( which, rDT )
{}
SfxColumnDateTimeItem::SfxColumnDateTimeItem( const SfxDateTimeItem& rCpy ) :
SfxDateTimeItem( rCpy )
{}
SfxPoolItem* SfxColumnDateTimeItem::Clone( SfxItemPool* ) const
{
return new SfxColumnDateTimeItem( *this );
}
SfxItemPresentation SfxColumnDateTimeItem::GetPresentation
(
SfxItemPresentation /*ePresentation*/,
SfxMapUnit /*eCoreMetric*/,
SfxMapUnit /*ePresentationMetric*/,
XubString& rText,
const IntlWrapper * pIntlWrapper
) const
{
DBG_ASSERT(pIntlWrapper,
"SfxColumnDateTimeItem::GetPresentation():"
" Using default en_US IntlWrapper");
::com::sun::star::lang::Locale aLocale;
if (GetDateTime() == DateTime(Date(1, 2, 3), Time(3, 2, 1)))
{
rText = String(SvtSimpleResId(STR_COLUM_DT_AUTO,
pIntlWrapper ?
pIntlWrapper->getLocale() :
aLocale));
}
else if (pIntlWrapper)
{
rText = pIntlWrapper->getLocaleData()->getDate(GetDateTime());
rText.AppendAscii(RTL_CONSTASCII_STRINGPARAM(", "));
rText += pIntlWrapper->getLocaleData()->getTime(GetDateTime());
}
else
{
const IntlWrapper aIntlWrapper(
::comphelper::getProcessServiceFactory(), LANGUAGE_ENGLISH_US );
rText = aIntlWrapper.getLocaleData()->getDate(GetDateTime());
rText.AppendAscii(RTL_CONSTASCII_STRINGPARAM(", "));
rText += aIntlWrapper.getLocaleData()->getTime(GetDateTime());
}
return SFX_ITEM_PRESENTATION_NAMELESS;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
......@@ -151,7 +151,6 @@ $(eval $(call gb_Library_add_exception_objects,svt,\
svtools/source/dialogs/insdlg \
svtools/source/dialogs/mcvmath \
svtools/source/dialogs/prnsetup \
svtools/source/dialogs/property \
svtools/source/dialogs/roadmapwizard \
svtools/source/dialogs/wizardmachine \
svtools/source/dialogs/wizdlg \
......
This diff is collapsed.
This diff is collapsed.
......@@ -774,16 +774,10 @@ SfxBasicManagerHolder::isAnyContainerModified() const
SfxBrushItemLink::Set(SfxBrushItemLink*)
SfxChildWindow::SetPosSizePixel(Point const&, Size&)
SfxChildWindowContext::GetAlignment() const
SfxColumnDateTimeItem::SfxColumnDateTimeItem(SfxDateTimeItem const&)
SfxColumnDateTimeItem::SfxColumnDateTimeItem(unsigned short)
SfxColumnDateTimeItem::SfxColumnDateTimeItem(unsigned short, DateTime const&)
SfxContentHelper::IsDocument(String const&)
SfxControllerItem::GetCoreMetric() const
SfxControllerItem::UpdateSlot()
SfxDockingWrapper::GetChildWindowId()
SfxEnumMenu::SfxEnumMenu(unsigned short, SfxBindings*, SfxEnumItem const&)
SfxExecuteItem::SfxExecuteItem(unsigned short, unsigned short, unsigned short)
SfxExecuteItem::SfxExecuteItem(unsigned short, unsigned short, unsigned short, SfxPoolItem const*, ...)
SfxFilterContainer::GetFilter4ClipBoardId(unsigned int, unsigned long, unsigned long) const
SfxFilterContainer::GetFilter4Mime(String const&, unsigned long, unsigned long) const
SfxFilterContainer::GetFilter4UIName(String const&, unsigned long, unsigned long) const
......@@ -918,9 +912,6 @@ StgAvlIterator::Last()
StgCache::Pos2Page(int)
StgHeader::SetClassId(ClsId const&)
StorageStream::ValidateMode(unsigned short, StgDirEntry*) const
SvBasicPropertyDataControl::GetData()
SvBasicPropertyDataControl::GetName() const
SvBasicPropertyDataControl::GetProperty() const
SvBorder::SvBorder(Rectangle const&, Rectangle const&)
SvByteStrings::DeleteAndDestroy(unsigned short, unsigned short)
SvFileStream::UnlockFile()
......@@ -938,18 +929,11 @@ SvLBoxButton::Check(SvLBox*, SvLBoxEntry*, unsigned char)
SvLBoxButtonData::SvLBoxButtonData()
SvLBoxEntryArr::DeleteAndDestroy(unsigned short, unsigned short)
SvLBoxItem::GetSize(SvLBoxEntry*, SvViewDataEntry*)
SvListBoxForProperties::SvListBoxForProperties(Window*, ResId const&)
SvListView::SvListView(SvTreeList*)
SvPersistBaseMemberList::SvPersistBaseMemberList(unsigned short, unsigned short)
SvPersistStream::InsertObj(SvPersistBase*)
SvPersistStream::RemoveObj(SvPersistBase*)
SvPersistStream::SvPersistStream(SvClassManager&, SvStream*, SvPersistStream const&)
SvPropertyBox::SvPropertyBox(Window*, ResId const&)
SvPropertyBox::SvPropertyBox(Window*, long)
SvPropertyLine::GetName() const
SvPropertyLine::IsLineLocked()
SvPropertyLine::IsShownAsHyperlink()
SvPropertyLine::SvPropertyLine(Window*, ResId const&)
SvPtrarr::Replace(void* const*, unsigned short, unsigned short)
SvStringsISort::DeleteAndDestroy(unsigned short, unsigned short)
SvStringsISort::Insert(String* const&)
......@@ -1016,11 +1000,6 @@ SvXMLUnitConverter::convertAny(com::sun::star::uno::Any&, rtl::OUString const&,
SvXMLUnitConverter::convertEnum(rtl::OUStringBuffer&, unsigned short, SvXMLEnumStringMapEntry const*, char*)
SvXMLUnitConverter::convertMeasure(rtl::OUStringBuffer&, int, MapUnit) const
SvXMLUnitConverter::convertNumber64(rtl::OUStringBuffer&, long)
SvXPropEvListener::GetKeyCode() const
SvXPropertyComboBox::SvXPropertyComboBox(Window*, ResId const&)
SvXPropertyEdit::SvXPropertyEdit(Window*, ResId const&)
SvXPropertyListBox::SvXPropertyListBox(Window*, ResId const&)
SvXPropertyListBox::SvXPropertyListBox(Window*, long)
SvpSalInstance::CancelEvent(SalFrame const*, void*, unsigned short)
SvtAcceleratorConfiguration::GetCommand(com::sun::star::awt::KeyEvent const&)
SvtAcceleratorConfiguration::GetItems()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment