diff options
Diffstat (limited to 'sd/source/ui/dlg/diactrl.cxx')
-rw-r--r-- | sd/source/ui/dlg/diactrl.cxx | 181 |
1 files changed, 0 insertions, 181 deletions
diff --git a/sd/source/ui/dlg/diactrl.cxx b/sd/source/ui/dlg/diactrl.cxx deleted file mode 100644 index a2a0e4a60..000000000 --- a/sd/source/ui/dlg/diactrl.cxx +++ /dev/null @@ -1,181 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2000, 2010 Oracle and/or its affiliates. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * <http://www.openoffice.org/license.html> - * for a copy of the LGPLv3 License. - * - ************************************************************************/ - -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_sd.hxx" -#include <com/sun/star/presentation/FadeEffect.hpp> - -#include <svx/dialogs.hrc> - -#include "sdattr.hxx" -#include "strings.hrc" - -#define _SD_DIACTRL_CXX -#include "diactrl.hxx" - -#include "sdresid.hxx" -#include "app.hrc" -#include "res_bmp.hrc" -#include <sfx2/dispatch.hxx> -#include <sfx2/viewfrm.hxx> -#include <sfx2/app.hxx> - -using namespace ::com::sun::star; - -SFX_IMPL_TOOLBOX_CONTROL( SdTbxCtlDiaPages, SfxUInt16Item ) - - -//======================================================================== -// SdPagesField -//======================================================================== - -SdPagesField::SdPagesField( Window* pParent, - const uno::Reference< frame::XFrame >& rFrame, - WinBits nBits ) : - SvxMetricField ( pParent, rFrame, nBits ), - m_xFrame ( rFrame ) -{ - String aStr( SdResId( STR_SLIDE_PLURAL ) ); - SetCustomUnitText( aStr ); - - // Groesse setzen - aStr.AppendAscii( RTL_CONSTASCII_STRINGPARAM( "XXX" ) ); - Size aSize( GetTextWidth( aStr )+20, GetTextHeight()+6 ); - - - SetSizePixel( aSize ); - - // Parameter des MetricFields setzen - SetUnit( FUNIT_CUSTOM ); - SetMin( 1 ); - SetFirst( 1 ); - SetMax( 15 ); - SetLast( 15 ); - SetSpinSize( 1 ); - SetDecimalDigits( 0 ); - Show(); -} - -// ----------------------------------------------------------------------- - -SdPagesField::~SdPagesField() -{ -} - -// ----------------------------------------------------------------------- - -void SdPagesField::UpdatePagesField( const SfxUInt16Item* pItem ) -{ - if( pItem ) - { - long nValue = (long) pItem->GetValue(); - SetValue( nValue ); - if( nValue == 1 ) - SetCustomUnitText( String( SdResId( STR_SLIDE_SINGULAR ) ) ); - else - SetCustomUnitText( String( SdResId( STR_SLIDE_PLURAL ) ) ); - } - else - SetText( String() ); -} - -// ----------------------------------------------------------------------- - -void SdPagesField::Modify() -{ - SfxUInt16Item aItem( SID_PAGES_PER_ROW, (sal_uInt16) GetValue() ); - - ::uno::Any a; - ::uno::Sequence< ::beans::PropertyValue > aArgs( 1 ); - aArgs[0].Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "PagesPerRow" )); - aItem.QueryValue( a ); - aArgs[0].Value = a; - SfxToolBoxControl::Dispatch( ::uno::Reference< ::frame::XDispatchProvider >( m_xFrame->getController(), ::uno::UNO_QUERY ), - rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( ".uno:PagesPerRow" )), - aArgs ); -/* - rBindings.GetDispatcher()->Execute( - SID_PAGES_PER_ROW, SFX_CALLMODE_SLOT | SFX_CALLMODE_RECORD, &aItem, 0L, 0L ); -*/ -} - -/************************************************************************* -|* -|* SdTbxCtlDiaPages -|* -\************************************************************************/ - -SdTbxCtlDiaPages::SdTbxCtlDiaPages( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx ) : - SfxToolBoxControl( nSlotId, nId, rTbx ) -{ -} - -//======================================================================== - -SdTbxCtlDiaPages::~SdTbxCtlDiaPages() -{ -} - -//======================================================================== - -void SdTbxCtlDiaPages::StateChanged( sal_uInt16, - SfxItemState eState, const SfxPoolItem* pState ) -{ - SdPagesField* pFld = (SdPagesField*) GetToolBox().GetItemWindow( GetId() ); - DBG_ASSERT( pFld, "Window not found" ); - - if ( eState == SFX_ITEM_DISABLED ) - { - pFld->Disable(); - pFld->SetText( String() ); - } - else - { - pFld->Enable(); - - const SfxUInt16Item* pItem = 0; - if ( eState == SFX_ITEM_AVAILABLE ) - { - pItem = dynamic_cast< const SfxUInt16Item* >( pState ); - DBG_ASSERT( pItem, "sd::SdTbxCtlDiaPages::StateChanged(), wrong item type!" ); - } - - pFld->UpdatePagesField( pItem ); - } -} - -//======================================================================== - -Window* SdTbxCtlDiaPages::CreateItemWindow( Window* pParent ) -{ - return new SdPagesField( pParent, m_xFrame ); -} - - - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |