8f69c50741
2005/09/05 13:56:00 rt 1.1.394.1: #i54170# Change license header: remove SISSL
93 lines
3.3 KiB
C++
93 lines
3.3 KiB
C++
/*************************************************************************
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* $RCSfile: basidectrlr.hxx,v $
|
|
*
|
|
* $Revision: 1.2 $
|
|
*
|
|
* last change: $Author: rt $ $Date: 2005-09-07 20:18:04 $
|
|
*
|
|
* The Contents of this file are made available subject to
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
|
*
|
|
*
|
|
* GNU Lesser General Public License Version 2.1
|
|
* =============================================
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
*
|
|
* This library 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 for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
* MA 02111-1307 USA
|
|
*
|
|
************************************************************************/
|
|
|
|
#ifndef _BASCTL_BASICIDECTRLR_HXX
|
|
#define _BASCTL_BASICIDECTRLR_HXX
|
|
|
|
#ifndef _COMPHELPER_BROADCASTHELPER_HXX_
|
|
#include <comphelper/broadcasthelper.hxx>
|
|
#endif
|
|
|
|
#ifndef _COMPHELPER_PROPERTYCONTAINER_HXX_
|
|
#include <comphelper/propertycontainer.hxx>
|
|
#endif
|
|
|
|
#ifndef _COMPHELPER_PROPERTY_ARRAY_HELPER_HXX_
|
|
#include <comphelper/proparrhlp.hxx>
|
|
#endif
|
|
|
|
#ifndef _SFX_SFXBASECONTROLLER_HXX_
|
|
#include <sfx2/sfxbasecontroller.hxx>
|
|
#endif
|
|
|
|
|
|
class BasicIDEShell;
|
|
|
|
|
|
class BasicIDEController :public comphelper::OMutexAndBroadcastHelper
|
|
,public ::comphelper::OPropertyContainer
|
|
,public ::comphelper::OPropertyArrayUsageHelper< BasicIDEController >
|
|
,public SfxBaseController
|
|
{
|
|
private:
|
|
// properties
|
|
sal_Int32 m_nIconId;
|
|
|
|
public:
|
|
BasicIDEController( BasicIDEShell* pViewShell );
|
|
virtual ~BasicIDEController();
|
|
|
|
// XInterface
|
|
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException);
|
|
virtual void SAL_CALL acquire() throw();
|
|
virtual void SAL_CALL release() throw();
|
|
|
|
// XTypeProvider ( ::SfxBaseController )
|
|
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw( ::com::sun::star::uno::RuntimeException );
|
|
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw( ::com::sun::star::uno::RuntimeException );
|
|
|
|
// XPropertySet
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo( ) throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
// OPropertySetHelper
|
|
virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper();
|
|
|
|
protected:
|
|
// OPropertyArrayUsageHelper
|
|
virtual ::cppu::IPropertyArrayHelper* createArrayHelper( ) const;
|
|
};
|
|
|
|
#endif // _BASCTL_BASICIDECTRLR_HXX
|
|
|