Files
libreoffice/forms/source/component/GroupBox.cxx

174 lines
6.5 KiB
C++
Raw Normal View History

2000-09-18 15:33:13 +00:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2000-09-18 15:33:13 +00:00
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
2000-09-18 15:33:13 +00:00
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 15:33:13 +00:00
*
* This file is part of OpenOffice.org.
2000-09-18 15:33:13 +00:00
*
* 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.
2000-09-18 15:33:13 +00:00
*
* 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).
2000-09-18 15:33:13 +00:00
*
* 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.
2000-09-18 15:33:13 +00:00
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_forms.hxx"
2000-09-18 15:33:13 +00:00
#include "GroupBox.hxx"
#include "property.hxx"
#include "property.hrc"
#include "services.hxx"
#include <tools/debug.hxx>
//.........................................................................
namespace frm
{
2000-11-23 07:48:15 +00:00
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::sdb;
using namespace ::com::sun::star::sdbc;
using namespace ::com::sun::star::sdbcx;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::container;
using namespace ::com::sun::star::form;
using namespace ::com::sun::star::awt;
using namespace ::com::sun::star::io;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::util;
2000-09-18 15:33:13 +00:00
//==================================================================
// OGroupBoxModel
//==================================================================
//------------------------------------------------------------------
2000-11-23 07:48:15 +00:00
InterfaceRef SAL_CALL OGroupBoxModel_CreateInstance(const Reference<starlang::XMultiServiceFactory>& _rxFactory) throw (RuntimeException)
2000-09-18 15:33:13 +00:00
{
return *(new OGroupBoxModel(_rxFactory));
}
//------------------------------------------------------------------
DBG_NAME( OGroupBoxModel )
2000-09-18 15:33:13 +00:00
//------------------------------------------------------------------
2000-11-23 07:48:15 +00:00
OGroupBoxModel::OGroupBoxModel(const Reference<starlang::XMultiServiceFactory>& _rxFactory)
2000-09-18 15:33:13 +00:00
:OControlModel(_rxFactory, VCL_CONTROLMODEL_GROUPBOX, VCL_CONTROL_GROUPBOX)
{
DBG_CTOR( OGroupBoxModel, NULL );
2000-11-23 07:48:15 +00:00
m_nClassId = FormComponentType::GROUPBOX;
2000-09-18 15:33:13 +00:00
}
//------------------------------------------------------------------
OGroupBoxModel::OGroupBoxModel( const OGroupBoxModel* _pOriginal, const Reference<starlang::XMultiServiceFactory>& _rxFactory )
:OControlModel( _pOriginal, _rxFactory )
{
DBG_CTOR( OGroupBoxModel, NULL );
}
2000-09-18 15:33:13 +00:00
// XServiceInfo
//------------------------------------------------------------------------------
StringSequence SAL_CALL OGroupBoxModel::getSupportedServiceNames() throw(RuntimeException)
2000-09-18 15:33:13 +00:00
{
StringSequence aSupported = OControlModel::getSupportedServiceNames();
aSupported.realloc(aSupported.getLength() + 1);
::rtl::OUString* pArray = aSupported.getArray();
pArray[aSupported.getLength()-1] = FRM_SUN_COMPONENT_GROUPBOX;
return aSupported;
}
//------------------------------------------------------------------
OGroupBoxModel::~OGroupBoxModel()
{
DBG_DTOR( OGroupBoxModel, NULL );
2000-09-18 15:33:13 +00:00
}
//------------------------------------------------------------------------------
IMPLEMENT_DEFAULT_CLONING( OGroupBoxModel )
2000-09-18 15:33:13 +00:00
//------------------------------------------------------------------------------
void OGroupBoxModel::describeAggregateProperties( Sequence< Property >& _rAggregateProps ) const
2000-09-18 15:33:13 +00:00
{
OControlModel::describeAggregateProperties( _rAggregateProps );
// don't want to have the TabStop property
RemoveProperty(_rAggregateProps, PROPERTY_TABSTOP);
2000-09-18 15:33:13 +00:00
}
//------------------------------------------------------------------------------
2000-11-23 07:48:15 +00:00
::rtl::OUString SAL_CALL OGroupBoxModel::getServiceName() throw(RuntimeException)
2000-09-18 15:33:13 +00:00
{
return FRM_COMPONENT_GROUPBOX; // old (non-sun) name for compatibility !
}
//------------------------------------------------------------------------------
void SAL_CALL OGroupBoxModel::write(const Reference< XObjectOutputStream>& _rxOutStream)
throw(IOException, RuntimeException)
2000-09-18 15:33:13 +00:00
{
OControlModel::write(_rxOutStream);
// Version
_rxOutStream->writeShort(0x0002);
writeHelpTextCompatibly(_rxOutStream);
2000-09-18 15:33:13 +00:00
}
//------------------------------------------------------------------------------
void SAL_CALL OGroupBoxModel::read(const Reference< XObjectInputStream>& _rxInStream) throw(IOException, RuntimeException)
2000-09-18 15:33:13 +00:00
{
OControlModel::read( _rxInStream );
// Version
sal_uInt16 nVersion = _rxInStream->readShort();
DBG_ASSERT(nVersion > 0, "OGroupBoxModel::read : version 0 ? this should never have been written !");
// ups, ist das Englisch richtig ? ;)
if (nVersion == 2)
readHelpTextCompatibly(_rxInStream);
2000-09-18 15:33:13 +00:00
if (nVersion > 0x0002)
{
DBG_ERROR("OGroupBoxModel::read : unknown version !");
}
};
//==================================================================
// OGroupBoxControl
//==================================================================
//------------------------------------------------------------------
2000-11-23 07:48:15 +00:00
InterfaceRef SAL_CALL OGroupBoxControl_CreateInstance(const Reference<starlang::XMultiServiceFactory>& _rxFactory) throw (RuntimeException)
2000-09-18 15:33:13 +00:00
{
return *(new OGroupBoxControl(_rxFactory));
}
//------------------------------------------------------------------------------
2000-11-23 07:48:15 +00:00
OGroupBoxControl::OGroupBoxControl(const Reference<starlang::XMultiServiceFactory>& _rxFactory)
2000-09-18 15:33:13 +00:00
:OControl(_rxFactory, VCL_CONTROL_GROUPBOX)
{
}
//------------------------------------------------------------------------------
StringSequence SAL_CALL OGroupBoxControl::getSupportedServiceNames() throw(RuntimeException)
2000-09-18 15:33:13 +00:00
{
StringSequence aSupported = OControl::getSupportedServiceNames();
aSupported.realloc(aSupported.getLength() + 1);
::rtl::OUString* pArray = aSupported.getArray();
pArray[aSupported.getLength()-1] = FRM_SUN_CONTROL_GROUPBOX;
return aSupported;
}
//.........................................................................
}
//.........................................................................