212 lines
8.6 KiB
C++
212 lines
8.6 KiB
C++
![]() |
/*************************************************************************
|
||
|
*
|
||
|
* $RCSfile: ColumnModel.cxx,v $
|
||
|
*
|
||
|
* $Revision: 1.2 $
|
||
|
*
|
||
|
* last change: $Author: kz $ $Date: 2004-05-19 13:57:01 $
|
||
|
*
|
||
|
* The Contents of this file are made available subject to the terms of
|
||
|
* either of the following licenses
|
||
|
*
|
||
|
* - GNU Lesser General Public License Version 2.1
|
||
|
* - Sun Industry Standards Source License Version 1.1
|
||
|
*
|
||
|
* Sun Microsystems Inc., October, 2000
|
||
|
*
|
||
|
* GNU Lesser General Public License Version 2.1
|
||
|
* =============================================
|
||
|
* Copyright 2000 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
|
||
|
*
|
||
|
*
|
||
|
* Sun Industry Standards Source License Version 1.1
|
||
|
* =================================================
|
||
|
* The contents of this file are subject to the Sun Industry Standards
|
||
|
* Source License Version 1.1 (the "License"); You may not use this file
|
||
|
* except in compliance with the License. You may obtain a copy of the
|
||
|
* License at http://www.openoffice.org/license.html.
|
||
|
*
|
||
|
* Software provided under this License is provided on an "AS IS" basis,
|
||
|
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
|
||
|
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
|
||
|
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
|
||
|
* See the License for the specific provisions governing your rights and
|
||
|
* obligations concerning the Software.
|
||
|
*
|
||
|
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
|
||
|
*
|
||
|
* Copyright: 2000 by Sun Microsystems, Inc.
|
||
|
*
|
||
|
* All Rights Reserved.
|
||
|
*
|
||
|
* Contributor(s): _______________________________________
|
||
|
*
|
||
|
*
|
||
|
************************************************************************/
|
||
|
|
||
|
#ifndef DBAUI_COLUMNMODEL_HXX
|
||
|
#include "ColumnModel.hxx"
|
||
|
#endif
|
||
|
#ifndef _COM_SUN_STAR_AWT_FONTRELIEF_HPP_
|
||
|
#include <com/sun/star/awt/FontRelief.hpp>
|
||
|
#endif
|
||
|
#ifndef _COM_SUN_STAR_AWT_FONTEMPHASISMARK_HPP_
|
||
|
#include <com/sun/star/awt/FontEmphasisMark.hpp>
|
||
|
#endif
|
||
|
|
||
|
#ifndef _CPPUHELPER_QUERYINTERFACE_HXX_
|
||
|
#include <cppuhelper/queryinterface.hxx>
|
||
|
#endif
|
||
|
#ifndef _COMPHELPER_EXTRACT_HXX_
|
||
|
#include <comphelper/extract.hxx>
|
||
|
#endif
|
||
|
#ifndef DBACCESS_SHARED_DBUSTRINGS_HRC
|
||
|
#include "dbustrings.hrc"
|
||
|
#endif
|
||
|
#ifndef _DBU_REGHELPER_HXX_
|
||
|
#include "dbu_reghelper.hxx"
|
||
|
#endif
|
||
|
#ifndef _TOOLKIT_UNOHLP_HXX
|
||
|
#include <toolkit/helper/vclunohelper.hxx>
|
||
|
#endif
|
||
|
#ifndef _COMPHELPER_PROPERTY_HXX_
|
||
|
#include <comphelper/property.hxx>
|
||
|
#endif
|
||
|
#ifndef _CONNECTIVITY_SDBCX_COLUMN_HXX_
|
||
|
#include <connectivity/sdbcx/VColumn.hxx>
|
||
|
#endif
|
||
|
|
||
|
extern "C" void SAL_CALL createRegistryInfo_OColumnControlModel()
|
||
|
{
|
||
|
static ::dbaui::OMultiInstanceAutoRegistration< ::dbaui::OColumnControlModel> aAutoRegistration;
|
||
|
}
|
||
|
|
||
|
//.........................................................................
|
||
|
namespace dbaui
|
||
|
{
|
||
|
//.........................................................................
|
||
|
using namespace ::com::sun::star;
|
||
|
using namespace ::com::sun::star::uno;
|
||
|
using namespace ::com::sun::star::beans;
|
||
|
using namespace ::com::sun::star::container;
|
||
|
using namespace ::com::sun::star::awt;
|
||
|
using namespace ::com::sun::star::io;
|
||
|
using namespace ::com::sun::star::lang;
|
||
|
using namespace ::com::sun::star::util;
|
||
|
|
||
|
|
||
|
DBG_NAME(OColumnControlModel)
|
||
|
//------------------------------------------------------------------
|
||
|
OColumnControlModel::OColumnControlModel(const Reference<XMultiServiceFactory>& _rxFactory)
|
||
|
:OColumnControlModel_BASE(m_aMutex)
|
||
|
,OPropertyContainer(m_aBHelper)
|
||
|
,m_sDefaultControl(SERVICE_CONTROLDEFAULT)
|
||
|
,m_nBorder(0)
|
||
|
,m_bEnable(sal_True)
|
||
|
,m_xORB(_rxFactory)
|
||
|
{
|
||
|
DBG_CTOR(OColumnControlModel,NULL);
|
||
|
registerProperties();
|
||
|
}
|
||
|
// -----------------------------------------------------------------------------
|
||
|
OColumnControlModel::OColumnControlModel(const OColumnControlModel* _pSource,const Reference<XMultiServiceFactory>& _rxFactory)
|
||
|
:OColumnControlModel_BASE(m_aMutex)
|
||
|
,OPropertyContainer(m_aBHelper)
|
||
|
,m_sDefaultControl(_pSource->m_sDefaultControl)
|
||
|
,m_nBorder(_pSource->m_nBorder)
|
||
|
,m_bEnable(_pSource->m_bEnable)
|
||
|
,m_aTabStop(_pSource->m_aTabStop)
|
||
|
,m_xORB(_rxFactory)
|
||
|
{
|
||
|
DBG_CTOR(OColumnControlModel,NULL);
|
||
|
registerProperties();
|
||
|
}
|
||
|
// -----------------------------------------------------------------------------
|
||
|
OColumnControlModel::~OColumnControlModel()
|
||
|
{
|
||
|
if ( !OColumnControlModel_BASE::rBHelper.bDisposed )
|
||
|
{
|
||
|
acquire();
|
||
|
dispose();
|
||
|
}
|
||
|
|
||
|
DBG_DTOR(OColumnControlModel,NULL);
|
||
|
}
|
||
|
// -----------------------------------------------------------------------------
|
||
|
void OColumnControlModel::registerProperties()
|
||
|
{
|
||
|
registerProperty( PROPERTY_ACTIVECONNECTION, PROPERTY_ID_ACTIVECONNECTION, PropertyAttribute::TRANSIENT | PropertyAttribute::BOUND,
|
||
|
&m_xConnection, ::getCppuType( &m_xConnection ) );
|
||
|
registerProperty( PROPERTY_COLUMN, PROPERTY_ID_COLUMN, PropertyAttribute::TRANSIENT | PropertyAttribute::BOUND,
|
||
|
&m_xColumn, ::getCppuType( &m_xColumn ) );
|
||
|
registerMayBeVoidProperty( PROPERTY_TABSTOP, PROPERTY_ID_TABSTOP, PropertyAttribute::BOUND | PropertyAttribute::MAYBEVOID,
|
||
|
&m_aTabStop, ::getCppuType( &m_aTabStop ) );
|
||
|
registerProperty( PROPERTY_DEFAULTCONTROL, PROPERTY_ID_DEFAULTCONTROL, PropertyAttribute::BOUND,
|
||
|
&m_sDefaultControl, ::getCppuType( &m_sDefaultControl ) );
|
||
|
registerProperty( PROPERTY_ENABLED, PROPERTY_ID_ENABLED, PropertyAttribute::BOUND,
|
||
|
&m_bEnable, ::getCppuType( &m_bEnable ) );
|
||
|
registerProperty( PROPERTY_BORDER, PROPERTY_ID_BORDER, PropertyAttribute::BOUND,
|
||
|
&m_nBorder, ::getCppuType( &m_nBorder ) );
|
||
|
}
|
||
|
// XCloneable
|
||
|
//------------------------------------------------------------------------------
|
||
|
Reference< XCloneable > SAL_CALL OColumnControlModel::createClone( ) throw (RuntimeException)
|
||
|
{
|
||
|
return new OColumnControlModel( this, getORB() );
|
||
|
}
|
||
|
//------------------------------------------------------------------------------
|
||
|
IMPLEMENT_TYPEPROVIDER2(OColumnControlModel,OColumnControlModel_BASE,comphelper::OPropertyContainer)
|
||
|
IMPLEMENT_PROPERTYCONTAINER_DEFAULTS(OColumnControlModel)
|
||
|
IMPLEMENT_SERVICE_INFO2_STATIC(OColumnControlModel,"com.sun.star.comp.dbu.OColumnControlModel","com.sun.star.awt.UnoControlModel","com.sun.star.sdb.ColumnDescriptorControlModel")
|
||
|
IMPLEMENT_FORWARD_REFCOUNT( OColumnControlModel, OColumnControlModel_BASE )
|
||
|
//------------------------------------------------------------------------------
|
||
|
Any SAL_CALL OColumnControlModel::queryInterface( const Type& _rType ) throw (RuntimeException)
|
||
|
{
|
||
|
return OColumnControlModel_BASE::queryInterface( _rType );
|
||
|
}
|
||
|
// -----------------------------------------------------------------------------
|
||
|
// com::sun::star::XAggregation
|
||
|
Any SAL_CALL OColumnControlModel::queryAggregation( const Type& rType ) throw(RuntimeException)
|
||
|
{
|
||
|
Any aRet(OColumnControlModel_BASE::queryAggregation(rType));
|
||
|
if (!aRet.hasValue())
|
||
|
aRet = comphelper::OPropertyContainer::queryInterface(rType);
|
||
|
return aRet;
|
||
|
}
|
||
|
//------------------------------------------------------------------------------
|
||
|
::rtl::OUString SAL_CALL OColumnControlModel::getServiceName() throw ( RuntimeException)
|
||
|
{
|
||
|
return ::rtl::OUString();
|
||
|
}
|
||
|
//------------------------------------------------------------------------------
|
||
|
void OColumnControlModel::write(const Reference<XObjectOutputStream>& _rxOutStream) throw ( ::com::sun::star::io::IOException, RuntimeException)
|
||
|
{
|
||
|
// TODO
|
||
|
}
|
||
|
|
||
|
//------------------------------------------------------------------------------
|
||
|
void OColumnControlModel::read(const Reference<XObjectInputStream>& _rxInStream) throw ( ::com::sun::star::io::IOException, RuntimeException)
|
||
|
{
|
||
|
// TODO
|
||
|
}
|
||
|
|
||
|
//.........................................................................
|
||
|
} // namespace dbaui
|
||
|
//.........................................................................
|
||
|
|