1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove 29*cdf0e10cSrcweir #include "precompiled_dbaccess.hxx" 30*cdf0e10cSrcweir 31*cdf0e10cSrcweir #ifndef DBAUI_COLUMNMODEL_HXX 32*cdf0e10cSrcweir #include "ColumnModel.hxx" 33*cdf0e10cSrcweir #endif 34*cdf0e10cSrcweir #ifndef _COM_SUN_STAR_AWT_FONTRELIEF_HPP_ 35*cdf0e10cSrcweir #include <com/sun/star/awt/FontRelief.hpp> 36*cdf0e10cSrcweir #endif 37*cdf0e10cSrcweir #ifndef _COM_SUN_STAR_AWT_FONTEMPHASISMARK_HPP_ 38*cdf0e10cSrcweir #include <com/sun/star/awt/FontEmphasisMark.hpp> 39*cdf0e10cSrcweir #endif 40*cdf0e10cSrcweir #ifndef _COM_SUN_STAR_BEANS_PROPERTYATTRIBUTE_HPP_ 41*cdf0e10cSrcweir #include <com/sun/star/beans/PropertyAttribute.hpp> 42*cdf0e10cSrcweir #endif 43*cdf0e10cSrcweir 44*cdf0e10cSrcweir #ifndef _CPPUHELPER_QUERYINTERFACE_HXX_ 45*cdf0e10cSrcweir #include <cppuhelper/queryinterface.hxx> 46*cdf0e10cSrcweir #endif 47*cdf0e10cSrcweir #ifndef _COMPHELPER_EXTRACT_HXX_ 48*cdf0e10cSrcweir #include <comphelper/extract.hxx> 49*cdf0e10cSrcweir #endif 50*cdf0e10cSrcweir #ifndef DBACCESS_SHARED_DBUSTRINGS_HRC 51*cdf0e10cSrcweir #include "dbustrings.hrc" 52*cdf0e10cSrcweir #endif 53*cdf0e10cSrcweir #ifndef _DBU_REGHELPER_HXX_ 54*cdf0e10cSrcweir #include "dbu_reghelper.hxx" 55*cdf0e10cSrcweir #endif 56*cdf0e10cSrcweir #ifndef _TOOLKIT_UNOHLP_HXX 57*cdf0e10cSrcweir #include <toolkit/helper/vclunohelper.hxx> 58*cdf0e10cSrcweir #endif 59*cdf0e10cSrcweir #ifndef _COMPHELPER_PROPERTY_HXX_ 60*cdf0e10cSrcweir #include <comphelper/property.hxx> 61*cdf0e10cSrcweir #endif 62*cdf0e10cSrcweir 63*cdf0e10cSrcweir extern "C" void SAL_CALL createRegistryInfo_OColumnControlModel() 64*cdf0e10cSrcweir { 65*cdf0e10cSrcweir static ::dbaui::OMultiInstanceAutoRegistration< ::dbaui::OColumnControlModel> aAutoRegistration; 66*cdf0e10cSrcweir } 67*cdf0e10cSrcweir 68*cdf0e10cSrcweir //......................................................................... 69*cdf0e10cSrcweir namespace dbaui 70*cdf0e10cSrcweir { 71*cdf0e10cSrcweir //......................................................................... 72*cdf0e10cSrcweir using namespace ::com::sun::star; 73*cdf0e10cSrcweir using namespace ::com::sun::star::uno; 74*cdf0e10cSrcweir using namespace ::com::sun::star::beans; 75*cdf0e10cSrcweir using namespace ::com::sun::star::container; 76*cdf0e10cSrcweir using namespace ::com::sun::star::awt; 77*cdf0e10cSrcweir using namespace ::com::sun::star::io; 78*cdf0e10cSrcweir using namespace ::com::sun::star::lang; 79*cdf0e10cSrcweir using namespace ::com::sun::star::util; 80*cdf0e10cSrcweir 81*cdf0e10cSrcweir 82*cdf0e10cSrcweir DBG_NAME(OColumnControlModel) 83*cdf0e10cSrcweir //------------------------------------------------------------------ 84*cdf0e10cSrcweir OColumnControlModel::OColumnControlModel(const Reference<XMultiServiceFactory>& _rxFactory) 85*cdf0e10cSrcweir :OPropertyContainer(m_aBHelper) 86*cdf0e10cSrcweir ,OColumnControlModel_BASE(m_aMutex) 87*cdf0e10cSrcweir ,m_xORB(_rxFactory) 88*cdf0e10cSrcweir ,m_sDefaultControl(SERVICE_CONTROLDEFAULT) 89*cdf0e10cSrcweir ,m_bEnable(sal_True) 90*cdf0e10cSrcweir ,m_nBorder(0) 91*cdf0e10cSrcweir ,m_nWidth(50) 92*cdf0e10cSrcweir { 93*cdf0e10cSrcweir DBG_CTOR(OColumnControlModel,NULL); 94*cdf0e10cSrcweir registerProperties(); 95*cdf0e10cSrcweir } 96*cdf0e10cSrcweir // ----------------------------------------------------------------------------- 97*cdf0e10cSrcweir OColumnControlModel::OColumnControlModel(const OColumnControlModel* _pSource,const Reference<XMultiServiceFactory>& _rxFactory) 98*cdf0e10cSrcweir :OPropertyContainer(m_aBHelper) 99*cdf0e10cSrcweir ,OColumnControlModel_BASE(m_aMutex) 100*cdf0e10cSrcweir ,m_xORB(_rxFactory) 101*cdf0e10cSrcweir ,m_sDefaultControl(_pSource->m_sDefaultControl) 102*cdf0e10cSrcweir ,m_aTabStop(_pSource->m_aTabStop) 103*cdf0e10cSrcweir ,m_bEnable(_pSource->m_bEnable) 104*cdf0e10cSrcweir ,m_nBorder(_pSource->m_nBorder) 105*cdf0e10cSrcweir ,m_nWidth(50) 106*cdf0e10cSrcweir { 107*cdf0e10cSrcweir DBG_CTOR(OColumnControlModel,NULL); 108*cdf0e10cSrcweir registerProperties(); 109*cdf0e10cSrcweir } 110*cdf0e10cSrcweir // ----------------------------------------------------------------------------- 111*cdf0e10cSrcweir OColumnControlModel::~OColumnControlModel() 112*cdf0e10cSrcweir { 113*cdf0e10cSrcweir DBG_DTOR(OColumnControlModel,NULL); 114*cdf0e10cSrcweir if ( !OColumnControlModel_BASE::rBHelper.bDisposed && !OColumnControlModel_BASE::rBHelper.bInDispose ) 115*cdf0e10cSrcweir { 116*cdf0e10cSrcweir acquire(); 117*cdf0e10cSrcweir dispose(); 118*cdf0e10cSrcweir } 119*cdf0e10cSrcweir } 120*cdf0e10cSrcweir // ----------------------------------------------------------------------------- 121*cdf0e10cSrcweir void OColumnControlModel::registerProperties() 122*cdf0e10cSrcweir { 123*cdf0e10cSrcweir registerProperty( PROPERTY_ACTIVE_CONNECTION, PROPERTY_ID_ACTIVE_CONNECTION, PropertyAttribute::TRANSIENT | PropertyAttribute::BOUND, 124*cdf0e10cSrcweir &m_xConnection, ::getCppuType( &m_xConnection ) ); 125*cdf0e10cSrcweir Any a; 126*cdf0e10cSrcweir a <<= m_xColumn; 127*cdf0e10cSrcweir // registerMayBeVoidProperty( PROPERTY_COLUMN, PROPERTY_ID_COLUMN, PropertyAttribute::TRANSIENT | PropertyAttribute::BOUND| PropertyAttribute::MAYBEVOID, 128*cdf0e10cSrcweir // &a, ::getCppuType( &m_xColumn ) ); 129*cdf0e10cSrcweir registerProperty( PROPERTY_COLUMN, PROPERTY_ID_COLUMN, PropertyAttribute::TRANSIENT | PropertyAttribute::BOUND, 130*cdf0e10cSrcweir &m_xColumn, ::getCppuType( &m_xColumn ) ); 131*cdf0e10cSrcweir 132*cdf0e10cSrcweir registerMayBeVoidProperty( PROPERTY_TABSTOP, PROPERTY_ID_TABSTOP, PropertyAttribute::BOUND | PropertyAttribute::MAYBEVOID, 133*cdf0e10cSrcweir &m_aTabStop, ::getCppuType( static_cast<sal_Int16*>(NULL) ) ); 134*cdf0e10cSrcweir registerProperty( PROPERTY_DEFAULTCONTROL, PROPERTY_ID_DEFAULTCONTROL, PropertyAttribute::BOUND, 135*cdf0e10cSrcweir &m_sDefaultControl, ::getCppuType( &m_sDefaultControl ) ); 136*cdf0e10cSrcweir registerProperty( PROPERTY_ENABLED, PROPERTY_ID_ENABLED, PropertyAttribute::BOUND, 137*cdf0e10cSrcweir &m_bEnable, ::getCppuType( &m_bEnable ) ); 138*cdf0e10cSrcweir registerProperty( PROPERTY_BORDER, PROPERTY_ID_BORDER, PropertyAttribute::BOUND, 139*cdf0e10cSrcweir &m_nBorder, ::getCppuType( &m_nBorder ) ); 140*cdf0e10cSrcweir registerProperty( PROPERTY_EDIT_WIDTH, PROPERTY_ID_EDIT_WIDTH, PropertyAttribute::BOUND, 141*cdf0e10cSrcweir &m_nWidth, ::getCppuType( &m_nWidth ) ); 142*cdf0e10cSrcweir } 143*cdf0e10cSrcweir // XCloneable 144*cdf0e10cSrcweir //------------------------------------------------------------------------------ 145*cdf0e10cSrcweir Reference< XCloneable > SAL_CALL OColumnControlModel::createClone( ) throw (RuntimeException) 146*cdf0e10cSrcweir { 147*cdf0e10cSrcweir return new OColumnControlModel( this, getORB() ); 148*cdf0e10cSrcweir } 149*cdf0e10cSrcweir //------------------------------------------------------------------------------ 150*cdf0e10cSrcweir IMPLEMENT_TYPEPROVIDER2(OColumnControlModel,OColumnControlModel_BASE,comphelper::OPropertyContainer) 151*cdf0e10cSrcweir IMPLEMENT_PROPERTYCONTAINER_DEFAULTS(OColumnControlModel) 152*cdf0e10cSrcweir IMPLEMENT_SERVICE_INFO2_STATIC(OColumnControlModel,"com.sun.star.comp.dbu.OColumnControlModel","com.sun.star.awt.UnoControlModel","com.sun.star.sdb.ColumnDescriptorControlModel") 153*cdf0e10cSrcweir IMPLEMENT_FORWARD_REFCOUNT( OColumnControlModel, OColumnControlModel_BASE ) 154*cdf0e10cSrcweir //------------------------------------------------------------------------------ 155*cdf0e10cSrcweir Any SAL_CALL OColumnControlModel::queryInterface( const Type& _rType ) throw (RuntimeException) 156*cdf0e10cSrcweir { 157*cdf0e10cSrcweir return OColumnControlModel_BASE::queryInterface( _rType ); 158*cdf0e10cSrcweir } 159*cdf0e10cSrcweir // ----------------------------------------------------------------------------- 160*cdf0e10cSrcweir // com::sun::star::XAggregation 161*cdf0e10cSrcweir Any SAL_CALL OColumnControlModel::queryAggregation( const Type& rType ) throw(RuntimeException) 162*cdf0e10cSrcweir { 163*cdf0e10cSrcweir Any aRet(OColumnControlModel_BASE::queryAggregation(rType)); 164*cdf0e10cSrcweir if (!aRet.hasValue()) 165*cdf0e10cSrcweir aRet = comphelper::OPropertyContainer::queryInterface(rType); 166*cdf0e10cSrcweir return aRet; 167*cdf0e10cSrcweir } 168*cdf0e10cSrcweir //------------------------------------------------------------------------------ 169*cdf0e10cSrcweir ::rtl::OUString SAL_CALL OColumnControlModel::getServiceName() throw ( RuntimeException) 170*cdf0e10cSrcweir { 171*cdf0e10cSrcweir return ::rtl::OUString(); 172*cdf0e10cSrcweir } 173*cdf0e10cSrcweir //------------------------------------------------------------------------------ 174*cdf0e10cSrcweir void OColumnControlModel::write(const Reference<XObjectOutputStream>& /*_rxOutStream*/) throw ( ::com::sun::star::io::IOException, RuntimeException) 175*cdf0e10cSrcweir { 176*cdf0e10cSrcweir // TODO 177*cdf0e10cSrcweir } 178*cdf0e10cSrcweir 179*cdf0e10cSrcweir //------------------------------------------------------------------------------ 180*cdf0e10cSrcweir void OColumnControlModel::read(const Reference<XObjectInputStream>& /*_rxInStream*/) throw ( ::com::sun::star::io::IOException, RuntimeException) 181*cdf0e10cSrcweir { 182*cdf0e10cSrcweir // TODO 183*cdf0e10cSrcweir } 184*cdf0e10cSrcweir 185*cdf0e10cSrcweir //......................................................................... 186*cdf0e10cSrcweir } // namespace dbaui 187*cdf0e10cSrcweir //......................................................................... 188*cdf0e10cSrcweir 189