2000-09-18 15:33:13 +00:00
|
|
|
|
/*************************************************************************
|
|
|
|
|
*
|
|
|
|
|
* $RCSfile: ListBox.cxx,v $
|
|
|
|
|
*
|
2002-12-02 08:56:36 +00:00
|
|
|
|
* $Revision: 1.26 $
|
2000-09-18 15:33:13 +00:00
|
|
|
|
*
|
2002-12-02 08:56:36 +00:00
|
|
|
|
* last change: $Author: fs $ $Date: 2002-12-02 09:56:34 $
|
2000-09-18 15:33:13 +00:00
|
|
|
|
*
|
|
|
|
|
* 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 _FORMS_LISTBOX_HXX_
|
|
|
|
|
#include "ListBox.hxx"
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef _FRM_PROPERTY_HXX_
|
|
|
|
|
#include "property.hxx"
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef _FRM_PROPERTY_HRC_
|
|
|
|
|
#include "property.hrc"
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef _FRM_SERVICES_HXX_
|
|
|
|
|
#include "services.hxx"
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef _TOOLS_DEBUG_HXX
|
|
|
|
|
#include <tools/debug.hxx>
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef _CPPUHELPER_QUERYINTERFACE_HXX_
|
|
|
|
|
#include <cppuhelper/queryinterface.hxx>
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef _FRM_RESOURCE_HXX_
|
|
|
|
|
#include "frm_resource.hxx"
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef _FRM_RESOURCE_HRC_
|
|
|
|
|
#include "frm_resource.hrc"
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef _FORMS_BASELISTBOX_HXX_
|
|
|
|
|
#include "BaseListBox.hxx"
|
|
|
|
|
#endif
|
2000-10-19 10:52:20 +00:00
|
|
|
|
#ifndef _COMPHELPER_CONTAINER_HXX_
|
|
|
|
|
#include <comphelper/container.hxx>
|
2000-09-18 15:33:13 +00:00
|
|
|
|
#endif
|
2000-10-19 10:52:20 +00:00
|
|
|
|
#ifndef _COMPHELPER_DATETIME_HXX_
|
|
|
|
|
#include <comphelper/datetime.hxx>
|
2000-09-18 15:33:13 +00:00
|
|
|
|
#endif
|
2000-10-19 10:52:20 +00:00
|
|
|
|
#ifndef _COMPHELPER_NUMBERS_HXX_
|
|
|
|
|
#include <comphelper/numbers.hxx>
|
2000-09-18 15:33:13 +00:00
|
|
|
|
#endif
|
2000-10-19 10:52:20 +00:00
|
|
|
|
#ifndef _CONNECTIVITY_DBTOOLS_HXX_
|
|
|
|
|
#include <connectivity/dbtools.hxx>
|
2000-09-18 15:33:13 +00:00
|
|
|
|
#endif
|
2000-10-19 10:52:20 +00:00
|
|
|
|
#ifndef _DBHELPER_DBCONVERSION_HXX_
|
|
|
|
|
#include <connectivity/dbconversion.hxx>
|
2000-09-18 15:33:13 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2001-04-02 12:32:00 +00:00
|
|
|
|
#ifndef _COM_SUN_STAR_UTIL_XNUMBERFORMATTYPES_HPP_
|
|
|
|
|
#include <com/sun/star/util/XNumberFormatTypes.hpp>
|
|
|
|
|
#endif
|
2000-09-18 15:33:13 +00:00
|
|
|
|
#ifndef _COM_SUN_STAR_SDB_SQLERROREVENT_HPP_
|
|
|
|
|
#include <com/sun/star/sdb/SQLErrorEvent.hpp>
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef _COM_SUN_STAR_SDBC_XROWSET_HPP_
|
|
|
|
|
#include <com/sun/star/sdbc/XRowSet.hpp>
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef _COM_SUN_STAR_SDBC_DATATYPE_HPP_
|
|
|
|
|
#include <com/sun/star/sdbc/DataType.hpp>
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef _COM_SUN_STAR_CONTAINER_XINDEXACCESS_HPP_
|
|
|
|
|
#include <com/sun/star/container/XIndexAccess.hpp>
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef _COM_SUN_STAR_SDB_XSQLQUERYCOMPOSERFACTORY_HPP_
|
|
|
|
|
#include <com/sun/star/sdb/XSQLQueryComposerFactory.hpp>
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef _COM_SUN_STAR_SDB_XQUERIESSUPPLIER_HPP_
|
|
|
|
|
#include <com/sun/star/sdb/XQueriesSupplier.hpp>
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef _COM_SUN_STAR_UTIL_NUMBERFORMAT_HPP_
|
|
|
|
|
#include <com/sun/star/util/NumberFormat.hpp>
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef _COM_SUN_STAR_AWT_XLISTBOX_HPP_
|
|
|
|
|
#include <com/sun/star/awt/XListBox.hpp>
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef _COM_SUN_STAR_AWT_XWINDOW_HPP_
|
|
|
|
|
#include <com/sun/star/awt/XWindow.hpp>
|
|
|
|
|
#endif
|
2000-10-19 12:31:29 +00:00
|
|
|
|
#ifndef _COM_SUN_STAR_SDBC_XCONNECTION_HPP_
|
|
|
|
|
#include <com/sun/star/sdbc/XConnection.hpp>
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef _COM_SUN_STAR_SDB_SQLCONTEXT_HPP_
|
|
|
|
|
#include <com/sun/star/sdb/SQLContext.hpp>
|
|
|
|
|
#endif
|
2001-04-02 12:32:00 +00:00
|
|
|
|
#ifndef _COM_SUN_STAR_SDB_COMMANDTYPE_HPP_
|
|
|
|
|
#include <com/sun/star/sdb/CommandType.hpp>
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef _CONNECTIVITY_DBTOOLS_HXX_
|
|
|
|
|
#include <connectivity/dbtools.hxx>
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef _SV_SVAPP_HXX
|
|
|
|
|
#include <vcl/svapp.hxx>
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef _ISOLANG_HXX
|
|
|
|
|
#include <tools/isolang.hxx>
|
|
|
|
|
#endif
|
2000-10-19 12:31:29 +00:00
|
|
|
|
|
2000-09-18 15:33:13 +00:00
|
|
|
|
|
|
|
|
|
//.........................................................................
|
|
|
|
|
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;
|
2001-04-02 12:32:00 +00:00
|
|
|
|
using namespace ::dbtools;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
|
|
|
|
|
//==================================================================
|
|
|
|
|
//= OListBoxModel
|
|
|
|
|
//==================================================================
|
|
|
|
|
sal_Int32 OListBoxModel::nSelectHandle = -1;
|
|
|
|
|
//------------------------------------------------------------------
|
2000-11-23 07:48:15 +00:00
|
|
|
|
InterfaceRef SAL_CALL OListBoxModel_CreateInstance(const Reference<XMultiServiceFactory>& _rxFactory) throw (RuntimeException)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
return *(new OListBoxModel(_rxFactory));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Sequence< Type> OListBoxModel::_getTypes()
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
2001-08-28 13:31:10 +00:00
|
|
|
|
return ::comphelper::concatSequences(
|
|
|
|
|
OBoundControlModel::_getTypes(),
|
|
|
|
|
OListBoxModel_BASE::getTypes(),
|
|
|
|
|
OErrorBroadcaster::getTypes()
|
|
|
|
|
);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DBG_NAME(OListBoxModel);
|
|
|
|
|
//------------------------------------------------------------------
|
2000-11-23 07:48:15 +00:00
|
|
|
|
OListBoxModel::OListBoxModel(const Reference<XMultiServiceFactory>& _rxFactory)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
:OBoundControlModel(_rxFactory, VCL_CONTROLMODEL_LISTBOX, FRM_CONTROL_LISTBOX)
|
|
|
|
|
// use the old control name for compytibility reasons
|
2001-08-30 13:12:47 +00:00
|
|
|
|
,OErrorBroadcaster( OComponentHelper::rBHelper )
|
2000-09-18 15:33:13 +00:00
|
|
|
|
,m_aRefreshListeners(m_aMutex)
|
|
|
|
|
,m_bBoundComponent(sal_False)
|
|
|
|
|
,m_nNULLPos(-1)
|
|
|
|
|
{
|
|
|
|
|
DBG_CTOR(OListBoxModel,NULL);
|
|
|
|
|
|
2000-11-23 07:48:15 +00:00
|
|
|
|
m_nClassId = FormComponentType::LISTBOX;
|
|
|
|
|
m_eListSourceType = ListSourceType_VALUELIST;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
m_aBoundColumn <<= (sal_Int16)1;
|
|
|
|
|
m_sDataFieldConnectivityProperty = PROPERTY_SELECT_SEQ;
|
|
|
|
|
if (OListBoxModel::nSelectHandle == -1)
|
|
|
|
|
OListBoxModel::nSelectHandle = getOriginalHandle(PROPERTY_ID_SELECT_SEQ);
|
|
|
|
|
}
|
|
|
|
|
|
2002-12-02 08:56:36 +00:00
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
|
OListBoxModel::OListBoxModel( const OListBoxModel* _pOriginal, const Reference<XMultiServiceFactory>& _rxFactory )
|
|
|
|
|
:OBoundControlModel( _pOriginal, _rxFactory )
|
|
|
|
|
,OErrorBroadcaster( OComponentHelper::rBHelper )
|
|
|
|
|
,m_aRefreshListeners( m_aMutex )
|
|
|
|
|
,m_bBoundComponent(sal_False)
|
|
|
|
|
,m_nNULLPos(-1)
|
|
|
|
|
{
|
|
|
|
|
DBG_CTOR(OListBoxModel,NULL);
|
|
|
|
|
m_eListSourceType = _pOriginal->m_eListSourceType;
|
|
|
|
|
m_aBoundColumn = _pOriginal->m_aBoundColumn;
|
|
|
|
|
}
|
|
|
|
|
|
2000-09-18 15:33:13 +00:00
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
|
OListBoxModel::~OListBoxModel()
|
|
|
|
|
{
|
|
|
|
|
if (!OComponentHelper::rBHelper.bDisposed)
|
|
|
|
|
{
|
|
|
|
|
acquire();
|
|
|
|
|
dispose();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DBG_DTOR(OListBoxModel,NULL);
|
|
|
|
|
}
|
|
|
|
|
|
2002-12-02 08:56:36 +00:00
|
|
|
|
// XCloneable
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
IMPLEMENT_DEFAULT_CLONING( OListBoxModel )
|
|
|
|
|
|
2000-09-18 15:33:13 +00:00
|
|
|
|
// XServiceInfo
|
|
|
|
|
//------------------------------------------------------------------------------
|
2000-11-23 07:48:15 +00:00
|
|
|
|
StringSequence SAL_CALL OListBoxModel::getSupportedServiceNames() throw(RuntimeException)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
StringSequence aSupported = OBoundControlModel::getSupportedServiceNames();
|
|
|
|
|
aSupported.realloc(aSupported.getLength() + 2);
|
|
|
|
|
|
|
|
|
|
::rtl::OUString* pArray = aSupported.getArray();
|
2002-03-04 13:49:12 +00:00
|
|
|
|
pArray[aSupported.getLength()-2] = FRM_SUN_COMPONENT_DATABASE_LISTBOX;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
pArray[aSupported.getLength()-1] = FRM_SUN_COMPONENT_LISTBOX;
|
|
|
|
|
return aSupported;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Any SAL_CALL OListBoxModel::queryAggregation(const Type& _rType) throw (RuntimeException)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
2001-08-28 13:31:10 +00:00
|
|
|
|
Any aReturn = OBoundControlModel::queryAggregation( _rType );
|
2001-09-28 17:15:33 +00:00
|
|
|
|
if ( !aReturn.hasValue() )
|
|
|
|
|
aReturn = OListBoxModel_BASE::queryInterface( _rType );
|
|
|
|
|
if ( !aReturn.hasValue() )
|
|
|
|
|
aReturn = OErrorBroadcaster::queryInterface( _rType );
|
|
|
|
|
return aReturn;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// OComponentHelper
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
void OListBoxModel::disposing()
|
|
|
|
|
{
|
2001-08-28 13:31:10 +00:00
|
|
|
|
EventObject aEvt( static_cast< XWeak* >( this ) );
|
2000-09-18 15:33:13 +00:00
|
|
|
|
m_aRefreshListeners.disposeAndClear(aEvt);
|
2001-08-28 13:31:10 +00:00
|
|
|
|
|
2000-09-18 15:33:13 +00:00
|
|
|
|
OBoundControlModel::disposing();
|
2001-08-28 13:31:10 +00:00
|
|
|
|
OErrorBroadcaster::disposing();
|
2000-09-18 15:33:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// XRefreshable
|
|
|
|
|
//------------------------------------------------------------------------------
|
2000-11-23 07:48:15 +00:00
|
|
|
|
void SAL_CALL OListBoxModel::addRefreshListener(const Reference<XRefreshListener>& _rxListener) throw(RuntimeException)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
m_aRefreshListeners.addInterface(_rxListener);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
2000-11-23 07:48:15 +00:00
|
|
|
|
void SAL_CALL OListBoxModel::removeRefreshListener(const Reference<XRefreshListener>& _rxListener) throw(RuntimeException)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
m_aRefreshListeners.removeInterface(_rxListener);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
2000-11-23 07:48:15 +00:00
|
|
|
|
void SAL_CALL OListBoxModel::refresh() throw(RuntimeException)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
{
|
|
|
|
|
::osl::MutexGuard aGuard(m_aMutex);
|
2000-11-23 07:48:15 +00:00
|
|
|
|
if (m_eListSourceType != ListSourceType_VALUELIST)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
if (m_xField.is())
|
|
|
|
|
m_aValueSeq = StringSequence();
|
|
|
|
|
|
|
|
|
|
if (m_xCursor.is())
|
|
|
|
|
loadData();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2001-08-28 13:31:10 +00:00
|
|
|
|
EventObject aEvt(static_cast< XWeak*>(this));
|
2000-11-23 07:48:15 +00:00
|
|
|
|
NOTIFY_LISTENERS(m_aRefreshListeners, XRefreshListener, refreshed, aEvt);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
2000-11-23 07:48:15 +00:00
|
|
|
|
void OListBoxModel::getFastPropertyValue(Any& _rValue, sal_Int32 _nHandle) const
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
switch (_nHandle)
|
|
|
|
|
{
|
|
|
|
|
case PROPERTY_ID_BOUNDCOLUMN:
|
|
|
|
|
_rValue <<= m_aBoundColumn;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PROPERTY_ID_LISTSOURCETYPE:
|
|
|
|
|
_rValue <<= m_eListSourceType;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PROPERTY_ID_LISTSOURCE:
|
|
|
|
|
_rValue <<= m_aListSourceSeq;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PROPERTY_ID_VALUE_SEQ:
|
|
|
|
|
_rValue <<= m_aValueSeq;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PROPERTY_ID_DEFAULT_SELECT_SEQ:
|
|
|
|
|
_rValue <<= m_aDefaultSelectSeq;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
OBoundControlModel::getFastPropertyValue(_rValue, _nHandle);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
2000-11-23 07:48:15 +00:00
|
|
|
|
void OListBoxModel::setFastPropertyValue_NoBroadcast(sal_Int32 _nHandle, const Any& _rValue) throw (com::sun::star::uno::Exception)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
switch (_nHandle)
|
|
|
|
|
{
|
|
|
|
|
case PROPERTY_ID_BOUNDCOLUMN :
|
2000-11-23 07:48:15 +00:00
|
|
|
|
DBG_ASSERT((_rValue.getValueType().getTypeClass() == TypeClass_SHORT) || (_rValue.getValueType().getTypeClass() == TypeClass_VOID),
|
2000-09-18 15:33:13 +00:00
|
|
|
|
"OListBoxModel::setFastPropertyValue_NoBroadcast : invalid type !" );
|
|
|
|
|
m_aBoundColumn = _rValue;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PROPERTY_ID_LISTSOURCETYPE :
|
2000-11-23 07:48:15 +00:00
|
|
|
|
DBG_ASSERT(_rValue.getValueType().equals(::getCppuType(reinterpret_cast<ListSourceType*>(NULL))),
|
2000-09-18 15:33:13 +00:00
|
|
|
|
"OComboBoxModel::setFastPropertyValue_NoBroadcast : invalid type !" );
|
|
|
|
|
_rValue >>= m_eListSourceType;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PROPERTY_ID_LISTSOURCE :
|
|
|
|
|
DBG_ASSERT(_rValue.getValueType().equals(::getCppuType(reinterpret_cast<StringSequence*>(NULL))),
|
|
|
|
|
"OListBoxModel::setFastPropertyValue_NoBroadcast : invalid type !" );
|
|
|
|
|
_rValue >>= m_aListSourceSeq;
|
|
|
|
|
|
2000-11-23 07:48:15 +00:00
|
|
|
|
if (m_eListSourceType == ListSourceType_VALUELIST)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
m_aValueSeq = m_aListSourceSeq;
|
|
|
|
|
else if (m_xCursor.is() && !m_xField.is()) // Listbox bereits mit Datenbank verbunden
|
|
|
|
|
// Aenderung der Datenquelle -> neu laden
|
|
|
|
|
loadData();
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PROPERTY_ID_VALUE_SEQ :
|
|
|
|
|
DBG_ASSERT(_rValue.getValueType().equals(::getCppuType(reinterpret_cast<StringSequence*>(NULL))),
|
|
|
|
|
"OListBoxModel::setFastPropertyValue_NoBroadcast : invalid type !" );
|
|
|
|
|
_rValue >>= m_aValueSeq;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PROPERTY_ID_DEFAULT_SELECT_SEQ :
|
2000-11-23 07:48:15 +00:00
|
|
|
|
DBG_ASSERT(_rValue.getValueType().equals(::getCppuType(reinterpret_cast< Sequence<sal_Int16>*>(NULL))),
|
2000-09-18 15:33:13 +00:00
|
|
|
|
"OListBoxModel::setFastPropertyValue_NoBroadcast : invalid type !" );
|
|
|
|
|
_rValue >>= m_aDefaultSelectSeq;
|
|
|
|
|
|
|
|
|
|
DBG_ASSERT(m_xAggregateFastSet.is(), "OListBoxModel::setFastPropertyValue_NoBroadcast(DEFAULT_SELECT_SEQ) : invalid aggregate !");
|
|
|
|
|
if (m_xAggregateFastSet.is())
|
|
|
|
|
{ // release our mutex once (it's acquired in the calling method !), as setting aggregate properties
|
|
|
|
|
// may cause any uno controls belonging to us to lock the solar mutex, which is potentially dangerous with
|
|
|
|
|
// our own mutex locked
|
|
|
|
|
// FS - 72451 - 31.01.00
|
|
|
|
|
MutexRelease aRelease(m_aMutex);
|
|
|
|
|
m_xAggregateFastSet->setFastPropertyValue(OListBoxModel::nSelectHandle, _rValue);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
OBoundControlModel::setFastPropertyValue_NoBroadcast(_nHandle, _rValue);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (PROPERTY_ID_STRINGITEMLIST == _nHandle)
|
|
|
|
|
_reset();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
sal_Bool OListBoxModel::convertFastPropertyValue(
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Any& _rConvertedValue, Any& _rOldValue, sal_Int32 _nHandle, const Any& _rValue)
|
|
|
|
|
throw (IllegalArgumentException)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
sal_Bool bModified(sal_False);
|
|
|
|
|
switch (_nHandle)
|
|
|
|
|
{
|
|
|
|
|
case PROPERTY_ID_BOUNDCOLUMN :
|
|
|
|
|
bModified = tryPropertyValue(_rConvertedValue, _rOldValue, _rValue, m_aBoundColumn, ::getCppuType(reinterpret_cast<sal_Int16*>(NULL)));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PROPERTY_ID_LISTSOURCETYPE:
|
2001-01-24 08:08:43 +00:00
|
|
|
|
bModified = tryPropertyValueEnum(_rConvertedValue, _rOldValue, _rValue, m_eListSourceType);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PROPERTY_ID_LISTSOURCE:
|
|
|
|
|
bModified = tryPropertyValue(_rConvertedValue, _rOldValue, _rValue, m_aListSourceSeq);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PROPERTY_ID_VALUE_SEQ :
|
|
|
|
|
bModified = tryPropertyValue(_rConvertedValue, _rOldValue, _rValue, m_aValueSeq);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PROPERTY_ID_DEFAULT_SELECT_SEQ :
|
|
|
|
|
bModified = tryPropertyValue(_rConvertedValue, _rOldValue, _rValue, m_aDefaultSelectSeq);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return OBoundControlModel::convertFastPropertyValue(_rConvertedValue, _rOldValue, _nHandle, _rValue);
|
|
|
|
|
}
|
|
|
|
|
return bModified;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Reference<XPropertySetInfo> SAL_CALL OListBoxModel::getPropertySetInfo() throw(RuntimeException)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Reference<XPropertySetInfo> xInfo( createPropertySetInfo( getInfoHelper() ) );
|
2000-09-18 15:33:13 +00:00
|
|
|
|
return xInfo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
cppu::IPropertyArrayHelper& OListBoxModel::getInfoHelper()
|
|
|
|
|
{
|
|
|
|
|
return *const_cast<OListBoxModel*>(this)->getArrayHelper();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
void OListBoxModel::fillProperties(
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Sequence< Property >& _rProps,
|
|
|
|
|
Sequence< Property >& _rAggregateProps ) const
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
2001-04-02 09:28:06 +00:00
|
|
|
|
FRM_BEGIN_PROP_HELPER(13)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
DECL_PROP2(CLASSID, sal_Int16, READONLY, TRANSIENT);
|
|
|
|
|
DECL_PROP1(NAME, ::rtl::OUString, BOUND);
|
|
|
|
|
DECL_PROP1(TAG, ::rtl::OUString, BOUND);
|
|
|
|
|
DECL_PROP1(TABINDEX, sal_Int16, BOUND);
|
|
|
|
|
DECL_PROP2(BOUNDCOLUMN, sal_Int16, BOUND, MAYBEVOID);
|
2000-11-23 07:48:15 +00:00
|
|
|
|
DECL_PROP1(LISTSOURCETYPE, ListSourceType, BOUND);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
DECL_PROP1(LISTSOURCE, StringSequence, BOUND);
|
|
|
|
|
DECL_PROP3(VALUE_SEQ, StringSequence, BOUND, READONLY, TRANSIENT);
|
2000-11-23 07:48:15 +00:00
|
|
|
|
DECL_PROP1(DEFAULT_SELECT_SEQ, Sequence<sal_Int16>, BOUND);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
DECL_PROP1(CONTROLSOURCE, ::rtl::OUString, BOUND);
|
2001-02-23 14:11:49 +00:00
|
|
|
|
DECL_IFACE_PROP2(BOUNDFIELD, XPropertySet, READONLY, TRANSIENT);
|
|
|
|
|
DECL_IFACE_PROP2(CONTROLLABEL, XPropertySet, BOUND, MAYBEVOID);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
DECL_PROP2(CONTROLSOURCEPROPERTY, rtl::OUString, READONLY, TRANSIENT);
|
|
|
|
|
FRM_END_PROP_HELPER();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
2000-11-23 07:48:15 +00:00
|
|
|
|
::rtl::OUString SAL_CALL OListBoxModel::getServiceName() throw(RuntimeException)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
return FRM_COMPONENT_LISTBOX; // old (non-sun) name for compatibility !
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
2000-11-23 07:48:15 +00:00
|
|
|
|
void SAL_CALL OListBoxModel::write(const Reference<stario::XObjectOutputStream>& _rxOutStream)
|
|
|
|
|
throw(stario::IOException, RuntimeException)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
OBoundControlModel::write(_rxOutStream);
|
|
|
|
|
|
|
|
|
|
// Dummy-Seq, um Kompatible zu bleiben, wenn SelectSeq nicht mehr gespeichert wird
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Sequence<sal_Int16> aDummySeq;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
|
|
|
|
|
// Version
|
|
|
|
|
// Version 0x0002: ListSource wird StringSeq
|
|
|
|
|
_rxOutStream->writeShort(0x0004);
|
|
|
|
|
|
|
|
|
|
// Maskierung fuer any
|
|
|
|
|
sal_uInt16 nAnyMask = 0;
|
2000-11-23 07:48:15 +00:00
|
|
|
|
if (m_aBoundColumn.getValueType().getTypeClass() != TypeClass_VOID)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
nAnyMask |= BOUNDCOLUMN;
|
|
|
|
|
|
|
|
|
|
_rxOutStream << nAnyMask;
|
|
|
|
|
|
|
|
|
|
_rxOutStream << m_aListSourceSeq;
|
|
|
|
|
_rxOutStream << (sal_Int16)m_eListSourceType;
|
|
|
|
|
_rxOutStream << aDummySeq;
|
|
|
|
|
_rxOutStream << m_aDefaultSelectSeq;
|
|
|
|
|
|
|
|
|
|
if ((nAnyMask & BOUNDCOLUMN) == BOUNDCOLUMN)
|
|
|
|
|
{
|
|
|
|
|
sal_Int16 nBoundColumn;
|
|
|
|
|
m_aBoundColumn >>= nBoundColumn;
|
|
|
|
|
_rxOutStream << nBoundColumn;
|
|
|
|
|
}
|
2001-04-02 09:28:06 +00:00
|
|
|
|
writeHelpTextCompatibly(_rxOutStream);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
|
|
|
|
|
// from version 0x0004 : common properties
|
|
|
|
|
writeCommonProperties(_rxOutStream);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
2000-11-23 07:48:15 +00:00
|
|
|
|
void SAL_CALL OListBoxModel::read(const Reference<stario::XObjectInputStream>& _rxInStream) throw(stario::IOException, RuntimeException)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
// Bei manchen Variblen muessen Abhaengigkeiten beruecksichtigt werden.
|
|
|
|
|
// Deshalb muessen sie explizit ueber setPropertyValue() gesetzt werden.
|
|
|
|
|
|
|
|
|
|
OBoundControlModel::read(_rxInStream);
|
|
|
|
|
::osl::MutexGuard aGuard(m_aMutex);
|
|
|
|
|
|
|
|
|
|
// Version
|
|
|
|
|
sal_uInt16 nVersion = _rxInStream->readShort();
|
|
|
|
|
DBG_ASSERT(nVersion > 0, "OListBoxModel::read : version 0 ? this should never have been written !");
|
|
|
|
|
|
|
|
|
|
if (nVersion > 0x0004)
|
|
|
|
|
{
|
|
|
|
|
DBG_ERROR("OListBoxModel::read : invalid (means unknown) version !");
|
|
|
|
|
m_aListSourceSeq.realloc(0);
|
|
|
|
|
m_aBoundColumn <<= (sal_Int16)0;
|
|
|
|
|
m_aValueSeq.realloc(0);
|
2000-11-23 07:48:15 +00:00
|
|
|
|
m_eListSourceType = ListSourceType_VALUELIST;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
m_aDefaultSelectSeq.realloc(0);
|
|
|
|
|
defaultCommonProperties();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Maskierung fuer any
|
|
|
|
|
sal_uInt16 nAnyMask;
|
|
|
|
|
_rxInStream >> nAnyMask;
|
|
|
|
|
|
|
|
|
|
// ListSourceSeq
|
|
|
|
|
StringSequence aListSourceSeq;
|
|
|
|
|
if (nVersion == 0x0001)
|
|
|
|
|
{
|
|
|
|
|
// ListSourceSeq aus String zusammenstellen;
|
|
|
|
|
::rtl::OUString sListSource;
|
|
|
|
|
_rxInStream >> sListSource;
|
|
|
|
|
|
2001-05-14 08:08:00 +00:00
|
|
|
|
sal_Int32 nTokens = 1;
|
2001-05-11 09:03:31 +00:00
|
|
|
|
const sal_Unicode* pStr = sListSource.getStr();
|
|
|
|
|
while ( *pStr )
|
|
|
|
|
{
|
|
|
|
|
if ( *pStr == ';' )
|
|
|
|
|
nTokens++;
|
|
|
|
|
pStr++;
|
|
|
|
|
}
|
|
|
|
|
aListSourceSeq.realloc( nTokens );
|
|
|
|
|
for (sal_uInt16 i=0; i<nTokens; ++i)
|
|
|
|
|
{
|
|
|
|
|
sal_Int32 nTmp = 0;
|
|
|
|
|
aListSourceSeq.getArray()[i] = sListSource.getToken(i,';',nTmp);
|
|
|
|
|
}
|
2000-09-18 15:33:13 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
_rxInStream >> aListSourceSeq;
|
|
|
|
|
|
|
|
|
|
sal_Int16 nListSourceType;
|
|
|
|
|
_rxInStream >> nListSourceType;
|
2000-11-23 07:48:15 +00:00
|
|
|
|
m_eListSourceType = (ListSourceType)nListSourceType;
|
|
|
|
|
Any aListSourceSeqAny;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
aListSourceSeqAny <<= aListSourceSeq;
|
|
|
|
|
|
|
|
|
|
setFastPropertyValue(PROPERTY_ID_LISTSOURCE, aListSourceSeqAny );
|
|
|
|
|
|
|
|
|
|
// Dummy-Seq, um Kompatible zu bleiben, wenn SelectSeq nicht mehr gespeichert wird
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Sequence<sal_Int16> aDummySeq;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
_rxInStream >> aDummySeq;
|
|
|
|
|
|
|
|
|
|
// DefaultSelectSeq
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Sequence<sal_Int16> aDefaultSelectSeq;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
_rxInStream >> aDefaultSelectSeq;
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Any aDefaultSelectSeqAny;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
aDefaultSelectSeqAny <<= aDefaultSelectSeq;
|
|
|
|
|
setFastPropertyValue(PROPERTY_ID_DEFAULT_SELECT_SEQ, aDefaultSelectSeqAny);
|
|
|
|
|
|
|
|
|
|
// BoundColumn
|
|
|
|
|
if ((nAnyMask & BOUNDCOLUMN) == BOUNDCOLUMN)
|
|
|
|
|
{
|
|
|
|
|
sal_Int16 nValue;
|
|
|
|
|
_rxInStream >> nValue;
|
|
|
|
|
m_aBoundColumn <<= nValue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (nVersion > 2)
|
2001-04-02 09:28:06 +00:00
|
|
|
|
readHelpTextCompatibly(_rxInStream);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
|
|
|
|
|
// Stringliste mu<6D> gelehrt werden, wenn nicht ueber WerteListe gefuellt wird
|
|
|
|
|
// dieses kann der Fall sein wenn im alive modus gespeichert wird
|
2000-11-23 07:48:15 +00:00
|
|
|
|
if (m_eListSourceType != ListSourceType_VALUELIST && m_xAggregateSet.is())
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
StringSequence aSequence;
|
2000-11-23 07:48:15 +00:00
|
|
|
|
setFastPropertyValue(PROPERTY_ID_STRINGITEMLIST, makeAny(aSequence));
|
2000-09-18 15:33:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (nVersion > 3)
|
|
|
|
|
readCommonProperties(_rxInStream);
|
|
|
|
|
|
|
|
|
|
// Nach dem Lesen die Defaultwerte anzeigen
|
|
|
|
|
if (m_aControlSource.getLength())
|
|
|
|
|
// (not if we don't have a control source - the "State" property acts like it is persistent, then
|
|
|
|
|
_reset();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
void OListBoxModel::loadData()
|
|
|
|
|
{
|
2000-11-23 07:48:15 +00:00
|
|
|
|
DBG_ASSERT(m_eListSourceType != ListSourceType_VALUELIST, "fuer Werteliste kein Laden aus der Datenbank")
|
2000-09-18 15:33:13 +00:00
|
|
|
|
|
|
|
|
|
m_nNULLPos = -1;
|
|
|
|
|
m_bBoundComponent = sal_False;
|
|
|
|
|
|
|
|
|
|
// Connection holen
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Reference<XRowSet> xForm(m_xCursor, UNO_QUERY);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
if (!xForm.is())
|
|
|
|
|
return;
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Reference<XConnection> xConnection = getConnection(xForm);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
if (!xConnection.is())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
// we need a com::sun::star::sdb::Connection for some of the code below ...
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Reference<XServiceInfo> xServiceInfo(xConnection, UNO_QUERY);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
if (!xServiceInfo.is() || !xServiceInfo->supportsService(SRV_SDB_CONNECTION))
|
|
|
|
|
{
|
|
|
|
|
DBG_ERROR("OListBoxModel::loadData : invalid connection !");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2001-04-02 12:32:00 +00:00
|
|
|
|
Reference< XRowSet > xContentRowSet(m_xServiceFactory->createInstance(SRV_SDB_ROWSET), UNO_QUERY);
|
|
|
|
|
Reference< XPropertySet > xContentSetProperties(xContentRowSet, UNO_QUERY);
|
|
|
|
|
Reference<XResultSet> xListCursor(xContentSetProperties, UNO_QUERY);
|
|
|
|
|
if (!xListCursor.is())
|
|
|
|
|
{
|
|
|
|
|
DBG_ERROR("OListBoxModel::loadData: could not instantiate a RowSet!");
|
|
|
|
|
return;
|
|
|
|
|
}
|
2000-09-18 15:33:13 +00:00
|
|
|
|
|
|
|
|
|
// Wenn der ListSourceType keine Werteliste ist,
|
|
|
|
|
// muss die String-Seq zu einem String zusammengefasst werden
|
|
|
|
|
::rtl::OUString sListSource;
|
|
|
|
|
const ::rtl::OUString* pustrListSouceStrings = m_aListSourceSeq.getConstArray();
|
|
|
|
|
sal_Int32 i;
|
|
|
|
|
for (i=0; i<m_aListSourceSeq.getLength(); ++i)
|
|
|
|
|
sListSource = sListSource + pustrListSouceStrings[i];
|
2001-05-11 09:03:31 +00:00
|
|
|
|
if (!sListSource.getLength())
|
2000-09-18 15:33:13 +00:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
sal_Int16 nBoundColumn = 0;
|
2000-11-23 07:48:15 +00:00
|
|
|
|
if (m_aBoundColumn.getValueType().getTypeClass() == TypeClass_SHORT)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
m_aBoundColumn >>= nBoundColumn;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
2001-04-02 12:32:00 +00:00
|
|
|
|
sal_Bool bExecute = sal_False;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
switch (m_eListSourceType)
|
|
|
|
|
{
|
2000-11-23 07:48:15 +00:00
|
|
|
|
case ListSourceType_TABLEFIELDS:
|
2000-09-18 15:33:13 +00:00
|
|
|
|
// don't work with a statement here, the fields will be collected below
|
|
|
|
|
break;
|
2000-11-23 07:48:15 +00:00
|
|
|
|
case ListSourceType_TABLE:
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Reference<XNameAccess> xFieldsByName = getTableFields(xConnection, sListSource);
|
|
|
|
|
Reference<XIndexAccess> xFieldsByIndex(xFieldsByName, UNO_QUERY);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
|
|
|
|
|
// do we have a bound column if yes we have to select it
|
|
|
|
|
// and the displayed column is the first column othwhise we act as a combobox
|
|
|
|
|
::rtl::OUString aFieldName;
|
|
|
|
|
::rtl::OUString aBoundFieldName;
|
|
|
|
|
|
|
|
|
|
if ((nBoundColumn > 0) && xFieldsByIndex.is())
|
|
|
|
|
{
|
|
|
|
|
if (xFieldsByIndex->getCount() <= nBoundColumn)
|
|
|
|
|
break;
|
|
|
|
|
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Reference<XPropertySet> xFieldAsSet;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
xFieldsByIndex->getByIndex(nBoundColumn) >>= xFieldAsSet;
|
|
|
|
|
xFieldAsSet->getPropertyValue(PROPERTY_NAME) >>= aBoundFieldName;
|
|
|
|
|
nBoundColumn = 1;
|
|
|
|
|
|
|
|
|
|
xFieldsByIndex->getByIndex(0) >>= xFieldAsSet;
|
|
|
|
|
xFieldAsSet->getPropertyValue(PROPERTY_NAME) >>= aFieldName;
|
|
|
|
|
}
|
|
|
|
|
else if (xFieldsByName.is())
|
|
|
|
|
{
|
|
|
|
|
if (xFieldsByName->hasByName(m_aControlSource))
|
|
|
|
|
aFieldName = m_aControlSource;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// otherwise look for the alias
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Reference<XSQLQueryComposerFactory> xFactory(xConnection, UNO_QUERY);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
if (!xFactory.is())
|
|
|
|
|
break;
|
|
|
|
|
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Reference<XSQLQueryComposer> xComposer = xFactory->createQueryComposer();
|
2000-09-18 15:33:13 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
2001-02-23 14:11:49 +00:00
|
|
|
|
Reference<XPropertySet> xFormAsSet(xForm, UNO_QUERY);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
::rtl::OUString aStatement;
|
|
|
|
|
xFormAsSet->getPropertyValue(PROPERTY_ACTIVECOMMAND) >>= aStatement;
|
|
|
|
|
xComposer->setQuery(aStatement);
|
|
|
|
|
}
|
2000-11-23 07:48:15 +00:00
|
|
|
|
catch(Exception&)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
disposeComponent(xComposer);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// search the field
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Reference<XColumnsSupplier> xSupplyFields(xComposer, UNO_QUERY);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
DBG_ASSERT(xSupplyFields.is(), "OListBoxModel::loadData : invalid query composer !");
|
|
|
|
|
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Reference<XNameAccess> xFieldNames = xSupplyFields->getColumns();
|
2000-09-18 15:33:13 +00:00
|
|
|
|
if (xFieldNames->hasByName(m_aControlSource))
|
|
|
|
|
{
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Reference<XPropertySet> xComposerFieldAsSet;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
xFieldNames->getByName(m_aControlSource) >>= xComposerFieldAsSet;
|
|
|
|
|
if (hasProperty(PROPERTY_FIELDSOURCE, xComposerFieldAsSet))
|
|
|
|
|
xComposerFieldAsSet->getPropertyValue(PROPERTY_FIELDSOURCE) >>= aFieldName;
|
|
|
|
|
}
|
|
|
|
|
disposeComponent(xComposer);
|
|
|
|
|
}
|
|
|
|
|
}
|
2001-05-11 09:03:31 +00:00
|
|
|
|
if (!aFieldName.getLength())
|
2000-09-18 15:33:13 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Reference<XDatabaseMetaData> xMeta = xConnection->getMetaData();
|
2000-09-18 15:33:13 +00:00
|
|
|
|
::rtl::OUString aQuote = xMeta->getIdentifierQuoteString();
|
|
|
|
|
::rtl::OUString aStatement = ::rtl::OUString::createFromAscii("SELECT ");
|
|
|
|
|
if (!aBoundFieldName.getLength()) // act like a combobox
|
|
|
|
|
aStatement += ::rtl::OUString::createFromAscii("DISTINCT ");
|
|
|
|
|
|
|
|
|
|
aStatement += quoteName(aQuote,aFieldName);
|
2001-05-11 09:03:31 +00:00
|
|
|
|
if (aBoundFieldName.getLength())
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
aStatement += ::rtl::OUString::createFromAscii(", ");
|
|
|
|
|
aStatement += quoteName(aQuote, aBoundFieldName);
|
|
|
|
|
}
|
|
|
|
|
aStatement += ::rtl::OUString::createFromAscii(" FROM ");
|
2002-10-07 12:09:48 +00:00
|
|
|
|
aStatement += quoteTableName(xMeta, sListSource,::dbtools::eInDataManipulation);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
|
2001-04-02 12:32:00 +00:00
|
|
|
|
xContentSetProperties->setPropertyValue(PROPERTY_COMMAND, makeAny(aStatement));
|
|
|
|
|
bExecute = sal_True;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
} break;
|
2000-11-23 07:48:15 +00:00
|
|
|
|
case ListSourceType_QUERY:
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Reference<XQueriesSupplier> xSupplyQueries(xConnection, UNO_QUERY);
|
2001-02-23 14:11:49 +00:00
|
|
|
|
Reference<XPropertySet> xQuery(*(InterfaceRef*)xSupplyQueries->getQueries()->getByName(sListSource).getValue(), UNO_QUERY);
|
2001-04-02 12:32:00 +00:00
|
|
|
|
xContentSetProperties->setPropertyValue(PROPERTY_ESCAPE_PROCESSING, xQuery->getPropertyValue(PROPERTY_ESCAPE_PROCESSING));
|
2000-09-18 15:33:13 +00:00
|
|
|
|
|
2001-04-02 12:32:00 +00:00
|
|
|
|
xContentSetProperties->setPropertyValue(PROPERTY_COMMAND, xQuery->getPropertyValue(PROPERTY_COMMAND));
|
|
|
|
|
bExecute = sal_True;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
} break;
|
|
|
|
|
default:
|
|
|
|
|
{
|
2000-11-23 07:48:15 +00:00
|
|
|
|
if (ListSourceType_SQLPASSTHROUGH == m_eListSourceType)
|
2001-04-02 12:32:00 +00:00
|
|
|
|
xContentSetProperties->setPropertyValue(PROPERTY_ESCAPE_PROCESSING, ::cppu::bool2any((sal_False)));
|
|
|
|
|
xContentSetProperties->setPropertyValue(PROPERTY_COMMAND, makeAny(sListSource));
|
|
|
|
|
bExecute = sal_True;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2001-04-02 12:32:00 +00:00
|
|
|
|
|
|
|
|
|
if (bExecute)
|
|
|
|
|
{
|
|
|
|
|
Reference< XPropertySet > xFormProps(xForm, UNO_QUERY);
|
|
|
|
|
|
2001-11-07 14:07:44 +00:00
|
|
|
|
xContentSetProperties->setPropertyValue( PROPERTY_COMMANDTYPE, makeAny( CommandType::COMMAND ) );
|
|
|
|
|
xContentSetProperties->setPropertyValue( PROPERTY_DATASOURCE, xFormProps->getPropertyValue( PROPERTY_DATASOURCE ) );
|
|
|
|
|
|
|
|
|
|
// try to give the row set the connection of our form - this saves the rowset from creating an own one
|
|
|
|
|
xContentSetProperties->setPropertyValue( PROPERTY_ACTIVE_CONNECTION, xFormProps->getPropertyValue( PROPERTY_ACTIVE_CONNECTION ) );
|
|
|
|
|
|
2001-04-02 12:32:00 +00:00
|
|
|
|
xContentRowSet->execute();
|
|
|
|
|
}
|
2000-09-18 15:33:13 +00:00
|
|
|
|
}
|
2000-11-23 07:48:15 +00:00
|
|
|
|
catch(SQLException& eSQL)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
onError(eSQL, FRM_RES_STRING(RID_BASELISTBOX_ERROR_FILLLIST));
|
|
|
|
|
disposeComponent(xListCursor);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2000-11-23 07:48:15 +00:00
|
|
|
|
catch(Exception& eUnknown)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
eUnknown;
|
|
|
|
|
disposeComponent(xListCursor);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2000-11-23 07:48:15 +00:00
|
|
|
|
if (ListSourceType_TABLEFIELDS != m_eListSourceType && !xListCursor.is())
|
2000-09-18 15:33:13 +00:00
|
|
|
|
// something went wrong ...
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
// Anzeige- und Werteliste fuellen
|
|
|
|
|
vector< ::rtl::OUString > aValueList, aStringList;
|
|
|
|
|
aValueList.reserve(16);
|
|
|
|
|
aStringList.reserve(16);
|
|
|
|
|
sal_Bool bUseNULL = m_xField.is() && !m_bRequired;
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
switch (m_eListSourceType)
|
|
|
|
|
{
|
2000-11-23 07:48:15 +00:00
|
|
|
|
case ListSourceType_SQL:
|
|
|
|
|
case ListSourceType_SQLPASSTHROUGH:
|
|
|
|
|
case ListSourceType_TABLE:
|
|
|
|
|
case ListSourceType_QUERY:
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
// Feld der 1. Column des ResultSets holen
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Reference<XColumnsSupplier> xSupplyCols(xListCursor, UNO_QUERY);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
DBG_ASSERT(xSupplyCols.is(), "OListBoxModel::loadData : cursor supports the row set service but is no column supplier ??!");
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Reference<XIndexAccess> xColumns;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
if (xSupplyCols.is())
|
|
|
|
|
{
|
2000-11-23 07:48:15 +00:00
|
|
|
|
xColumns = Reference<XIndexAccess>(xSupplyCols->getColumns(), UNO_QUERY);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
DBG_ASSERT(xColumns.is(), "OListBoxModel::loadData : no columns supplied by the row set !");
|
|
|
|
|
}
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Reference<XColumn> xDataField;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
if (xColumns.is())
|
2001-02-23 14:11:49 +00:00
|
|
|
|
xColumns->getByIndex(0) >>= xDataField;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
if (!xDataField.is())
|
|
|
|
|
{
|
|
|
|
|
disposeComponent(xListCursor);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2001-04-02 12:32:00 +00:00
|
|
|
|
Reference<XNumberFormatsSupplier> xSupplier = getNumberFormats(xConnection, sal_False, m_xServiceFactory);
|
|
|
|
|
|
2000-12-06 09:24:23 +00:00
|
|
|
|
::com::sun::star::util::Date aNullDate(DBTypeConversion::getStandardDate());
|
2000-09-18 15:33:13 +00:00
|
|
|
|
sal_Int32 nFormatKey = 0;
|
2000-11-23 07:48:15 +00:00
|
|
|
|
sal_Int32 nFieldType = DataType::OTHER;
|
|
|
|
|
sal_Int16 nKeyType = NumberFormat::UNDEFINED;
|
2001-04-02 12:32:00 +00:00
|
|
|
|
sal_Bool bHaveFormat = sal_False;
|
|
|
|
|
Reference<XPropertySet> xFieldAsSet(xDataField, UNO_QUERY);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
xFieldAsSet->getPropertyValue(PROPERTY_FIELDTYPE) >>= nFieldType;
|
2001-04-02 12:32:00 +00:00
|
|
|
|
bHaveFormat = (xFieldAsSet->getPropertyValue(PROPERTY_FORMATKEY) >>= nFormatKey);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
}
|
2000-11-23 07:48:15 +00:00
|
|
|
|
catch(Exception&)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
2001-02-23 14:11:49 +00:00
|
|
|
|
DBG_ERROR("OListBoxModel::loadData: could not obtain the field type and/or format key of the bound column!");
|
2000-09-18 15:33:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-04-02 12:32:00 +00:00
|
|
|
|
if (!bHaveFormat)
|
|
|
|
|
{
|
2001-07-20 12:13:32 +00:00
|
|
|
|
Locale aAppLanguage = Application::GetSettings().GetUILocale();
|
2001-04-02 12:32:00 +00:00
|
|
|
|
if (xSupplier.is())
|
|
|
|
|
{
|
|
|
|
|
Reference< XNumberFormatTypes > xNumTypes(xSupplier->getNumberFormats(), UNO_QUERY);
|
|
|
|
|
if (xNumTypes.is())
|
|
|
|
|
nFormatKey = getDefaultNumberFormat(xFieldAsSet, xNumTypes, aAppLanguage);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Reference<XNumberFormatter> xFormatter;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
if (xSupplier.is())
|
|
|
|
|
{
|
2000-11-23 07:48:15 +00:00
|
|
|
|
xFormatter = Reference<XNumberFormatter>(
|
2000-09-18 15:33:13 +00:00
|
|
|
|
m_xServiceFactory->createInstance(FRM_NUMBER_FORMATTER),
|
2000-11-23 07:48:15 +00:00
|
|
|
|
UNO_QUERY
|
2000-09-18 15:33:13 +00:00
|
|
|
|
);
|
|
|
|
|
if (xFormatter.is())
|
|
|
|
|
{
|
|
|
|
|
xFormatter->attachNumberFormatsSupplier(xSupplier);
|
2000-10-19 10:52:20 +00:00
|
|
|
|
xFormatter->getNumberFormatsSupplier()->getNumberFormatSettings()->getPropertyValue(
|
|
|
|
|
::rtl::OUString::createFromAscii("NullDate")) >>= aNullDate;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
nKeyType = getNumberFormatType(xFormatter->getNumberFormatsSupplier()->getNumberFormats(), nFormatKey);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Feld der BoundColumn des ResultSets holen
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Reference<XColumn> xBoundField;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
if ((nBoundColumn > 0) && m_xColumn.is())
|
|
|
|
|
// don't look for a bound column if we're not connected to a field
|
2001-02-23 14:11:49 +00:00
|
|
|
|
xColumns->getByIndex(nBoundColumn) >>= xBoundField;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
m_bBoundComponent = xBoundField.is();
|
|
|
|
|
|
|
|
|
|
// Ist die LB an ein Feld gebunden und sind Leereintr<74>ge zulaessig
|
|
|
|
|
// dann wird die Position fuer einen Leereintrag gemerkt
|
|
|
|
|
|
|
|
|
|
::rtl::OUString aStr;
|
|
|
|
|
sal_Int16 i = 0;
|
|
|
|
|
// per definitionem the list cursor is positioned _before_ the first row at the moment
|
|
|
|
|
while (xListCursor->next() && (i++<SHRT_MAX)) // max anzahl eintraege
|
|
|
|
|
{
|
|
|
|
|
aStr = DBTypeConversion::getValue(xDataField,
|
|
|
|
|
xFormatter,
|
|
|
|
|
aNullDate,
|
|
|
|
|
nFormatKey,
|
|
|
|
|
nKeyType);
|
|
|
|
|
|
|
|
|
|
aStringList.push_back(aStr);
|
|
|
|
|
|
|
|
|
|
if (m_bBoundComponent)
|
|
|
|
|
{
|
|
|
|
|
aStr = xBoundField->getString();
|
|
|
|
|
aValueList.push_back(aStr);
|
|
|
|
|
}
|
|
|
|
|
|
2001-05-11 09:03:31 +00:00
|
|
|
|
if (bUseNULL && (m_nNULLPos == -1) && !aStr.getLength())
|
2000-09-18 15:33:13 +00:00
|
|
|
|
m_nNULLPos = (sal_Int16)aStringList.size() - 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2000-11-23 07:48:15 +00:00
|
|
|
|
case ListSourceType_TABLEFIELDS:
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Reference<XNameAccess> xFieldNames = getTableFields(xConnection, sListSource);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
if (xFieldNames.is())
|
|
|
|
|
{
|
|
|
|
|
StringSequence seqNames = xFieldNames->getElementNames();
|
|
|
|
|
sal_Int32 nFieldsCount = seqNames.getLength();
|
|
|
|
|
const ::rtl::OUString* pustrNames = seqNames.getConstArray();
|
|
|
|
|
|
2001-02-23 14:11:49 +00:00
|
|
|
|
for (sal_Int32 k=0; k<nFieldsCount; ++k, ++pustrNames)
|
|
|
|
|
aStringList.push_back(*pustrNames);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2000-11-23 07:48:15 +00:00
|
|
|
|
catch(SQLException& eSQL)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
onError(eSQL, FRM_RES_STRING(RID_BASELISTBOX_ERROR_FILLLIST));
|
|
|
|
|
disposeComponent(xListCursor);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2000-11-23 07:48:15 +00:00
|
|
|
|
catch(Exception& eUnknown)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
eUnknown;
|
|
|
|
|
disposeComponent(xListCursor);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-11-23 07:48:15 +00:00
|
|
|
|
// Value-Sequence erzeugen
|
2000-09-18 15:33:13 +00:00
|
|
|
|
// NULL eintrag hinzufuegen
|
|
|
|
|
if (bUseNULL && m_nNULLPos == -1)
|
|
|
|
|
{
|
|
|
|
|
if (m_bBoundComponent)
|
|
|
|
|
aValueList.insert(aValueList.begin());
|
|
|
|
|
|
|
|
|
|
aStringList.insert(aStringList.begin());
|
|
|
|
|
m_nNULLPos = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_aValueSeq.realloc(aValueList.size());
|
|
|
|
|
::rtl::OUString* pustrValues = m_aValueSeq.getArray();
|
2001-01-24 08:08:43 +00:00
|
|
|
|
for (i = 0; i < (sal_Int32)aValueList.size(); ++i)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
pustrValues[i] = aValueList[i];
|
|
|
|
|
|
2000-11-23 07:48:15 +00:00
|
|
|
|
// String-Sequence fuer ListBox erzeugen
|
2000-09-18 15:33:13 +00:00
|
|
|
|
StringSequence aStringSeq(aStringList.size());
|
|
|
|
|
::rtl::OUString* pustrStrings = aStringSeq.getArray();
|
2001-01-24 08:08:43 +00:00
|
|
|
|
for (i = 0; i < (sal_Int32)aStringList.size(); ++i)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
pustrStrings[i] = aStringList[i];
|
|
|
|
|
|
2000-11-23 07:48:15 +00:00
|
|
|
|
setFastPropertyValue(PROPERTY_ID_STRINGITEMLIST, makeAny(aStringSeq));
|
2000-09-18 15:33:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Statement + Cursor zerstoeren
|
|
|
|
|
disposeComponent(xListCursor);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
2000-11-23 07:48:15 +00:00
|
|
|
|
void OListBoxModel::_loaded(const EventObject& rEvent)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
// an Felder gebundene Listboxen haben keine Multiselektion
|
|
|
|
|
if (m_xField.is())
|
|
|
|
|
{
|
2001-03-22 07:10:29 +00:00
|
|
|
|
setFastPropertyValue(PROPERTY_ID_MULTISELECTION, ::cppu::bool2any((sal_False)));
|
2000-09-18 15:33:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-11-23 07:48:15 +00:00
|
|
|
|
if (m_eListSourceType != ListSourceType_VALUELIST)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
if (m_xField.is())
|
|
|
|
|
m_aValueSeq = StringSequence();
|
|
|
|
|
|
|
|
|
|
if (m_xCursor.is())
|
|
|
|
|
loadData();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
void OListBoxModel::_unloaded()
|
|
|
|
|
{
|
2000-11-23 07:48:15 +00:00
|
|
|
|
if (m_eListSourceType != ListSourceType_VALUELIST)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
m_aValueSeq = StringSequence();
|
|
|
|
|
m_nNULLPos = -1;
|
|
|
|
|
m_bBoundComponent = sal_False;
|
|
|
|
|
|
|
|
|
|
StringSequence aSequence;
|
2000-11-23 07:48:15 +00:00
|
|
|
|
setFastPropertyValue(PROPERTY_ID_STRINGITEMLIST, makeAny(aSequence));
|
2000-09-18 15:33:13 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
StringSequence OListBoxModel::GetCurValueSeq() const
|
|
|
|
|
{
|
|
|
|
|
StringSequence aCurValues;
|
|
|
|
|
|
2000-11-23 07:48:15 +00:00
|
|
|
|
// Aus den selektierten Indizes Werte-Sequence aufbauen
|
2000-09-18 15:33:13 +00:00
|
|
|
|
DBG_ASSERT(m_xAggregateFastSet.is(), "OListBoxModel::GetCurValueSeq : invalid aggregate !");
|
|
|
|
|
if (!m_xAggregateFastSet.is())
|
|
|
|
|
return aCurValues;
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Any aTmp = m_xAggregateFastSet->getFastPropertyValue(OListBoxModel::nSelectHandle);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
|
2001-02-23 14:11:49 +00:00
|
|
|
|
Sequence<sal_Int16> aSelectSeq; aTmp >>= aSelectSeq;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
const sal_Int16 *pSels = aSelectSeq.getConstArray();
|
|
|
|
|
sal_uInt32 nSelCount = aSelectSeq.getLength();
|
|
|
|
|
|
|
|
|
|
if (nSelCount)
|
|
|
|
|
{
|
|
|
|
|
const ::rtl::OUString *pVals = NULL;
|
2001-01-24 08:08:43 +00:00
|
|
|
|
sal_Int32 nValCnt = 0;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
if (m_aValueSeq.getLength())
|
|
|
|
|
{
|
|
|
|
|
pVals = m_aValueSeq.getConstArray();
|
|
|
|
|
nValCnt = m_aValueSeq.getLength();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
aTmp = const_cast<OListBoxModel*>(this)->OPropertySetAggregationHelper::getFastPropertyValue(PROPERTY_ID_STRINGITEMLIST);
|
|
|
|
|
pVals = (*(StringSequence*)aTmp.getValue()).getConstArray();
|
|
|
|
|
nValCnt = (*(StringSequence*)aTmp.getValue()).getLength();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (nSelCount > 1)
|
|
|
|
|
{
|
|
|
|
|
// Einfach- oder Mehrfach-Selektion
|
|
|
|
|
sal_Bool bMultiSel;
|
|
|
|
|
const_cast<OListBoxModel*>(this)->OPropertySetAggregationHelper::getFastPropertyValue(PROPERTY_ID_MULTISELECTION) >>= bMultiSel;
|
|
|
|
|
if (bMultiSel)
|
|
|
|
|
nSelCount = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ist der Eintrag fuer NULL selektiert ?
|
|
|
|
|
// dann leere Selektion liefern
|
|
|
|
|
if (m_nNULLPos != -1 && nSelCount == 1 && pSels[0] == m_nNULLPos)
|
|
|
|
|
nSelCount = 0;
|
|
|
|
|
|
|
|
|
|
aCurValues.realloc(nSelCount);
|
|
|
|
|
::rtl::OUString *pCurVals = aCurValues.getArray();
|
|
|
|
|
|
|
|
|
|
for (sal_uInt16 i = 0; i < nSelCount; i++)
|
|
|
|
|
{
|
|
|
|
|
if (pSels[i] < nValCnt)
|
|
|
|
|
pCurVals[i] = pVals[pSels[i]];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return aCurValues;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// XBoundComponent
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
sal_Bool OListBoxModel::_commit()
|
|
|
|
|
{
|
|
|
|
|
// derzeitige Selectionsliste
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Any aNewValue;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
StringSequence aCurValueSeq = GetCurValueSeq();
|
|
|
|
|
if (aCurValueSeq.getLength())
|
|
|
|
|
aNewValue <<= aCurValueSeq.getConstArray()[0];
|
|
|
|
|
|
|
|
|
|
if (!compare(aNewValue, m_aSaveValue))
|
|
|
|
|
{
|
|
|
|
|
if (!aNewValue.hasValue())
|
|
|
|
|
m_xColumnUpdate->updateNull();
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
::rtl::OUString sNewValue;
|
|
|
|
|
aNewValue >>= sNewValue;
|
|
|
|
|
m_xColumnUpdate->updateString(sNewValue);
|
|
|
|
|
}
|
2000-11-23 07:48:15 +00:00
|
|
|
|
catch(Exception&)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
return sal_False;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
m_aSaveValue = aNewValue;
|
|
|
|
|
}
|
|
|
|
|
return sal_True;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// XPropertiesChangeListener
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
void OListBoxModel::_onValueChanged()
|
|
|
|
|
{
|
|
|
|
|
DBG_ASSERT(m_xAggregateFastSet.is() && m_xAggregateSet.is(), "OListBoxModel::_onValueChanged : invalid aggregate !");
|
|
|
|
|
if (!m_xAggregateFastSet.is() || !m_xAggregateSet.is())
|
|
|
|
|
return;
|
|
|
|
|
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Sequence<sal_Int16> aSelSeq;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
|
|
|
|
|
// Bei NULL-Eintraegen Selektion aufheben!
|
|
|
|
|
::rtl::OUString sValue = m_xColumn->getString();
|
|
|
|
|
if (m_xColumn->wasNull())
|
|
|
|
|
{
|
|
|
|
|
m_aSaveValue.clear();
|
|
|
|
|
if (m_nNULLPos != -1)
|
|
|
|
|
{
|
|
|
|
|
aSelSeq.realloc(1);
|
|
|
|
|
aSelSeq.getArray()[0] = m_nNULLPos;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
m_aSaveValue <<= sValue;
|
|
|
|
|
|
|
|
|
|
// In der Werteliste nur einzelne Werte suchen, wenn das Control mit einem Datenbankfeld verbunden ist
|
|
|
|
|
if (m_aValueSeq.getLength()) // WerteListe
|
|
|
|
|
aSelSeq = findValue(m_aValueSeq, sValue, m_bBoundComponent);
|
|
|
|
|
else
|
|
|
|
|
{
|
2001-02-23 14:11:49 +00:00
|
|
|
|
StringSequence aStringSeq; m_xAggregateSet->getPropertyValue(PROPERTY_STRINGITEMLIST) >>= aStringSeq;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
aSelSeq = findValue(aStringSeq, sValue, m_bBoundComponent);
|
|
|
|
|
}
|
|
|
|
|
}
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Any aSelectAny;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
aSelectAny <<= aSelSeq;
|
|
|
|
|
{ // release our mutex once (it's acquired in the calling method !), as setting aggregate properties
|
|
|
|
|
// may cause any uno controls belonging to us to lock the solar mutex, which is potentially dangerous with
|
|
|
|
|
// our own mutex locked
|
|
|
|
|
// FS - 72451 - 31.01.00
|
|
|
|
|
MutexRelease aRelease(m_aMutex);
|
|
|
|
|
m_xAggregateFastSet->setFastPropertyValue(OListBoxModel::nSelectHandle, aSelectAny );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// XReset
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
void OListBoxModel::_reset( void )
|
|
|
|
|
{
|
|
|
|
|
DBG_ASSERT(m_xAggregateFastSet.is() && m_xAggregateSet.is(), "OListBoxModel::reset : invalid aggregate !");
|
|
|
|
|
if (!m_xAggregateFastSet.is() || !m_xAggregateSet.is())
|
|
|
|
|
return;
|
|
|
|
|
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Any aValue;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
if (m_aDefaultSelectSeq.getLength())
|
|
|
|
|
aValue <<= m_aDefaultSelectSeq;
|
|
|
|
|
else if (m_nNULLPos != -1) // gebundene Listbox
|
|
|
|
|
{
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Sequence<sal_Int16> aSeq(1);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
aSeq.getArray()[0] = m_nNULLPos;
|
|
|
|
|
aValue <<= aSeq;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Sequence<sal_Int16> aSeq;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
aValue <<= aSeq;
|
|
|
|
|
}
|
|
|
|
|
{ // release our mutex once (it's acquired in the calling method !), as setting aggregate properties
|
|
|
|
|
// may cause any uno controls belonging to us to lock the solar mutex, which is potentially dangerous with
|
|
|
|
|
// our own mutex locked
|
|
|
|
|
// FS - 72451 - 31.01.00
|
|
|
|
|
MutexRelease aRelease(m_aMutex);
|
|
|
|
|
m_xAggregateFastSet->setFastPropertyValue(OListBoxModel::nSelectHandle, aValue);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//==================================================================
|
|
|
|
|
// OListBoxControl
|
|
|
|
|
//==================================================================
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
2000-11-23 07:48:15 +00:00
|
|
|
|
InterfaceRef SAL_CALL OListBoxControl_CreateInstance(const Reference<XMultiServiceFactory>& _rxFactory) throw (RuntimeException)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
return *(new OListBoxControl(_rxFactory));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Sequence< Type> OListBoxControl::_getTypes()
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
2000-11-23 07:48:15 +00:00
|
|
|
|
static Sequence< Type> aTypes;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
if (!aTypes.getLength())
|
2000-11-23 07:48:15 +00:00
|
|
|
|
aTypes = concatSequences(OBoundControl::_getTypes(), OListBoxControl_BASE::getTypes());
|
2000-09-18 15:33:13 +00:00
|
|
|
|
return aTypes;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Any SAL_CALL OListBoxControl::queryAggregation(const Type& _rType) throw (RuntimeException)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
2001-01-29 11:52:11 +00:00
|
|
|
|
Any aReturn = OBoundControl::queryAggregation(_rType);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
if (!aReturn.hasValue())
|
2001-01-29 11:52:11 +00:00
|
|
|
|
aReturn = OListBoxControl_BASE::queryInterface(_rType);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
|
|
|
|
|
return aReturn;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DBG_NAME(OListBoxControl);
|
|
|
|
|
//------------------------------------------------------------------------------
|
2000-11-23 07:48:15 +00:00
|
|
|
|
OListBoxControl::OListBoxControl(const Reference<XMultiServiceFactory>& _rxFactory)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
:OBoundControl(_rxFactory, VCL_CONTROL_LISTBOX)
|
|
|
|
|
,m_aChangeListeners(m_aMutex)
|
|
|
|
|
{
|
|
|
|
|
DBG_CTOR(OListBoxControl,NULL);
|
|
|
|
|
|
|
|
|
|
increment(m_refCount);
|
|
|
|
|
{
|
|
|
|
|
// als FocusListener anmelden
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Reference<XWindow> xComp;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
if (query_aggregation(m_xAggregate, xComp))
|
|
|
|
|
xComp->addFocusListener(this);
|
|
|
|
|
|
|
|
|
|
// als ItemListener anmelden
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Reference<XListBox> xListbox;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
if (query_aggregation(m_xAggregate, xListbox))
|
|
|
|
|
xListbox->addItemListener(this);
|
|
|
|
|
}
|
|
|
|
|
// Refcount bei 2 fuer angemeldete Listener
|
2001-04-26 11:36:28 +00:00
|
|
|
|
decrement(m_refCount);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
|
|
|
|
|
m_aChangeTimer.SetTimeout(500);
|
|
|
|
|
m_aChangeTimer.SetTimeoutHdl(LINK(this,OListBoxControl,OnTimeout));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
OListBoxControl::~OListBoxControl()
|
|
|
|
|
{
|
|
|
|
|
if (!OComponentHelper::rBHelper.bDisposed)
|
|
|
|
|
{
|
|
|
|
|
acquire();
|
|
|
|
|
dispose();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DBG_DTOR(OListBoxControl,NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
2000-11-23 07:48:15 +00:00
|
|
|
|
StringSequence SAL_CALL OListBoxControl::getSupportedServiceNames() throw(RuntimeException)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
StringSequence aSupported = OBoundControl::getSupportedServiceNames();
|
|
|
|
|
aSupported.realloc(aSupported.getLength() + 1);
|
|
|
|
|
|
|
|
|
|
::rtl::OUString* pArray = aSupported.getArray();
|
|
|
|
|
pArray[aSupported.getLength()-1] = FRM_SUN_CONTROL_LISTBOX;
|
|
|
|
|
return aSupported;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// XFocusListener
|
|
|
|
|
//------------------------------------------------------------------------------
|
2000-11-23 07:48:15 +00:00
|
|
|
|
void SAL_CALL OListBoxControl::focusGained(const FocusEvent& _rEvent) throw(RuntimeException)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
2001-04-26 11:36:28 +00:00
|
|
|
|
::osl::MutexGuard aGuard(m_aMutex);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
if (m_aChangeListeners.getLength()) // only if there are listeners
|
|
|
|
|
{
|
2001-04-26 11:36:28 +00:00
|
|
|
|
Reference<XPropertySet> xSet(getModel(), UNO_QUERY);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
if (xSet.is())
|
|
|
|
|
{
|
|
|
|
|
// memorize the current selection for posting the change event
|
|
|
|
|
m_aCurrentSelection = xSet->getPropertyValue(PROPERTY_SELECT_SEQ);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
2000-11-23 07:48:15 +00:00
|
|
|
|
void SAL_CALL OListBoxControl::focusLost(const FocusEvent& _rEvent) throw(RuntimeException)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
m_aCurrentSelection.clear();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// XItemListener
|
|
|
|
|
//------------------------------------------------------------------------------
|
2000-11-23 07:48:15 +00:00
|
|
|
|
void SAL_CALL OListBoxControl::itemStateChanged(const ItemEvent& _rEvent) throw(RuntimeException)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
// call the changelistener delayed
|
|
|
|
|
::osl::ClearableMutexGuard aGuard(m_aMutex);
|
|
|
|
|
if (m_aChangeTimer.IsActive())
|
|
|
|
|
{
|
2001-04-26 11:36:28 +00:00
|
|
|
|
Reference<XPropertySet> xSet(getModel(), UNO_QUERY);
|
|
|
|
|
m_aCurrentSelection = xSet->getPropertyValue(PROPERTY_SELECT_SEQ);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
|
2001-04-26 11:36:28 +00:00
|
|
|
|
m_aChangeTimer.Stop();
|
|
|
|
|
m_aChangeTimer.Start();
|
2000-09-18 15:33:13 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (m_aChangeListeners.getLength() && m_aCurrentSelection.hasValue())
|
|
|
|
|
{
|
2001-04-26 11:36:28 +00:00
|
|
|
|
Reference<XPropertySet> xSet(getModel(), UNO_QUERY);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
if (xSet.is())
|
|
|
|
|
{
|
|
|
|
|
// Has the selection been changed?
|
|
|
|
|
sal_Bool bModified(sal_False);
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Any aValue = xSet->getPropertyValue(PROPERTY_SELECT_SEQ);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
|
2000-11-23 07:48:15 +00:00
|
|
|
|
Sequence<sal_Int16>& rSelection = *(Sequence<sal_Int16> *)aValue.getValue();
|
|
|
|
|
Sequence<sal_Int16>& rOldSelection = *(Sequence<sal_Int16> *)m_aCurrentSelection.getValue();
|
2000-09-18 15:33:13 +00:00
|
|
|
|
sal_Int32 nLen = rSelection.getLength();
|
|
|
|
|
if (nLen != rOldSelection.getLength())
|
|
|
|
|
bModified = sal_True;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
const sal_Int16* pVal = rSelection.getConstArray();
|
|
|
|
|
const sal_Int16* pCompVal = rOldSelection.getConstArray();
|
|
|
|
|
|
|
|
|
|
while (nLen-- && !bModified)
|
|
|
|
|
bModified = pVal[nLen] != pCompVal[nLen];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (bModified)
|
|
|
|
|
{
|
|
|
|
|
m_aCurrentSelection = aValue;
|
|
|
|
|
m_aChangeTimer.Start();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (m_aCurrentSelection.hasValue())
|
|
|
|
|
m_aCurrentSelection.clear();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// XEventListener
|
|
|
|
|
//------------------------------------------------------------------------------
|
2000-11-23 07:48:15 +00:00
|
|
|
|
void SAL_CALL OListBoxControl::disposing(const EventObject& _rSource) throw (RuntimeException)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
OBoundControl::disposing(_rSource);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// XChangeBroadcaster
|
|
|
|
|
//------------------------------------------------------------------------------
|
2000-11-23 07:48:15 +00:00
|
|
|
|
void SAL_CALL OListBoxControl::addChangeListener(const Reference<XChangeListener>& _rxListener) throw(RuntimeException)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
m_aChangeListeners.addInterface(_rxListener);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
2000-11-23 07:48:15 +00:00
|
|
|
|
void SAL_CALL OListBoxControl::removeChangeListener(const Reference<XChangeListener>& _rxListener) throw(RuntimeException)
|
2000-09-18 15:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
m_aChangeListeners.removeInterface(_rxListener);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// OComponentHelper
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
void OListBoxControl::disposing()
|
|
|
|
|
{
|
|
|
|
|
if (m_aChangeTimer.IsActive())
|
|
|
|
|
m_aChangeTimer.Stop();
|
|
|
|
|
|
2001-04-26 11:36:28 +00:00
|
|
|
|
EventObject aEvt(static_cast< XWeak*>(this));
|
2000-09-18 15:33:13 +00:00
|
|
|
|
m_aChangeListeners.disposeAndClear(aEvt);
|
|
|
|
|
|
|
|
|
|
OBoundControl::disposing();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
IMPL_LINK(OListBoxControl, OnTimeout, void*, EMPTYTAG)
|
|
|
|
|
{
|
2001-04-26 11:36:28 +00:00
|
|
|
|
EventObject aEvt(static_cast< XWeak*>(this));
|
2000-11-23 07:48:15 +00:00
|
|
|
|
NOTIFY_LISTENERS(m_aChangeListeners, XChangeListener, changed, aEvt);
|
2000-09-18 15:33:13 +00:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//.........................................................................
|
|
|
|
|
}
|
|
|
|
|
//.........................................................................
|
|
|
|
|
|