2010-10-12 15:59:03 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-14 17:39:53 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2006-09-17 05:37:36 +00:00
|
|
|
|
2004-08-02 14:05:59 +00:00
|
|
|
#include "ContentHelper.hxx"
|
|
|
|
#include <ucbhelper/cancelcommandexecution.hxx>
|
|
|
|
#include <comphelper/property.hxx>
|
|
|
|
#include <com/sun/star/ucb/UnsupportedCommandException.hpp>
|
|
|
|
#include <com/sun/star/lang/IllegalArgumentException.hpp>
|
|
|
|
#include <com/sun/star/lang/IllegalAccessException.hpp>
|
|
|
|
#include <com/sun/star/io/XOutputStream.hpp>
|
|
|
|
#include <com/sun/star/io/XActiveDataSink.hpp>
|
|
|
|
#include <com/sun/star/beans/PropertyAttribute.hpp>
|
|
|
|
#include <ucbhelper/propertyvalueset.hxx>
|
|
|
|
#include <ucbhelper/contentidentifier.hxx>
|
|
|
|
#include "myucp_resultset.hxx"
|
|
|
|
#include <com/sun/star/container/XNameContainer.hpp>
|
|
|
|
#include "sdbcoretools.hxx"
|
|
|
|
#include "dbastrings.hrc"
|
|
|
|
#include <tools/debug.hxx>
|
|
|
|
|
|
|
|
|
|
|
|
namespace dbaccess
|
|
|
|
{
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
using namespace ::com::sun::star::ucb;
|
|
|
|
using namespace ::com::sun::star::beans;
|
|
|
|
using namespace ::com::sun::star::lang;
|
|
|
|
using namespace ::com::sun::star::sdbc;
|
|
|
|
using namespace ::com::sun::star::io;
|
|
|
|
using namespace ::com::sun::star::util;
|
|
|
|
using namespace ::com::sun::star::embed;
|
|
|
|
using namespace ::com::sun::star::container;
|
|
|
|
using namespace ::comphelper;
|
|
|
|
using namespace ::cppu;
|
|
|
|
|
|
|
|
DBG_NAME(OContentHelper_Impl)
|
|
|
|
OContentHelper_Impl::OContentHelper_Impl()
|
|
|
|
{
|
|
|
|
DBG_CTOR(OContentHelper_Impl,NULL);
|
|
|
|
}
|
2010-10-12 23:48:07 +02:00
|
|
|
|
2004-08-02 14:05:59 +00:00
|
|
|
OContentHelper_Impl::~OContentHelper_Impl()
|
|
|
|
{
|
|
|
|
DBG_DTOR(OContentHelper_Impl,NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
OContentHelper::OContentHelper(const Reference< XMultiServiceFactory >& _xORB
|
|
|
|
,const Reference< XInterface >& _xParentContainer
|
|
|
|
,const TContentPtr& _pImpl)
|
|
|
|
: OContentHelper_COMPBASE(m_aMutex)
|
|
|
|
,m_aContentListeners(m_aMutex)
|
|
|
|
,m_aPropertyChangeListeners(m_aMutex)
|
|
|
|
,m_xParentContainer(_xParentContainer)
|
2007-11-21 14:35:41 +00:00
|
|
|
,m_aContext( _xORB )
|
|
|
|
,m_aErrorHelper( m_aContext )
|
2006-06-20 01:43:26 +00:00
|
|
|
,m_pImpl(_pImpl)
|
|
|
|
,m_nCommandId(0)
|
2004-08-02 14:05:59 +00:00
|
|
|
{
|
|
|
|
}
|
2010-10-12 23:48:07 +02:00
|
|
|
|
2004-08-02 14:05:59 +00:00
|
|
|
void SAL_CALL OContentHelper::disposing()
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard(m_aMutex);
|
|
|
|
|
2010-11-09 22:15:21 +00:00
|
|
|
// say goodbye to our listeners
|
2004-08-02 14:05:59 +00:00
|
|
|
EventObject aEvt(*this);
|
|
|
|
m_aContentListeners.disposeAndClear(aEvt);
|
|
|
|
|
|
|
|
m_xParentContainer = NULL;
|
|
|
|
}
|
2010-10-12 23:48:07 +02:00
|
|
|
|
2004-08-02 14:05:59 +00:00
|
|
|
IMPLEMENT_SERVICE_INFO1(OContentHelper,"com.sun.star.comp.sdb.Content","com.sun.star.ucb.Content");
|
|
|
|
IMPLEMENT_IMPLEMENTATION_ID(OContentHelper)
|
2010-10-12 23:48:07 +02:00
|
|
|
|
2004-08-02 14:05:59 +00:00
|
|
|
// XContent
|
|
|
|
Reference< XContentIdentifier > SAL_CALL OContentHelper::getIdentifier( ) throw (RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard(m_aMutex);
|
CWS-TOOLING: integrate CWS dba32g
2009-09-09 07:53:55 +0200 oj r275964 : replace strlen with rtl_str_getLength
2009-09-07 20:59:10 +0200 fs r275913 : disable the CopyTableWizard test until issue 104869 is fixed
2009-09-07 12:17:31 +0200 oj r275885 : #i104810# remove de as lang
2009-09-05 22:26:21 +0200 fs r275857 : protect StateChanged against re-entrance
2009-09-05 22:25:52 +0200 fs r275856 : don't attempt to classify the parent of a form as control
2009-09-05 22:25:29 +0200 fs r275855 : protect against re-entrance
2009-09-05 00:11:40 +0200 fs r275835 : #i10000#
2009-09-04 23:25:50 +0200 fs r275834 : #i10000#
2009-09-04 23:23:47 +0200 fs r275833 : #i10000#
2009-09-04 21:49:37 +0200 fs r275830 : #i10000# correct wrong conflict resolution
2009-09-04 20:59:51 +0200 fs r275829 : CWS-TOOLING: rebase CWS dba32g to trunk@275801 (milestone: DEV300:m57)
2009-09-04 11:08:32 +0200 oj r275791 : #i104780# new version 1.2.0
2009-09-03 22:29:21 +0200 fs r275775 : OSL_TRACE doesn't need \n anymore
2009-09-03 08:33:21 +0200 fs r275743 : CWS-TOOLING: rebase CWS dba32g to trunk@275331 (milestone: DEV300:m56)
2009-09-02 13:48:12 +0200 fs r275708 : removed useless include
2009-09-02 13:45:43 +0200 fs r275707 : more since tags, which are used across offapi/udkapi
2009-09-02 13:23:04 +0200 fs r275705 : should *not* have the dtor, copy ctor, and assignment operator compiler-generated, else we run into trouble as soon as the compiler creates different versions of our singleton member's static data in different libraries
2009-09-02 12:32:45 +0200 fs r275704 : AutoIncrementIsPrimaryKey is a driver setting, not a data source setting
2009-09-02 11:42:49 +0200 fs r275701 : URL meta data are meta data which are valid for all connections of this type, not per-data-source properties. Settings them as data source properties is a hack.
2009-09-02 08:43:34 +0200 fs r275696 : 3.x.x is not a valid 'since' tag
2009-09-01 16:05:24 +0200 fs r275665 : #i104686# don't treat controls bound to read-only columns as required
2009-09-01 13:10:22 +0200 fs r275657 : #i104574# use PageUp/Down to scroll through the complete page
2009-09-01 07:04:48 +0200 oj r275641 : #i104104# correct line ends
2009-08-31 15:52:34 +0200 fs r275612 : #i104410#
2009-08-31 12:29:05 +0200 fs r275596 : #i104364#
2009-08-31 12:28:56 +0200 fs r275595 : #i104364#
2009-08-31 11:43:09 +0200 fs r275593 : #i104649# JavaDriverClassPath is also a known JDBC-bridge setting
2009-08-31 11:41:37 +0200 fs r275592 : #i104649#
2009-08-28 21:48:27 +0200 fs r275552 : during #i96862#: renamed the configuration data which controls availability of certain DBA-related UI
2009-08-28 21:48:17 +0200 fs r275551 : #i96862# do not show the 'Create a new database' option when a) no embedded/dBase driver is installed or b) the configuration requests to hide the option
2009-08-28 21:47:19 +0200 fs r275550 : during #i96862#: renamed the configuration data which controls availability of certain DBA-related UI
2009-08-28 21:46:41 +0200 fs r275549 : #i96862# renamed and extended the configuration data which controls availability of certain DBA-related UI
2009-08-28 15:10:19 +0200 fs r275535 : #i96862# if no embedded driver is installed, use dBase for creating new DBs. If no dBase driver is installed, too, do not offer the 'Create new database' option
2009-08-28 14:03:04 +0200 fs r275532 : #i104454# allow multiple fields to display the same column
2009-08-28 13:14:00 +0200 fs r275528 : #i104584# driver meta data do not belong into a data source's settings
2009-08-28 13:09:57 +0200 fs r275527 : properly chech the MySQL type buttons (else next/back in the wizard leads to state with two buttons checked)
2009-08-28 13:09:17 +0200 fs r275526 : #i104584# driver meta data do not belong into a data source's settings
2009-08-28 13:07:18 +0200 fs r275525 : BooleanComparisonMode is a property, or a feature - but not a driver meta data
2009-08-28 11:00:31 +0200 fs r275521 : #i104580#
2009-08-28 10:40:05 +0200 fs r275519 : #i104577# correct assertion: If the template node type is ANY, then any value type is allowed
2009-08-28 10:09:30 +0200 fs r275518 : #i104575# implement Named Pipe UI
2009-08-28 10:09:07 +0200 fs r275517 : pass the trigger-event to IWindowOperator::operateOn / work with VclWindowEvents, not VclSimpleEvents
2009-08-27 14:27:36 +0200 fs r275484 : ImplPosTabPage: respect mbEmptyViewMargin for WINDOWALIGN_LEFT
2009-08-27 13:43:56 +0200 fs r275480 : merging latest changes from CWS dba32f herein
2009-08-27 13:23:07 +0200 fs r275475 : #i103882#
2009-08-27 11:56:55 +0200 fs r275466 : #i104544# SetState: Do not call Update at the window which we just set text for. It should (sic\!) not be needed, but causes trouble
2009-08-27 11:55:34 +0200 fs r275465 : #i104544#
do not allow re-entrance for impl_ensureControl_nothrow
Actually, this is part of the fix only. I also removed the code which triggered this re-entrance (from
the grid control implementation), but to ensure it won't happen, again, I added some safety herein.
2009-08-27 10:14:11 +0200 fs r275459 : preparations for supporting a 'NamedPipe' parameter for the MySQL Connector/OOo
2009-08-27 10:13:21 +0200 fs r275458 : preparations for supporting a 'NamedPipe' setting for the MySQL Connector/OOo
2009-08-27 10:11:14 +0200 fs r275456 : outsourced the MySQLNative settings into a dedicated class, to not duplicate all the code in two tab page implementations
2009-08-26 14:18:13 +0200 fs r275422 : #i10000#
2009-08-26 13:26:36 +0200 fs r275419 : ignore output paths
2009-08-26 13:23:38 +0200 fs r275417 : support the LocalSocket property for the MySQL native driver
2009-08-26 13:17:05 +0200 fs r275416 : some re-factoring, to outsource the tab page for setting up the MySQLNative connection, into a dedicated class (needed later)
2009-08-26 13:15:15 +0200 fs r275415 : support a NoThousandSep property for NumericFormatters - I'm tired of correcting this at runtime, instead of controlling it in the resource
2009-08-26 11:45:08 +0200 fs r275410 : oops, 'flat' shouldn't have got lost
2009-08-26 09:38:57 +0200 fs r275398 : #i102631# when saving the document fails, ensure that the interaction handler really can handle/display the error
2009-08-26 09:37:05 +0200 fs r275397 : #i102631# don't let non-IO/RuntimeExceptions escape from DatabaseDocument::store*, wrap them into an IOException
2009-08-26 09:35:39 +0200 fs r275395 : let the default interaction handler implement XInteractionHandler2
2009-08-25 13:51:34 +0200 fs r275352 : #i102631# createTempFile: pass URL through FileHelper.getOOoCompatibleFileURL
2009-08-25 13:49:23 +0200 fs r275351 : #i102631# createTempFileURL: immediately delete the file implicitly created by createTempFile, we really only need the URL
2009-08-24 14:49:07 +0200 fs r275318 : #i10000#
2009-08-24 14:36:03 +0200 fs r275315 : properly terminate message with 0 character
2009-08-24 14:35:45 +0200 fs r275314 : trace method concepts in non-pro, if special flag is enabled
2009-08-24 14:24:17 +0200 fs r275312 : #i98973# filter some more events for grid control columns
2009-08-24 14:15:23 +0200 fs r275311 : #i98973# implement XComboBox for combo box cells
2009-08-24 13:39:24 +0200 fs r275308 : #i98973# do not display the 'actionPerformed' event for grid combo box columns
2009-08-24 12:52:03 +0200 fs r275303 : #i98973# implement XCheckBox and XButton for check box cells
2009-08-24 11:56:05 +0200 oj r275300 : #i104447# wrong default for orientation
2009-08-24 10:51:21 +0200 fs r275296 : in the script selector dialog, interpret a double click onto a function as OK
2009-08-24 10:50:56 +0200 fs r275295 : localize some to-be-displayed names, consolidate some code regarding form/control naming
2009-08-21 14:28:05 +0200 fs r275255 : #i98973# implement KeyListeners
2009-08-21 14:27:20 +0200 fs r275254 : #i98973# move the conversion VCL[Mouse|Key]Event->Awt[Mouse|Key]Event from vclxwindow.cxx to VCLUnoHelper
2009-08-21 14:08:50 +0200 fs r275248 : #i98973# implement Mouse- and MouseMotion-broadcasting
2009-08-21 13:31:08 +0200 fs r275244 : #i98973# implement text and change listeners at text cells
2009-08-21 12:47:38 +0200 fs r275234 : #i104399# some refactoring:
If the MySQL Connector/OOo is installed, it registers for the sdbc:mysqlc: protocol (now known as DST_MYSQL_NATIVE_DIRECT).
However, we do not want to display this in the UI, instead we display "MySQL" only, which collects DST_MYSQL_ODBC, DST_MYSQL_JDBC, and DST_MYSQL_NATIVE.
2009-08-21 12:45:18 +0200 fs r275232 : #i104399# also register for the sdbc:mysql:mysqlc protocol, decide at runtime (depending on the availability of sdbc:mysqlc:), whether it is really accepted. This prevents that the C/OOo extension needs to register *our* implementation name for the sdbc:mysql:mysqlc: protocol, which would be somewhat weird
2009-08-20 16:18:48 +0200 fs r275190 : merging the latest changes from CWS dba32f (which this CWS was created from)
2009-08-19 20:19:59 +0200 fs r275160 : add some spacing between the radios
2009-08-19 14:50:15 +0200 fs r275150 : #i98973# slightly refactoring the grid cell implementations, to prepare for proper events being fired. Implement focus events for the moment, more to come.
2009-08-19 10:53:38 +0200 fs r275142 : #i99936# initialize newly created models
2009-08-18 23:03:48 +0200 fs r275132 : merging latest changes from CWS dba32f
2009-08-18 15:14:08 +0200 fs r275110 : #i102819# SetColumnPos: SCROLL_CLIP is deadly here
2009-09-14 11:18:01 +00:00
|
|
|
::rtl::OUStringBuffer aIdentifier;
|
|
|
|
aIdentifier.appendAscii( "private:" );
|
|
|
|
aIdentifier.append( impl_getHierarchicalName( true ) );
|
|
|
|
return new ::ucbhelper::ContentIdentifier( m_aContext.getLegacyServiceFactory(), aIdentifier.makeStringAndClear() );
|
|
|
|
}
|
2010-10-12 23:48:07 +02:00
|
|
|
|
CWS-TOOLING: integrate CWS dba32g
2009-09-09 07:53:55 +0200 oj r275964 : replace strlen with rtl_str_getLength
2009-09-07 20:59:10 +0200 fs r275913 : disable the CopyTableWizard test until issue 104869 is fixed
2009-09-07 12:17:31 +0200 oj r275885 : #i104810# remove de as lang
2009-09-05 22:26:21 +0200 fs r275857 : protect StateChanged against re-entrance
2009-09-05 22:25:52 +0200 fs r275856 : don't attempt to classify the parent of a form as control
2009-09-05 22:25:29 +0200 fs r275855 : protect against re-entrance
2009-09-05 00:11:40 +0200 fs r275835 : #i10000#
2009-09-04 23:25:50 +0200 fs r275834 : #i10000#
2009-09-04 23:23:47 +0200 fs r275833 : #i10000#
2009-09-04 21:49:37 +0200 fs r275830 : #i10000# correct wrong conflict resolution
2009-09-04 20:59:51 +0200 fs r275829 : CWS-TOOLING: rebase CWS dba32g to trunk@275801 (milestone: DEV300:m57)
2009-09-04 11:08:32 +0200 oj r275791 : #i104780# new version 1.2.0
2009-09-03 22:29:21 +0200 fs r275775 : OSL_TRACE doesn't need \n anymore
2009-09-03 08:33:21 +0200 fs r275743 : CWS-TOOLING: rebase CWS dba32g to trunk@275331 (milestone: DEV300:m56)
2009-09-02 13:48:12 +0200 fs r275708 : removed useless include
2009-09-02 13:45:43 +0200 fs r275707 : more since tags, which are used across offapi/udkapi
2009-09-02 13:23:04 +0200 fs r275705 : should *not* have the dtor, copy ctor, and assignment operator compiler-generated, else we run into trouble as soon as the compiler creates different versions of our singleton member's static data in different libraries
2009-09-02 12:32:45 +0200 fs r275704 : AutoIncrementIsPrimaryKey is a driver setting, not a data source setting
2009-09-02 11:42:49 +0200 fs r275701 : URL meta data are meta data which are valid for all connections of this type, not per-data-source properties. Settings them as data source properties is a hack.
2009-09-02 08:43:34 +0200 fs r275696 : 3.x.x is not a valid 'since' tag
2009-09-01 16:05:24 +0200 fs r275665 : #i104686# don't treat controls bound to read-only columns as required
2009-09-01 13:10:22 +0200 fs r275657 : #i104574# use PageUp/Down to scroll through the complete page
2009-09-01 07:04:48 +0200 oj r275641 : #i104104# correct line ends
2009-08-31 15:52:34 +0200 fs r275612 : #i104410#
2009-08-31 12:29:05 +0200 fs r275596 : #i104364#
2009-08-31 12:28:56 +0200 fs r275595 : #i104364#
2009-08-31 11:43:09 +0200 fs r275593 : #i104649# JavaDriverClassPath is also a known JDBC-bridge setting
2009-08-31 11:41:37 +0200 fs r275592 : #i104649#
2009-08-28 21:48:27 +0200 fs r275552 : during #i96862#: renamed the configuration data which controls availability of certain DBA-related UI
2009-08-28 21:48:17 +0200 fs r275551 : #i96862# do not show the 'Create a new database' option when a) no embedded/dBase driver is installed or b) the configuration requests to hide the option
2009-08-28 21:47:19 +0200 fs r275550 : during #i96862#: renamed the configuration data which controls availability of certain DBA-related UI
2009-08-28 21:46:41 +0200 fs r275549 : #i96862# renamed and extended the configuration data which controls availability of certain DBA-related UI
2009-08-28 15:10:19 +0200 fs r275535 : #i96862# if no embedded driver is installed, use dBase for creating new DBs. If no dBase driver is installed, too, do not offer the 'Create new database' option
2009-08-28 14:03:04 +0200 fs r275532 : #i104454# allow multiple fields to display the same column
2009-08-28 13:14:00 +0200 fs r275528 : #i104584# driver meta data do not belong into a data source's settings
2009-08-28 13:09:57 +0200 fs r275527 : properly chech the MySQL type buttons (else next/back in the wizard leads to state with two buttons checked)
2009-08-28 13:09:17 +0200 fs r275526 : #i104584# driver meta data do not belong into a data source's settings
2009-08-28 13:07:18 +0200 fs r275525 : BooleanComparisonMode is a property, or a feature - but not a driver meta data
2009-08-28 11:00:31 +0200 fs r275521 : #i104580#
2009-08-28 10:40:05 +0200 fs r275519 : #i104577# correct assertion: If the template node type is ANY, then any value type is allowed
2009-08-28 10:09:30 +0200 fs r275518 : #i104575# implement Named Pipe UI
2009-08-28 10:09:07 +0200 fs r275517 : pass the trigger-event to IWindowOperator::operateOn / work with VclWindowEvents, not VclSimpleEvents
2009-08-27 14:27:36 +0200 fs r275484 : ImplPosTabPage: respect mbEmptyViewMargin for WINDOWALIGN_LEFT
2009-08-27 13:43:56 +0200 fs r275480 : merging latest changes from CWS dba32f herein
2009-08-27 13:23:07 +0200 fs r275475 : #i103882#
2009-08-27 11:56:55 +0200 fs r275466 : #i104544# SetState: Do not call Update at the window which we just set text for. It should (sic\!) not be needed, but causes trouble
2009-08-27 11:55:34 +0200 fs r275465 : #i104544#
do not allow re-entrance for impl_ensureControl_nothrow
Actually, this is part of the fix only. I also removed the code which triggered this re-entrance (from
the grid control implementation), but to ensure it won't happen, again, I added some safety herein.
2009-08-27 10:14:11 +0200 fs r275459 : preparations for supporting a 'NamedPipe' parameter for the MySQL Connector/OOo
2009-08-27 10:13:21 +0200 fs r275458 : preparations for supporting a 'NamedPipe' setting for the MySQL Connector/OOo
2009-08-27 10:11:14 +0200 fs r275456 : outsourced the MySQLNative settings into a dedicated class, to not duplicate all the code in two tab page implementations
2009-08-26 14:18:13 +0200 fs r275422 : #i10000#
2009-08-26 13:26:36 +0200 fs r275419 : ignore output paths
2009-08-26 13:23:38 +0200 fs r275417 : support the LocalSocket property for the MySQL native driver
2009-08-26 13:17:05 +0200 fs r275416 : some re-factoring, to outsource the tab page for setting up the MySQLNative connection, into a dedicated class (needed later)
2009-08-26 13:15:15 +0200 fs r275415 : support a NoThousandSep property for NumericFormatters - I'm tired of correcting this at runtime, instead of controlling it in the resource
2009-08-26 11:45:08 +0200 fs r275410 : oops, 'flat' shouldn't have got lost
2009-08-26 09:38:57 +0200 fs r275398 : #i102631# when saving the document fails, ensure that the interaction handler really can handle/display the error
2009-08-26 09:37:05 +0200 fs r275397 : #i102631# don't let non-IO/RuntimeExceptions escape from DatabaseDocument::store*, wrap them into an IOException
2009-08-26 09:35:39 +0200 fs r275395 : let the default interaction handler implement XInteractionHandler2
2009-08-25 13:51:34 +0200 fs r275352 : #i102631# createTempFile: pass URL through FileHelper.getOOoCompatibleFileURL
2009-08-25 13:49:23 +0200 fs r275351 : #i102631# createTempFileURL: immediately delete the file implicitly created by createTempFile, we really only need the URL
2009-08-24 14:49:07 +0200 fs r275318 : #i10000#
2009-08-24 14:36:03 +0200 fs r275315 : properly terminate message with 0 character
2009-08-24 14:35:45 +0200 fs r275314 : trace method concepts in non-pro, if special flag is enabled
2009-08-24 14:24:17 +0200 fs r275312 : #i98973# filter some more events for grid control columns
2009-08-24 14:15:23 +0200 fs r275311 : #i98973# implement XComboBox for combo box cells
2009-08-24 13:39:24 +0200 fs r275308 : #i98973# do not display the 'actionPerformed' event for grid combo box columns
2009-08-24 12:52:03 +0200 fs r275303 : #i98973# implement XCheckBox and XButton for check box cells
2009-08-24 11:56:05 +0200 oj r275300 : #i104447# wrong default for orientation
2009-08-24 10:51:21 +0200 fs r275296 : in the script selector dialog, interpret a double click onto a function as OK
2009-08-24 10:50:56 +0200 fs r275295 : localize some to-be-displayed names, consolidate some code regarding form/control naming
2009-08-21 14:28:05 +0200 fs r275255 : #i98973# implement KeyListeners
2009-08-21 14:27:20 +0200 fs r275254 : #i98973# move the conversion VCL[Mouse|Key]Event->Awt[Mouse|Key]Event from vclxwindow.cxx to VCLUnoHelper
2009-08-21 14:08:50 +0200 fs r275248 : #i98973# implement Mouse- and MouseMotion-broadcasting
2009-08-21 13:31:08 +0200 fs r275244 : #i98973# implement text and change listeners at text cells
2009-08-21 12:47:38 +0200 fs r275234 : #i104399# some refactoring:
If the MySQL Connector/OOo is installed, it registers for the sdbc:mysqlc: protocol (now known as DST_MYSQL_NATIVE_DIRECT).
However, we do not want to display this in the UI, instead we display "MySQL" only, which collects DST_MYSQL_ODBC, DST_MYSQL_JDBC, and DST_MYSQL_NATIVE.
2009-08-21 12:45:18 +0200 fs r275232 : #i104399# also register for the sdbc:mysql:mysqlc protocol, decide at runtime (depending on the availability of sdbc:mysqlc:), whether it is really accepted. This prevents that the C/OOo extension needs to register *our* implementation name for the sdbc:mysql:mysqlc: protocol, which would be somewhat weird
2009-08-20 16:18:48 +0200 fs r275190 : merging the latest changes from CWS dba32f (which this CWS was created from)
2009-08-19 20:19:59 +0200 fs r275160 : add some spacing between the radios
2009-08-19 14:50:15 +0200 fs r275150 : #i98973# slightly refactoring the grid cell implementations, to prepare for proper events being fired. Implement focus events for the moment, more to come.
2009-08-19 10:53:38 +0200 fs r275142 : #i99936# initialize newly created models
2009-08-18 23:03:48 +0200 fs r275132 : merging latest changes from CWS dba32f
2009-08-18 15:14:08 +0200 fs r275110 : #i102819# SetColumnPos: SCROLL_CLIP is deadly here
2009-09-14 11:18:01 +00:00
|
|
|
::rtl::OUString OContentHelper::impl_getHierarchicalName( bool _includingRootContainer ) const
|
|
|
|
{
|
|
|
|
::rtl::OUStringBuffer aHierarchicalName( m_pImpl->m_aProps.aTitle );
|
2004-08-02 14:05:59 +00:00
|
|
|
Reference< XInterface > xParent = m_xParentContainer;
|
|
|
|
while( xParent.is() )
|
|
|
|
{
|
CWS-TOOLING: integrate CWS dba32g
2009-09-09 07:53:55 +0200 oj r275964 : replace strlen with rtl_str_getLength
2009-09-07 20:59:10 +0200 fs r275913 : disable the CopyTableWizard test until issue 104869 is fixed
2009-09-07 12:17:31 +0200 oj r275885 : #i104810# remove de as lang
2009-09-05 22:26:21 +0200 fs r275857 : protect StateChanged against re-entrance
2009-09-05 22:25:52 +0200 fs r275856 : don't attempt to classify the parent of a form as control
2009-09-05 22:25:29 +0200 fs r275855 : protect against re-entrance
2009-09-05 00:11:40 +0200 fs r275835 : #i10000#
2009-09-04 23:25:50 +0200 fs r275834 : #i10000#
2009-09-04 23:23:47 +0200 fs r275833 : #i10000#
2009-09-04 21:49:37 +0200 fs r275830 : #i10000# correct wrong conflict resolution
2009-09-04 20:59:51 +0200 fs r275829 : CWS-TOOLING: rebase CWS dba32g to trunk@275801 (milestone: DEV300:m57)
2009-09-04 11:08:32 +0200 oj r275791 : #i104780# new version 1.2.0
2009-09-03 22:29:21 +0200 fs r275775 : OSL_TRACE doesn't need \n anymore
2009-09-03 08:33:21 +0200 fs r275743 : CWS-TOOLING: rebase CWS dba32g to trunk@275331 (milestone: DEV300:m56)
2009-09-02 13:48:12 +0200 fs r275708 : removed useless include
2009-09-02 13:45:43 +0200 fs r275707 : more since tags, which are used across offapi/udkapi
2009-09-02 13:23:04 +0200 fs r275705 : should *not* have the dtor, copy ctor, and assignment operator compiler-generated, else we run into trouble as soon as the compiler creates different versions of our singleton member's static data in different libraries
2009-09-02 12:32:45 +0200 fs r275704 : AutoIncrementIsPrimaryKey is a driver setting, not a data source setting
2009-09-02 11:42:49 +0200 fs r275701 : URL meta data are meta data which are valid for all connections of this type, not per-data-source properties. Settings them as data source properties is a hack.
2009-09-02 08:43:34 +0200 fs r275696 : 3.x.x is not a valid 'since' tag
2009-09-01 16:05:24 +0200 fs r275665 : #i104686# don't treat controls bound to read-only columns as required
2009-09-01 13:10:22 +0200 fs r275657 : #i104574# use PageUp/Down to scroll through the complete page
2009-09-01 07:04:48 +0200 oj r275641 : #i104104# correct line ends
2009-08-31 15:52:34 +0200 fs r275612 : #i104410#
2009-08-31 12:29:05 +0200 fs r275596 : #i104364#
2009-08-31 12:28:56 +0200 fs r275595 : #i104364#
2009-08-31 11:43:09 +0200 fs r275593 : #i104649# JavaDriverClassPath is also a known JDBC-bridge setting
2009-08-31 11:41:37 +0200 fs r275592 : #i104649#
2009-08-28 21:48:27 +0200 fs r275552 : during #i96862#: renamed the configuration data which controls availability of certain DBA-related UI
2009-08-28 21:48:17 +0200 fs r275551 : #i96862# do not show the 'Create a new database' option when a) no embedded/dBase driver is installed or b) the configuration requests to hide the option
2009-08-28 21:47:19 +0200 fs r275550 : during #i96862#: renamed the configuration data which controls availability of certain DBA-related UI
2009-08-28 21:46:41 +0200 fs r275549 : #i96862# renamed and extended the configuration data which controls availability of certain DBA-related UI
2009-08-28 15:10:19 +0200 fs r275535 : #i96862# if no embedded driver is installed, use dBase for creating new DBs. If no dBase driver is installed, too, do not offer the 'Create new database' option
2009-08-28 14:03:04 +0200 fs r275532 : #i104454# allow multiple fields to display the same column
2009-08-28 13:14:00 +0200 fs r275528 : #i104584# driver meta data do not belong into a data source's settings
2009-08-28 13:09:57 +0200 fs r275527 : properly chech the MySQL type buttons (else next/back in the wizard leads to state with two buttons checked)
2009-08-28 13:09:17 +0200 fs r275526 : #i104584# driver meta data do not belong into a data source's settings
2009-08-28 13:07:18 +0200 fs r275525 : BooleanComparisonMode is a property, or a feature - but not a driver meta data
2009-08-28 11:00:31 +0200 fs r275521 : #i104580#
2009-08-28 10:40:05 +0200 fs r275519 : #i104577# correct assertion: If the template node type is ANY, then any value type is allowed
2009-08-28 10:09:30 +0200 fs r275518 : #i104575# implement Named Pipe UI
2009-08-28 10:09:07 +0200 fs r275517 : pass the trigger-event to IWindowOperator::operateOn / work with VclWindowEvents, not VclSimpleEvents
2009-08-27 14:27:36 +0200 fs r275484 : ImplPosTabPage: respect mbEmptyViewMargin for WINDOWALIGN_LEFT
2009-08-27 13:43:56 +0200 fs r275480 : merging latest changes from CWS dba32f herein
2009-08-27 13:23:07 +0200 fs r275475 : #i103882#
2009-08-27 11:56:55 +0200 fs r275466 : #i104544# SetState: Do not call Update at the window which we just set text for. It should (sic\!) not be needed, but causes trouble
2009-08-27 11:55:34 +0200 fs r275465 : #i104544#
do not allow re-entrance for impl_ensureControl_nothrow
Actually, this is part of the fix only. I also removed the code which triggered this re-entrance (from
the grid control implementation), but to ensure it won't happen, again, I added some safety herein.
2009-08-27 10:14:11 +0200 fs r275459 : preparations for supporting a 'NamedPipe' parameter for the MySQL Connector/OOo
2009-08-27 10:13:21 +0200 fs r275458 : preparations for supporting a 'NamedPipe' setting for the MySQL Connector/OOo
2009-08-27 10:11:14 +0200 fs r275456 : outsourced the MySQLNative settings into a dedicated class, to not duplicate all the code in two tab page implementations
2009-08-26 14:18:13 +0200 fs r275422 : #i10000#
2009-08-26 13:26:36 +0200 fs r275419 : ignore output paths
2009-08-26 13:23:38 +0200 fs r275417 : support the LocalSocket property for the MySQL native driver
2009-08-26 13:17:05 +0200 fs r275416 : some re-factoring, to outsource the tab page for setting up the MySQLNative connection, into a dedicated class (needed later)
2009-08-26 13:15:15 +0200 fs r275415 : support a NoThousandSep property for NumericFormatters - I'm tired of correcting this at runtime, instead of controlling it in the resource
2009-08-26 11:45:08 +0200 fs r275410 : oops, 'flat' shouldn't have got lost
2009-08-26 09:38:57 +0200 fs r275398 : #i102631# when saving the document fails, ensure that the interaction handler really can handle/display the error
2009-08-26 09:37:05 +0200 fs r275397 : #i102631# don't let non-IO/RuntimeExceptions escape from DatabaseDocument::store*, wrap them into an IOException
2009-08-26 09:35:39 +0200 fs r275395 : let the default interaction handler implement XInteractionHandler2
2009-08-25 13:51:34 +0200 fs r275352 : #i102631# createTempFile: pass URL through FileHelper.getOOoCompatibleFileURL
2009-08-25 13:49:23 +0200 fs r275351 : #i102631# createTempFileURL: immediately delete the file implicitly created by createTempFile, we really only need the URL
2009-08-24 14:49:07 +0200 fs r275318 : #i10000#
2009-08-24 14:36:03 +0200 fs r275315 : properly terminate message with 0 character
2009-08-24 14:35:45 +0200 fs r275314 : trace method concepts in non-pro, if special flag is enabled
2009-08-24 14:24:17 +0200 fs r275312 : #i98973# filter some more events for grid control columns
2009-08-24 14:15:23 +0200 fs r275311 : #i98973# implement XComboBox for combo box cells
2009-08-24 13:39:24 +0200 fs r275308 : #i98973# do not display the 'actionPerformed' event for grid combo box columns
2009-08-24 12:52:03 +0200 fs r275303 : #i98973# implement XCheckBox and XButton for check box cells
2009-08-24 11:56:05 +0200 oj r275300 : #i104447# wrong default for orientation
2009-08-24 10:51:21 +0200 fs r275296 : in the script selector dialog, interpret a double click onto a function as OK
2009-08-24 10:50:56 +0200 fs r275295 : localize some to-be-displayed names, consolidate some code regarding form/control naming
2009-08-21 14:28:05 +0200 fs r275255 : #i98973# implement KeyListeners
2009-08-21 14:27:20 +0200 fs r275254 : #i98973# move the conversion VCL[Mouse|Key]Event->Awt[Mouse|Key]Event from vclxwindow.cxx to VCLUnoHelper
2009-08-21 14:08:50 +0200 fs r275248 : #i98973# implement Mouse- and MouseMotion-broadcasting
2009-08-21 13:31:08 +0200 fs r275244 : #i98973# implement text and change listeners at text cells
2009-08-21 12:47:38 +0200 fs r275234 : #i104399# some refactoring:
If the MySQL Connector/OOo is installed, it registers for the sdbc:mysqlc: protocol (now known as DST_MYSQL_NATIVE_DIRECT).
However, we do not want to display this in the UI, instead we display "MySQL" only, which collects DST_MYSQL_ODBC, DST_MYSQL_JDBC, and DST_MYSQL_NATIVE.
2009-08-21 12:45:18 +0200 fs r275232 : #i104399# also register for the sdbc:mysql:mysqlc protocol, decide at runtime (depending on the availability of sdbc:mysqlc:), whether it is really accepted. This prevents that the C/OOo extension needs to register *our* implementation name for the sdbc:mysql:mysqlc: protocol, which would be somewhat weird
2009-08-20 16:18:48 +0200 fs r275190 : merging the latest changes from CWS dba32f (which this CWS was created from)
2009-08-19 20:19:59 +0200 fs r275160 : add some spacing between the radios
2009-08-19 14:50:15 +0200 fs r275150 : #i98973# slightly refactoring the grid cell implementations, to prepare for proper events being fired. Implement focus events for the moment, more to come.
2009-08-19 10:53:38 +0200 fs r275142 : #i99936# initialize newly created models
2009-08-18 23:03:48 +0200 fs r275132 : merging latest changes from CWS dba32f
2009-08-18 15:14:08 +0200 fs r275110 : #i102819# SetColumnPos: SCROLL_CLIP is deadly here
2009-09-14 11:18:01 +00:00
|
|
|
Reference<XPropertySet> xProp( xParent, UNO_QUERY );
|
|
|
|
Reference< XChild > xChild( xParent, UNO_QUERY );
|
|
|
|
xParent.set( xChild.is() ? xChild->getParent() : Reference< XInterface >(), UNO_QUERY );
|
2004-08-02 14:05:59 +00:00
|
|
|
if ( xProp.is() && xParent.is() )
|
|
|
|
{
|
|
|
|
::rtl::OUString sName;
|
CWS-TOOLING: integrate CWS dba32g
2009-09-09 07:53:55 +0200 oj r275964 : replace strlen with rtl_str_getLength
2009-09-07 20:59:10 +0200 fs r275913 : disable the CopyTableWizard test until issue 104869 is fixed
2009-09-07 12:17:31 +0200 oj r275885 : #i104810# remove de as lang
2009-09-05 22:26:21 +0200 fs r275857 : protect StateChanged against re-entrance
2009-09-05 22:25:52 +0200 fs r275856 : don't attempt to classify the parent of a form as control
2009-09-05 22:25:29 +0200 fs r275855 : protect against re-entrance
2009-09-05 00:11:40 +0200 fs r275835 : #i10000#
2009-09-04 23:25:50 +0200 fs r275834 : #i10000#
2009-09-04 23:23:47 +0200 fs r275833 : #i10000#
2009-09-04 21:49:37 +0200 fs r275830 : #i10000# correct wrong conflict resolution
2009-09-04 20:59:51 +0200 fs r275829 : CWS-TOOLING: rebase CWS dba32g to trunk@275801 (milestone: DEV300:m57)
2009-09-04 11:08:32 +0200 oj r275791 : #i104780# new version 1.2.0
2009-09-03 22:29:21 +0200 fs r275775 : OSL_TRACE doesn't need \n anymore
2009-09-03 08:33:21 +0200 fs r275743 : CWS-TOOLING: rebase CWS dba32g to trunk@275331 (milestone: DEV300:m56)
2009-09-02 13:48:12 +0200 fs r275708 : removed useless include
2009-09-02 13:45:43 +0200 fs r275707 : more since tags, which are used across offapi/udkapi
2009-09-02 13:23:04 +0200 fs r275705 : should *not* have the dtor, copy ctor, and assignment operator compiler-generated, else we run into trouble as soon as the compiler creates different versions of our singleton member's static data in different libraries
2009-09-02 12:32:45 +0200 fs r275704 : AutoIncrementIsPrimaryKey is a driver setting, not a data source setting
2009-09-02 11:42:49 +0200 fs r275701 : URL meta data are meta data which are valid for all connections of this type, not per-data-source properties. Settings them as data source properties is a hack.
2009-09-02 08:43:34 +0200 fs r275696 : 3.x.x is not a valid 'since' tag
2009-09-01 16:05:24 +0200 fs r275665 : #i104686# don't treat controls bound to read-only columns as required
2009-09-01 13:10:22 +0200 fs r275657 : #i104574# use PageUp/Down to scroll through the complete page
2009-09-01 07:04:48 +0200 oj r275641 : #i104104# correct line ends
2009-08-31 15:52:34 +0200 fs r275612 : #i104410#
2009-08-31 12:29:05 +0200 fs r275596 : #i104364#
2009-08-31 12:28:56 +0200 fs r275595 : #i104364#
2009-08-31 11:43:09 +0200 fs r275593 : #i104649# JavaDriverClassPath is also a known JDBC-bridge setting
2009-08-31 11:41:37 +0200 fs r275592 : #i104649#
2009-08-28 21:48:27 +0200 fs r275552 : during #i96862#: renamed the configuration data which controls availability of certain DBA-related UI
2009-08-28 21:48:17 +0200 fs r275551 : #i96862# do not show the 'Create a new database' option when a) no embedded/dBase driver is installed or b) the configuration requests to hide the option
2009-08-28 21:47:19 +0200 fs r275550 : during #i96862#: renamed the configuration data which controls availability of certain DBA-related UI
2009-08-28 21:46:41 +0200 fs r275549 : #i96862# renamed and extended the configuration data which controls availability of certain DBA-related UI
2009-08-28 15:10:19 +0200 fs r275535 : #i96862# if no embedded driver is installed, use dBase for creating new DBs. If no dBase driver is installed, too, do not offer the 'Create new database' option
2009-08-28 14:03:04 +0200 fs r275532 : #i104454# allow multiple fields to display the same column
2009-08-28 13:14:00 +0200 fs r275528 : #i104584# driver meta data do not belong into a data source's settings
2009-08-28 13:09:57 +0200 fs r275527 : properly chech the MySQL type buttons (else next/back in the wizard leads to state with two buttons checked)
2009-08-28 13:09:17 +0200 fs r275526 : #i104584# driver meta data do not belong into a data source's settings
2009-08-28 13:07:18 +0200 fs r275525 : BooleanComparisonMode is a property, or a feature - but not a driver meta data
2009-08-28 11:00:31 +0200 fs r275521 : #i104580#
2009-08-28 10:40:05 +0200 fs r275519 : #i104577# correct assertion: If the template node type is ANY, then any value type is allowed
2009-08-28 10:09:30 +0200 fs r275518 : #i104575# implement Named Pipe UI
2009-08-28 10:09:07 +0200 fs r275517 : pass the trigger-event to IWindowOperator::operateOn / work with VclWindowEvents, not VclSimpleEvents
2009-08-27 14:27:36 +0200 fs r275484 : ImplPosTabPage: respect mbEmptyViewMargin for WINDOWALIGN_LEFT
2009-08-27 13:43:56 +0200 fs r275480 : merging latest changes from CWS dba32f herein
2009-08-27 13:23:07 +0200 fs r275475 : #i103882#
2009-08-27 11:56:55 +0200 fs r275466 : #i104544# SetState: Do not call Update at the window which we just set text for. It should (sic\!) not be needed, but causes trouble
2009-08-27 11:55:34 +0200 fs r275465 : #i104544#
do not allow re-entrance for impl_ensureControl_nothrow
Actually, this is part of the fix only. I also removed the code which triggered this re-entrance (from
the grid control implementation), but to ensure it won't happen, again, I added some safety herein.
2009-08-27 10:14:11 +0200 fs r275459 : preparations for supporting a 'NamedPipe' parameter for the MySQL Connector/OOo
2009-08-27 10:13:21 +0200 fs r275458 : preparations for supporting a 'NamedPipe' setting for the MySQL Connector/OOo
2009-08-27 10:11:14 +0200 fs r275456 : outsourced the MySQLNative settings into a dedicated class, to not duplicate all the code in two tab page implementations
2009-08-26 14:18:13 +0200 fs r275422 : #i10000#
2009-08-26 13:26:36 +0200 fs r275419 : ignore output paths
2009-08-26 13:23:38 +0200 fs r275417 : support the LocalSocket property for the MySQL native driver
2009-08-26 13:17:05 +0200 fs r275416 : some re-factoring, to outsource the tab page for setting up the MySQLNative connection, into a dedicated class (needed later)
2009-08-26 13:15:15 +0200 fs r275415 : support a NoThousandSep property for NumericFormatters - I'm tired of correcting this at runtime, instead of controlling it in the resource
2009-08-26 11:45:08 +0200 fs r275410 : oops, 'flat' shouldn't have got lost
2009-08-26 09:38:57 +0200 fs r275398 : #i102631# when saving the document fails, ensure that the interaction handler really can handle/display the error
2009-08-26 09:37:05 +0200 fs r275397 : #i102631# don't let non-IO/RuntimeExceptions escape from DatabaseDocument::store*, wrap them into an IOException
2009-08-26 09:35:39 +0200 fs r275395 : let the default interaction handler implement XInteractionHandler2
2009-08-25 13:51:34 +0200 fs r275352 : #i102631# createTempFile: pass URL through FileHelper.getOOoCompatibleFileURL
2009-08-25 13:49:23 +0200 fs r275351 : #i102631# createTempFileURL: immediately delete the file implicitly created by createTempFile, we really only need the URL
2009-08-24 14:49:07 +0200 fs r275318 : #i10000#
2009-08-24 14:36:03 +0200 fs r275315 : properly terminate message with 0 character
2009-08-24 14:35:45 +0200 fs r275314 : trace method concepts in non-pro, if special flag is enabled
2009-08-24 14:24:17 +0200 fs r275312 : #i98973# filter some more events for grid control columns
2009-08-24 14:15:23 +0200 fs r275311 : #i98973# implement XComboBox for combo box cells
2009-08-24 13:39:24 +0200 fs r275308 : #i98973# do not display the 'actionPerformed' event for grid combo box columns
2009-08-24 12:52:03 +0200 fs r275303 : #i98973# implement XCheckBox and XButton for check box cells
2009-08-24 11:56:05 +0200 oj r275300 : #i104447# wrong default for orientation
2009-08-24 10:51:21 +0200 fs r275296 : in the script selector dialog, interpret a double click onto a function as OK
2009-08-24 10:50:56 +0200 fs r275295 : localize some to-be-displayed names, consolidate some code regarding form/control naming
2009-08-21 14:28:05 +0200 fs r275255 : #i98973# implement KeyListeners
2009-08-21 14:27:20 +0200 fs r275254 : #i98973# move the conversion VCL[Mouse|Key]Event->Awt[Mouse|Key]Event from vclxwindow.cxx to VCLUnoHelper
2009-08-21 14:08:50 +0200 fs r275248 : #i98973# implement Mouse- and MouseMotion-broadcasting
2009-08-21 13:31:08 +0200 fs r275244 : #i98973# implement text and change listeners at text cells
2009-08-21 12:47:38 +0200 fs r275234 : #i104399# some refactoring:
If the MySQL Connector/OOo is installed, it registers for the sdbc:mysqlc: protocol (now known as DST_MYSQL_NATIVE_DIRECT).
However, we do not want to display this in the UI, instead we display "MySQL" only, which collects DST_MYSQL_ODBC, DST_MYSQL_JDBC, and DST_MYSQL_NATIVE.
2009-08-21 12:45:18 +0200 fs r275232 : #i104399# also register for the sdbc:mysql:mysqlc protocol, decide at runtime (depending on the availability of sdbc:mysqlc:), whether it is really accepted. This prevents that the C/OOo extension needs to register *our* implementation name for the sdbc:mysql:mysqlc: protocol, which would be somewhat weird
2009-08-20 16:18:48 +0200 fs r275190 : merging the latest changes from CWS dba32f (which this CWS was created from)
2009-08-19 20:19:59 +0200 fs r275160 : add some spacing between the radios
2009-08-19 14:50:15 +0200 fs r275150 : #i98973# slightly refactoring the grid cell implementations, to prepare for proper events being fired. Implement focus events for the moment, more to come.
2009-08-19 10:53:38 +0200 fs r275142 : #i99936# initialize newly created models
2009-08-18 23:03:48 +0200 fs r275132 : merging latest changes from CWS dba32f
2009-08-18 15:14:08 +0200 fs r275110 : #i102819# SetColumnPos: SCROLL_CLIP is deadly here
2009-09-14 11:18:01 +00:00
|
|
|
xProp->getPropertyValue( PROPERTY_NAME ) >>= sName;
|
|
|
|
|
|
|
|
::rtl::OUString sPrevious = aHierarchicalName.makeStringAndClear();
|
|
|
|
aHierarchicalName.append( sName );
|
|
|
|
aHierarchicalName.append( sal_Unicode( '/' ) );
|
|
|
|
aHierarchicalName.append( sPrevious );
|
2004-08-02 14:05:59 +00:00
|
|
|
}
|
|
|
|
}
|
CWS-TOOLING: integrate CWS dba32g
2009-09-09 07:53:55 +0200 oj r275964 : replace strlen with rtl_str_getLength
2009-09-07 20:59:10 +0200 fs r275913 : disable the CopyTableWizard test until issue 104869 is fixed
2009-09-07 12:17:31 +0200 oj r275885 : #i104810# remove de as lang
2009-09-05 22:26:21 +0200 fs r275857 : protect StateChanged against re-entrance
2009-09-05 22:25:52 +0200 fs r275856 : don't attempt to classify the parent of a form as control
2009-09-05 22:25:29 +0200 fs r275855 : protect against re-entrance
2009-09-05 00:11:40 +0200 fs r275835 : #i10000#
2009-09-04 23:25:50 +0200 fs r275834 : #i10000#
2009-09-04 23:23:47 +0200 fs r275833 : #i10000#
2009-09-04 21:49:37 +0200 fs r275830 : #i10000# correct wrong conflict resolution
2009-09-04 20:59:51 +0200 fs r275829 : CWS-TOOLING: rebase CWS dba32g to trunk@275801 (milestone: DEV300:m57)
2009-09-04 11:08:32 +0200 oj r275791 : #i104780# new version 1.2.0
2009-09-03 22:29:21 +0200 fs r275775 : OSL_TRACE doesn't need \n anymore
2009-09-03 08:33:21 +0200 fs r275743 : CWS-TOOLING: rebase CWS dba32g to trunk@275331 (milestone: DEV300:m56)
2009-09-02 13:48:12 +0200 fs r275708 : removed useless include
2009-09-02 13:45:43 +0200 fs r275707 : more since tags, which are used across offapi/udkapi
2009-09-02 13:23:04 +0200 fs r275705 : should *not* have the dtor, copy ctor, and assignment operator compiler-generated, else we run into trouble as soon as the compiler creates different versions of our singleton member's static data in different libraries
2009-09-02 12:32:45 +0200 fs r275704 : AutoIncrementIsPrimaryKey is a driver setting, not a data source setting
2009-09-02 11:42:49 +0200 fs r275701 : URL meta data are meta data which are valid for all connections of this type, not per-data-source properties. Settings them as data source properties is a hack.
2009-09-02 08:43:34 +0200 fs r275696 : 3.x.x is not a valid 'since' tag
2009-09-01 16:05:24 +0200 fs r275665 : #i104686# don't treat controls bound to read-only columns as required
2009-09-01 13:10:22 +0200 fs r275657 : #i104574# use PageUp/Down to scroll through the complete page
2009-09-01 07:04:48 +0200 oj r275641 : #i104104# correct line ends
2009-08-31 15:52:34 +0200 fs r275612 : #i104410#
2009-08-31 12:29:05 +0200 fs r275596 : #i104364#
2009-08-31 12:28:56 +0200 fs r275595 : #i104364#
2009-08-31 11:43:09 +0200 fs r275593 : #i104649# JavaDriverClassPath is also a known JDBC-bridge setting
2009-08-31 11:41:37 +0200 fs r275592 : #i104649#
2009-08-28 21:48:27 +0200 fs r275552 : during #i96862#: renamed the configuration data which controls availability of certain DBA-related UI
2009-08-28 21:48:17 +0200 fs r275551 : #i96862# do not show the 'Create a new database' option when a) no embedded/dBase driver is installed or b) the configuration requests to hide the option
2009-08-28 21:47:19 +0200 fs r275550 : during #i96862#: renamed the configuration data which controls availability of certain DBA-related UI
2009-08-28 21:46:41 +0200 fs r275549 : #i96862# renamed and extended the configuration data which controls availability of certain DBA-related UI
2009-08-28 15:10:19 +0200 fs r275535 : #i96862# if no embedded driver is installed, use dBase for creating new DBs. If no dBase driver is installed, too, do not offer the 'Create new database' option
2009-08-28 14:03:04 +0200 fs r275532 : #i104454# allow multiple fields to display the same column
2009-08-28 13:14:00 +0200 fs r275528 : #i104584# driver meta data do not belong into a data source's settings
2009-08-28 13:09:57 +0200 fs r275527 : properly chech the MySQL type buttons (else next/back in the wizard leads to state with two buttons checked)
2009-08-28 13:09:17 +0200 fs r275526 : #i104584# driver meta data do not belong into a data source's settings
2009-08-28 13:07:18 +0200 fs r275525 : BooleanComparisonMode is a property, or a feature - but not a driver meta data
2009-08-28 11:00:31 +0200 fs r275521 : #i104580#
2009-08-28 10:40:05 +0200 fs r275519 : #i104577# correct assertion: If the template node type is ANY, then any value type is allowed
2009-08-28 10:09:30 +0200 fs r275518 : #i104575# implement Named Pipe UI
2009-08-28 10:09:07 +0200 fs r275517 : pass the trigger-event to IWindowOperator::operateOn / work with VclWindowEvents, not VclSimpleEvents
2009-08-27 14:27:36 +0200 fs r275484 : ImplPosTabPage: respect mbEmptyViewMargin for WINDOWALIGN_LEFT
2009-08-27 13:43:56 +0200 fs r275480 : merging latest changes from CWS dba32f herein
2009-08-27 13:23:07 +0200 fs r275475 : #i103882#
2009-08-27 11:56:55 +0200 fs r275466 : #i104544# SetState: Do not call Update at the window which we just set text for. It should (sic\!) not be needed, but causes trouble
2009-08-27 11:55:34 +0200 fs r275465 : #i104544#
do not allow re-entrance for impl_ensureControl_nothrow
Actually, this is part of the fix only. I also removed the code which triggered this re-entrance (from
the grid control implementation), but to ensure it won't happen, again, I added some safety herein.
2009-08-27 10:14:11 +0200 fs r275459 : preparations for supporting a 'NamedPipe' parameter for the MySQL Connector/OOo
2009-08-27 10:13:21 +0200 fs r275458 : preparations for supporting a 'NamedPipe' setting for the MySQL Connector/OOo
2009-08-27 10:11:14 +0200 fs r275456 : outsourced the MySQLNative settings into a dedicated class, to not duplicate all the code in two tab page implementations
2009-08-26 14:18:13 +0200 fs r275422 : #i10000#
2009-08-26 13:26:36 +0200 fs r275419 : ignore output paths
2009-08-26 13:23:38 +0200 fs r275417 : support the LocalSocket property for the MySQL native driver
2009-08-26 13:17:05 +0200 fs r275416 : some re-factoring, to outsource the tab page for setting up the MySQLNative connection, into a dedicated class (needed later)
2009-08-26 13:15:15 +0200 fs r275415 : support a NoThousandSep property for NumericFormatters - I'm tired of correcting this at runtime, instead of controlling it in the resource
2009-08-26 11:45:08 +0200 fs r275410 : oops, 'flat' shouldn't have got lost
2009-08-26 09:38:57 +0200 fs r275398 : #i102631# when saving the document fails, ensure that the interaction handler really can handle/display the error
2009-08-26 09:37:05 +0200 fs r275397 : #i102631# don't let non-IO/RuntimeExceptions escape from DatabaseDocument::store*, wrap them into an IOException
2009-08-26 09:35:39 +0200 fs r275395 : let the default interaction handler implement XInteractionHandler2
2009-08-25 13:51:34 +0200 fs r275352 : #i102631# createTempFile: pass URL through FileHelper.getOOoCompatibleFileURL
2009-08-25 13:49:23 +0200 fs r275351 : #i102631# createTempFileURL: immediately delete the file implicitly created by createTempFile, we really only need the URL
2009-08-24 14:49:07 +0200 fs r275318 : #i10000#
2009-08-24 14:36:03 +0200 fs r275315 : properly terminate message with 0 character
2009-08-24 14:35:45 +0200 fs r275314 : trace method concepts in non-pro, if special flag is enabled
2009-08-24 14:24:17 +0200 fs r275312 : #i98973# filter some more events for grid control columns
2009-08-24 14:15:23 +0200 fs r275311 : #i98973# implement XComboBox for combo box cells
2009-08-24 13:39:24 +0200 fs r275308 : #i98973# do not display the 'actionPerformed' event for grid combo box columns
2009-08-24 12:52:03 +0200 fs r275303 : #i98973# implement XCheckBox and XButton for check box cells
2009-08-24 11:56:05 +0200 oj r275300 : #i104447# wrong default for orientation
2009-08-24 10:51:21 +0200 fs r275296 : in the script selector dialog, interpret a double click onto a function as OK
2009-08-24 10:50:56 +0200 fs r275295 : localize some to-be-displayed names, consolidate some code regarding form/control naming
2009-08-21 14:28:05 +0200 fs r275255 : #i98973# implement KeyListeners
2009-08-21 14:27:20 +0200 fs r275254 : #i98973# move the conversion VCL[Mouse|Key]Event->Awt[Mouse|Key]Event from vclxwindow.cxx to VCLUnoHelper
2009-08-21 14:08:50 +0200 fs r275248 : #i98973# implement Mouse- and MouseMotion-broadcasting
2009-08-21 13:31:08 +0200 fs r275244 : #i98973# implement text and change listeners at text cells
2009-08-21 12:47:38 +0200 fs r275234 : #i104399# some refactoring:
If the MySQL Connector/OOo is installed, it registers for the sdbc:mysqlc: protocol (now known as DST_MYSQL_NATIVE_DIRECT).
However, we do not want to display this in the UI, instead we display "MySQL" only, which collects DST_MYSQL_ODBC, DST_MYSQL_JDBC, and DST_MYSQL_NATIVE.
2009-08-21 12:45:18 +0200 fs r275232 : #i104399# also register for the sdbc:mysql:mysqlc protocol, decide at runtime (depending on the availability of sdbc:mysqlc:), whether it is really accepted. This prevents that the C/OOo extension needs to register *our* implementation name for the sdbc:mysql:mysqlc: protocol, which would be somewhat weird
2009-08-20 16:18:48 +0200 fs r275190 : merging the latest changes from CWS dba32f (which this CWS was created from)
2009-08-19 20:19:59 +0200 fs r275160 : add some spacing between the radios
2009-08-19 14:50:15 +0200 fs r275150 : #i98973# slightly refactoring the grid cell implementations, to prepare for proper events being fired. Implement focus events for the moment, more to come.
2009-08-19 10:53:38 +0200 fs r275142 : #i99936# initialize newly created models
2009-08-18 23:03:48 +0200 fs r275132 : merging latest changes from CWS dba32f
2009-08-18 15:14:08 +0200 fs r275110 : #i102819# SetColumnPos: SCROLL_CLIP is deadly here
2009-09-14 11:18:01 +00:00
|
|
|
::rtl::OUString sHierarchicalName( aHierarchicalName.makeStringAndClear() );
|
|
|
|
if ( !_includingRootContainer )
|
|
|
|
sHierarchicalName = sHierarchicalName.copy( sHierarchicalName.indexOf( '/' ) + 1 );
|
|
|
|
return sHierarchicalName;
|
2004-08-02 14:05:59 +00:00
|
|
|
}
|
CWS-TOOLING: integrate CWS dba32g
2009-09-09 07:53:55 +0200 oj r275964 : replace strlen with rtl_str_getLength
2009-09-07 20:59:10 +0200 fs r275913 : disable the CopyTableWizard test until issue 104869 is fixed
2009-09-07 12:17:31 +0200 oj r275885 : #i104810# remove de as lang
2009-09-05 22:26:21 +0200 fs r275857 : protect StateChanged against re-entrance
2009-09-05 22:25:52 +0200 fs r275856 : don't attempt to classify the parent of a form as control
2009-09-05 22:25:29 +0200 fs r275855 : protect against re-entrance
2009-09-05 00:11:40 +0200 fs r275835 : #i10000#
2009-09-04 23:25:50 +0200 fs r275834 : #i10000#
2009-09-04 23:23:47 +0200 fs r275833 : #i10000#
2009-09-04 21:49:37 +0200 fs r275830 : #i10000# correct wrong conflict resolution
2009-09-04 20:59:51 +0200 fs r275829 : CWS-TOOLING: rebase CWS dba32g to trunk@275801 (milestone: DEV300:m57)
2009-09-04 11:08:32 +0200 oj r275791 : #i104780# new version 1.2.0
2009-09-03 22:29:21 +0200 fs r275775 : OSL_TRACE doesn't need \n anymore
2009-09-03 08:33:21 +0200 fs r275743 : CWS-TOOLING: rebase CWS dba32g to trunk@275331 (milestone: DEV300:m56)
2009-09-02 13:48:12 +0200 fs r275708 : removed useless include
2009-09-02 13:45:43 +0200 fs r275707 : more since tags, which are used across offapi/udkapi
2009-09-02 13:23:04 +0200 fs r275705 : should *not* have the dtor, copy ctor, and assignment operator compiler-generated, else we run into trouble as soon as the compiler creates different versions of our singleton member's static data in different libraries
2009-09-02 12:32:45 +0200 fs r275704 : AutoIncrementIsPrimaryKey is a driver setting, not a data source setting
2009-09-02 11:42:49 +0200 fs r275701 : URL meta data are meta data which are valid for all connections of this type, not per-data-source properties. Settings them as data source properties is a hack.
2009-09-02 08:43:34 +0200 fs r275696 : 3.x.x is not a valid 'since' tag
2009-09-01 16:05:24 +0200 fs r275665 : #i104686# don't treat controls bound to read-only columns as required
2009-09-01 13:10:22 +0200 fs r275657 : #i104574# use PageUp/Down to scroll through the complete page
2009-09-01 07:04:48 +0200 oj r275641 : #i104104# correct line ends
2009-08-31 15:52:34 +0200 fs r275612 : #i104410#
2009-08-31 12:29:05 +0200 fs r275596 : #i104364#
2009-08-31 12:28:56 +0200 fs r275595 : #i104364#
2009-08-31 11:43:09 +0200 fs r275593 : #i104649# JavaDriverClassPath is also a known JDBC-bridge setting
2009-08-31 11:41:37 +0200 fs r275592 : #i104649#
2009-08-28 21:48:27 +0200 fs r275552 : during #i96862#: renamed the configuration data which controls availability of certain DBA-related UI
2009-08-28 21:48:17 +0200 fs r275551 : #i96862# do not show the 'Create a new database' option when a) no embedded/dBase driver is installed or b) the configuration requests to hide the option
2009-08-28 21:47:19 +0200 fs r275550 : during #i96862#: renamed the configuration data which controls availability of certain DBA-related UI
2009-08-28 21:46:41 +0200 fs r275549 : #i96862# renamed and extended the configuration data which controls availability of certain DBA-related UI
2009-08-28 15:10:19 +0200 fs r275535 : #i96862# if no embedded driver is installed, use dBase for creating new DBs. If no dBase driver is installed, too, do not offer the 'Create new database' option
2009-08-28 14:03:04 +0200 fs r275532 : #i104454# allow multiple fields to display the same column
2009-08-28 13:14:00 +0200 fs r275528 : #i104584# driver meta data do not belong into a data source's settings
2009-08-28 13:09:57 +0200 fs r275527 : properly chech the MySQL type buttons (else next/back in the wizard leads to state with two buttons checked)
2009-08-28 13:09:17 +0200 fs r275526 : #i104584# driver meta data do not belong into a data source's settings
2009-08-28 13:07:18 +0200 fs r275525 : BooleanComparisonMode is a property, or a feature - but not a driver meta data
2009-08-28 11:00:31 +0200 fs r275521 : #i104580#
2009-08-28 10:40:05 +0200 fs r275519 : #i104577# correct assertion: If the template node type is ANY, then any value type is allowed
2009-08-28 10:09:30 +0200 fs r275518 : #i104575# implement Named Pipe UI
2009-08-28 10:09:07 +0200 fs r275517 : pass the trigger-event to IWindowOperator::operateOn / work with VclWindowEvents, not VclSimpleEvents
2009-08-27 14:27:36 +0200 fs r275484 : ImplPosTabPage: respect mbEmptyViewMargin for WINDOWALIGN_LEFT
2009-08-27 13:43:56 +0200 fs r275480 : merging latest changes from CWS dba32f herein
2009-08-27 13:23:07 +0200 fs r275475 : #i103882#
2009-08-27 11:56:55 +0200 fs r275466 : #i104544# SetState: Do not call Update at the window which we just set text for. It should (sic\!) not be needed, but causes trouble
2009-08-27 11:55:34 +0200 fs r275465 : #i104544#
do not allow re-entrance for impl_ensureControl_nothrow
Actually, this is part of the fix only. I also removed the code which triggered this re-entrance (from
the grid control implementation), but to ensure it won't happen, again, I added some safety herein.
2009-08-27 10:14:11 +0200 fs r275459 : preparations for supporting a 'NamedPipe' parameter for the MySQL Connector/OOo
2009-08-27 10:13:21 +0200 fs r275458 : preparations for supporting a 'NamedPipe' setting for the MySQL Connector/OOo
2009-08-27 10:11:14 +0200 fs r275456 : outsourced the MySQLNative settings into a dedicated class, to not duplicate all the code in two tab page implementations
2009-08-26 14:18:13 +0200 fs r275422 : #i10000#
2009-08-26 13:26:36 +0200 fs r275419 : ignore output paths
2009-08-26 13:23:38 +0200 fs r275417 : support the LocalSocket property for the MySQL native driver
2009-08-26 13:17:05 +0200 fs r275416 : some re-factoring, to outsource the tab page for setting up the MySQLNative connection, into a dedicated class (needed later)
2009-08-26 13:15:15 +0200 fs r275415 : support a NoThousandSep property for NumericFormatters - I'm tired of correcting this at runtime, instead of controlling it in the resource
2009-08-26 11:45:08 +0200 fs r275410 : oops, 'flat' shouldn't have got lost
2009-08-26 09:38:57 +0200 fs r275398 : #i102631# when saving the document fails, ensure that the interaction handler really can handle/display the error
2009-08-26 09:37:05 +0200 fs r275397 : #i102631# don't let non-IO/RuntimeExceptions escape from DatabaseDocument::store*, wrap them into an IOException
2009-08-26 09:35:39 +0200 fs r275395 : let the default interaction handler implement XInteractionHandler2
2009-08-25 13:51:34 +0200 fs r275352 : #i102631# createTempFile: pass URL through FileHelper.getOOoCompatibleFileURL
2009-08-25 13:49:23 +0200 fs r275351 : #i102631# createTempFileURL: immediately delete the file implicitly created by createTempFile, we really only need the URL
2009-08-24 14:49:07 +0200 fs r275318 : #i10000#
2009-08-24 14:36:03 +0200 fs r275315 : properly terminate message with 0 character
2009-08-24 14:35:45 +0200 fs r275314 : trace method concepts in non-pro, if special flag is enabled
2009-08-24 14:24:17 +0200 fs r275312 : #i98973# filter some more events for grid control columns
2009-08-24 14:15:23 +0200 fs r275311 : #i98973# implement XComboBox for combo box cells
2009-08-24 13:39:24 +0200 fs r275308 : #i98973# do not display the 'actionPerformed' event for grid combo box columns
2009-08-24 12:52:03 +0200 fs r275303 : #i98973# implement XCheckBox and XButton for check box cells
2009-08-24 11:56:05 +0200 oj r275300 : #i104447# wrong default for orientation
2009-08-24 10:51:21 +0200 fs r275296 : in the script selector dialog, interpret a double click onto a function as OK
2009-08-24 10:50:56 +0200 fs r275295 : localize some to-be-displayed names, consolidate some code regarding form/control naming
2009-08-21 14:28:05 +0200 fs r275255 : #i98973# implement KeyListeners
2009-08-21 14:27:20 +0200 fs r275254 : #i98973# move the conversion VCL[Mouse|Key]Event->Awt[Mouse|Key]Event from vclxwindow.cxx to VCLUnoHelper
2009-08-21 14:08:50 +0200 fs r275248 : #i98973# implement Mouse- and MouseMotion-broadcasting
2009-08-21 13:31:08 +0200 fs r275244 : #i98973# implement text and change listeners at text cells
2009-08-21 12:47:38 +0200 fs r275234 : #i104399# some refactoring:
If the MySQL Connector/OOo is installed, it registers for the sdbc:mysqlc: protocol (now known as DST_MYSQL_NATIVE_DIRECT).
However, we do not want to display this in the UI, instead we display "MySQL" only, which collects DST_MYSQL_ODBC, DST_MYSQL_JDBC, and DST_MYSQL_NATIVE.
2009-08-21 12:45:18 +0200 fs r275232 : #i104399# also register for the sdbc:mysql:mysqlc protocol, decide at runtime (depending on the availability of sdbc:mysqlc:), whether it is really accepted. This prevents that the C/OOo extension needs to register *our* implementation name for the sdbc:mysql:mysqlc: protocol, which would be somewhat weird
2009-08-20 16:18:48 +0200 fs r275190 : merging the latest changes from CWS dba32f (which this CWS was created from)
2009-08-19 20:19:59 +0200 fs r275160 : add some spacing between the radios
2009-08-19 14:50:15 +0200 fs r275150 : #i98973# slightly refactoring the grid cell implementations, to prepare for proper events being fired. Implement focus events for the moment, more to come.
2009-08-19 10:53:38 +0200 fs r275142 : #i99936# initialize newly created models
2009-08-18 23:03:48 +0200 fs r275132 : merging latest changes from CWS dba32f
2009-08-18 15:14:08 +0200 fs r275110 : #i102819# SetColumnPos: SCROLL_CLIP is deadly here
2009-09-14 11:18:01 +00:00
|
|
|
|
2008-12-09 07:25:38 +00:00
|
|
|
::rtl::OUString SAL_CALL OContentHelper::getContentType() throw (RuntimeException)
|
2004-08-02 14:05:59 +00:00
|
|
|
{
|
2008-12-09 07:25:38 +00:00
|
|
|
::osl::MutexGuard aGuard(m_aMutex);
|
|
|
|
|
|
|
|
if ( !m_pImpl->m_aProps.aContentType )
|
|
|
|
{ // content type not yet retrieved
|
|
|
|
m_pImpl->m_aProps.aContentType.reset( determineContentType() );
|
|
|
|
}
|
|
|
|
|
|
|
|
return *m_pImpl->m_aProps.aContentType;
|
2004-08-02 14:05:59 +00:00
|
|
|
}
|
2010-10-12 23:48:07 +02:00
|
|
|
|
2004-08-02 14:05:59 +00:00
|
|
|
void SAL_CALL OContentHelper::addContentEventListener( const Reference< XContentEventListener >& _rxListener ) throw (RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard(m_aMutex);
|
|
|
|
if ( _rxListener.is() )
|
|
|
|
m_aContentListeners.addInterface(_rxListener);
|
|
|
|
}
|
2010-10-12 23:48:07 +02:00
|
|
|
|
2004-08-02 14:05:59 +00:00
|
|
|
void SAL_CALL OContentHelper::removeContentEventListener( const Reference< XContentEventListener >& _rxListener ) throw (RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard(m_aMutex);
|
|
|
|
if (_rxListener.is())
|
|
|
|
m_aContentListeners.removeInterface(_rxListener);
|
|
|
|
}
|
|
|
|
|
|
|
|
// XCommandProcessor
|
|
|
|
sal_Int32 SAL_CALL OContentHelper::createCommandIdentifier( ) throw (RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard(m_aMutex);
|
|
|
|
// Just increase counter on every call to generate an identifier.
|
|
|
|
return ++m_nCommandId;
|
|
|
|
}
|
2010-10-12 23:48:07 +02:00
|
|
|
|
2006-06-20 01:43:26 +00:00
|
|
|
Any SAL_CALL OContentHelper::execute( const Command& aCommand, sal_Int32 /*CommandId*/, const Reference< XCommandEnvironment >& Environment ) throw (Exception, CommandAbortedException, RuntimeException)
|
2004-08-02 14:05:59 +00:00
|
|
|
{
|
|
|
|
Any aRet;
|
|
|
|
if ( aCommand.Name.compareToAscii( "getPropertyValues" ) == 0 )
|
|
|
|
{
|
|
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
// getPropertyValues
|
|
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
Sequence< Property > Properties;
|
|
|
|
if ( !( aCommand.Argument >>= Properties ) )
|
|
|
|
{
|
2011-03-19 14:05:01 +01:00
|
|
|
OSL_FAIL( "Wrong argument type!" );
|
2004-08-02 14:05:59 +00:00
|
|
|
ucbhelper::cancelCommandExecution(
|
|
|
|
makeAny( IllegalArgumentException(
|
|
|
|
rtl::OUString(),
|
|
|
|
static_cast< cppu::OWeakObject * >( this ),
|
|
|
|
-1 ) ),
|
|
|
|
Environment );
|
|
|
|
// Unreachable
|
|
|
|
}
|
|
|
|
aRet <<= getPropertyValues( Properties);
|
|
|
|
}
|
|
|
|
else if ( aCommand.Name.compareToAscii( "setPropertyValues" ) == 0 )
|
|
|
|
{
|
|
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
// setPropertyValues
|
|
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
Sequence< PropertyValue > aProperties;
|
|
|
|
if ( !( aCommand.Argument >>= aProperties ) )
|
|
|
|
{
|
2011-03-19 14:05:01 +01:00
|
|
|
OSL_FAIL( "Wrong argument type!" );
|
2004-08-02 14:05:59 +00:00
|
|
|
ucbhelper::cancelCommandExecution(
|
|
|
|
makeAny( IllegalArgumentException(
|
|
|
|
rtl::OUString(),
|
|
|
|
static_cast< cppu::OWeakObject * >( this ),
|
|
|
|
-1 ) ),
|
|
|
|
Environment );
|
|
|
|
// Unreachable
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !aProperties.getLength() )
|
|
|
|
{
|
2011-03-19 14:05:01 +01:00
|
|
|
OSL_FAIL( "No properties!" );
|
2004-08-02 14:05:59 +00:00
|
|
|
ucbhelper::cancelCommandExecution(
|
|
|
|
makeAny( IllegalArgumentException(
|
|
|
|
rtl::OUString(),
|
|
|
|
static_cast< cppu::OWeakObject * >( this ),
|
|
|
|
-1 ) ),
|
|
|
|
Environment );
|
|
|
|
// Unreachable
|
|
|
|
}
|
|
|
|
|
|
|
|
aRet <<= setPropertyValues( aProperties, Environment );
|
|
|
|
}
|
|
|
|
else if ( aCommand.Name.compareToAscii( "getPropertySetInfo" ) == 0 )
|
|
|
|
{
|
|
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
// getPropertySetInfo
|
|
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
Reference<XPropertySet> xProp(*this,UNO_QUERY);
|
|
|
|
if ( xProp.is() )
|
|
|
|
aRet <<= xProp->getPropertySetInfo();
|
|
|
|
// aRet <<= getPropertySetInfo(); // TODO
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
// Unsupported command
|
|
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
|
2011-03-19 14:05:01 +01:00
|
|
|
OSL_FAIL( "Content::execute - unsupported command!" );
|
2004-08-02 14:05:59 +00:00
|
|
|
|
|
|
|
ucbhelper::cancelCommandExecution(
|
|
|
|
makeAny( UnsupportedCommandException(
|
|
|
|
rtl::OUString(),
|
|
|
|
static_cast< cppu::OWeakObject * >( this ) ) ),
|
|
|
|
Environment );
|
|
|
|
// Unreachable
|
|
|
|
}
|
|
|
|
|
|
|
|
return aRet;
|
|
|
|
}
|
2010-10-12 23:48:07 +02:00
|
|
|
|
2006-06-20 01:43:26 +00:00
|
|
|
void SAL_CALL OContentHelper::abort( sal_Int32 /*CommandId*/ ) throw (RuntimeException)
|
2004-08-02 14:05:59 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// XPropertiesChangeNotifier
|
|
|
|
void SAL_CALL OContentHelper::addPropertiesChangeListener( const Sequence< ::rtl::OUString >& PropertyNames, const Reference< XPropertiesChangeListener >& Listener ) throw (RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard(m_aMutex);
|
|
|
|
sal_Int32 nCount = PropertyNames.getLength();
|
|
|
|
if ( !nCount )
|
|
|
|
{
|
|
|
|
// Note: An empty sequence means a listener for "all" properties.
|
|
|
|
m_aPropertyChangeListeners.addInterface(::rtl::OUString(), Listener );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const ::rtl::OUString* pSeq = PropertyNames.getConstArray();
|
|
|
|
|
|
|
|
for ( sal_Int32 n = 0; n < nCount; ++n )
|
|
|
|
{
|
|
|
|
const ::rtl::OUString& rName = pSeq[ n ];
|
2011-12-19 18:10:37 -02:00
|
|
|
if ( !rName.isEmpty() )
|
2004-08-02 14:05:59 +00:00
|
|
|
m_aPropertyChangeListeners.addInterface(rName, Listener );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-10-12 23:48:07 +02:00
|
|
|
|
2004-08-02 14:05:59 +00:00
|
|
|
void SAL_CALL OContentHelper::removePropertiesChangeListener( const Sequence< ::rtl::OUString >& PropertyNames, const Reference< XPropertiesChangeListener >& Listener ) throw (RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard(m_aMutex);
|
|
|
|
sal_Int32 nCount = PropertyNames.getLength();
|
|
|
|
if ( !nCount )
|
|
|
|
{
|
|
|
|
// Note: An empty sequence means a listener for "all" properties.
|
|
|
|
m_aPropertyChangeListeners.removeInterface( ::rtl::OUString(), Listener );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const ::rtl::OUString* pSeq = PropertyNames.getConstArray();
|
|
|
|
|
|
|
|
for ( sal_Int32 n = 0; n < nCount; ++n )
|
|
|
|
{
|
|
|
|
const ::rtl::OUString& rName = pSeq[ n ];
|
2011-12-19 18:10:37 -02:00
|
|
|
if ( !rName.isEmpty() )
|
2004-08-02 14:05:59 +00:00
|
|
|
m_aPropertyChangeListeners.removeInterface( rName, Listener );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// XPropertyContainer
|
2006-06-20 01:43:26 +00:00
|
|
|
void SAL_CALL OContentHelper::addProperty( const ::rtl::OUString& /*Name*/, sal_Int16 /*Attributes*/, const Any& /*DefaultValue*/ ) throw (PropertyExistException, IllegalTypeException, IllegalArgumentException, RuntimeException)
|
2004-08-02 14:05:59 +00:00
|
|
|
{
|
2011-02-25 17:47:41 +01:00
|
|
|
OSL_FAIL( "OContentHelper::addProperty: not implemented!" );
|
2004-08-02 14:05:59 +00:00
|
|
|
}
|
2010-10-12 23:48:07 +02:00
|
|
|
|
2006-06-20 01:43:26 +00:00
|
|
|
void SAL_CALL OContentHelper::removeProperty( const ::rtl::OUString& /*Name*/ ) throw (UnknownPropertyException, NotRemoveableException, RuntimeException)
|
2004-08-02 14:05:59 +00:00
|
|
|
{
|
2011-02-25 17:47:41 +01:00
|
|
|
OSL_FAIL( "OContentHelper::removeProperty: not implemented!" );
|
2004-08-02 14:05:59 +00:00
|
|
|
}
|
2010-10-12 23:48:07 +02:00
|
|
|
|
2004-08-02 14:05:59 +00:00
|
|
|
// XInitialization
|
|
|
|
void SAL_CALL OContentHelper::initialize( const Sequence< Any >& _aArguments ) throw(Exception, RuntimeException)
|
|
|
|
{
|
|
|
|
const Any* pBegin = _aArguments.getConstArray();
|
|
|
|
const Any* pEnd = pBegin + _aArguments.getLength();
|
2011-12-14 14:43:58 -05:00
|
|
|
PropertyValue aValue;
|
2004-08-02 14:05:59 +00:00
|
|
|
for(;pBegin != pEnd;++pBegin)
|
|
|
|
{
|
|
|
|
*pBegin >>= aValue;
|
2012-04-06 15:05:52 +02:00
|
|
|
if ( aValue.Name == "Parent" )
|
2004-08-02 14:05:59 +00:00
|
|
|
{
|
|
|
|
m_xParentContainer.set(aValue.Value,UNO_QUERY);
|
|
|
|
}
|
2012-05-17 14:00:15 +01:00
|
|
|
else if ( aValue.Name.equalsAsciiL(PROPERTY_NAME.ascii, PROPERTY_NAME.length) )
|
2004-08-02 14:05:59 +00:00
|
|
|
{
|
|
|
|
aValue.Value >>= m_pImpl->m_aProps.aTitle;
|
|
|
|
}
|
2012-05-17 14:00:15 +01:00
|
|
|
else if ( aValue.Name.equalsAsciiL(PROPERTY_PERSISTENT_NAME.ascii, PROPERTY_PERSISTENT_NAME.length) )
|
2004-08-02 14:05:59 +00:00
|
|
|
{
|
|
|
|
aValue.Value >>= m_pImpl->m_aProps.sPersistentName;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-10-12 23:48:07 +02:00
|
|
|
|
2006-06-20 01:43:26 +00:00
|
|
|
Sequence< Any > OContentHelper::setPropertyValues(const Sequence< PropertyValue >& rValues,const Reference< XCommandEnvironment >& /*xEnv*/ )
|
2004-08-02 14:05:59 +00:00
|
|
|
{
|
|
|
|
osl::ClearableGuard< osl::Mutex > aGuard( m_aMutex );
|
|
|
|
|
|
|
|
Sequence< Any > aRet( rValues.getLength() );
|
|
|
|
Sequence< PropertyChangeEvent > aChanges( rValues.getLength() );
|
|
|
|
sal_Int32 nChanged = 0;
|
|
|
|
|
|
|
|
PropertyChangeEvent aEvent;
|
|
|
|
aEvent.Source = static_cast< cppu::OWeakObject * >( this );
|
|
|
|
aEvent.Further = sal_False;
|
|
|
|
aEvent.PropertyHandle = -1;
|
|
|
|
|
|
|
|
const PropertyValue* pValues = rValues.getConstArray();
|
|
|
|
sal_Int32 nCount = rValues.getLength();
|
|
|
|
|
|
|
|
for ( sal_Int32 n = 0; n < nCount; ++n )
|
|
|
|
{
|
|
|
|
const PropertyValue& rValue = pValues[ n ];
|
|
|
|
|
2012-04-06 14:28:18 +02:00
|
|
|
if ( rValue.Name == "ContentType" )
|
2004-08-02 14:05:59 +00:00
|
|
|
{
|
|
|
|
// Read-only property!
|
|
|
|
aRet[ n ] <<= IllegalAccessException(
|
2010-11-11 10:19:47 -03:00
|
|
|
::rtl::OUString(
|
|
|
|
RTL_CONSTASCII_USTRINGPARAM("Property is read-only!")
|
|
|
|
),
|
2004-08-02 14:05:59 +00:00
|
|
|
static_cast< cppu::OWeakObject * >( this ) );
|
|
|
|
}
|
2012-04-06 14:28:18 +02:00
|
|
|
else if ( rValue.Name == "IsDocument" )
|
2004-08-02 14:05:59 +00:00
|
|
|
{
|
|
|
|
// Read-only property!
|
|
|
|
aRet[ n ] <<= IllegalAccessException(
|
2010-11-11 10:19:47 -03:00
|
|
|
::rtl::OUString(
|
|
|
|
RTL_CONSTASCII_USTRINGPARAM("Property is read-only!")
|
|
|
|
),
|
2004-08-02 14:05:59 +00:00
|
|
|
static_cast< cppu::OWeakObject * >( this ) );
|
|
|
|
}
|
2012-04-06 14:28:18 +02:00
|
|
|
else if ( rValue.Name == "IsFolder" )
|
2004-08-02 14:05:59 +00:00
|
|
|
{
|
|
|
|
// Read-only property!
|
|
|
|
aRet[ n ] <<= IllegalAccessException(
|
2010-11-11 10:19:47 -03:00
|
|
|
::rtl::OUString(
|
|
|
|
RTL_CONSTASCII_USTRINGPARAM("Property is read-only!")
|
|
|
|
),
|
2004-08-02 14:05:59 +00:00
|
|
|
static_cast< cppu::OWeakObject * >( this ) );
|
|
|
|
}
|
2012-04-06 14:28:18 +02:00
|
|
|
else if ( rValue.Name == "Title" )
|
2004-08-02 14:05:59 +00:00
|
|
|
{
|
|
|
|
rtl::OUString aNewValue;
|
|
|
|
if ( rValue.Value >>= aNewValue )
|
|
|
|
{
|
|
|
|
if ( aNewValue != m_pImpl->m_aProps.aTitle )
|
|
|
|
{
|
|
|
|
aEvent.PropertyName = rValue.Name;
|
|
|
|
aEvent.OldValue = makeAny( m_pImpl->m_aProps.aTitle );
|
|
|
|
|
2005-03-23 08:45:08 +00:00
|
|
|
try
|
|
|
|
{
|
2008-12-09 07:25:38 +00:00
|
|
|
impl_rename_throw( aNewValue ,false);
|
2005-03-23 08:45:08 +00:00
|
|
|
OSL_ENSURE( m_pImpl->m_aProps.aTitle == aNewValue, "OContentHelper::setPropertyValues('Title'): rename did not work!" );
|
2004-08-02 14:05:59 +00:00
|
|
|
|
2005-03-23 08:45:08 +00:00
|
|
|
aEvent.NewValue = makeAny( aNewValue );
|
|
|
|
aChanges.getArray()[ nChanged ] = aEvent;
|
|
|
|
nChanged++;
|
|
|
|
}
|
|
|
|
catch( const Exception& )
|
|
|
|
{
|
2011-03-19 14:05:01 +01:00
|
|
|
OSL_FAIL( "OContentHelper::setPropertyValues('Title'): caught an exception while renaming!" );
|
2005-03-23 08:45:08 +00:00
|
|
|
}
|
2004-08-02 14:05:59 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Old value equals new value. No error!
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
aRet[ n ] <<= IllegalTypeException(
|
2010-11-11 10:19:47 -03:00
|
|
|
::rtl::OUString(
|
|
|
|
RTL_CONSTASCII_USTRINGPARAM("Property value has wrong type!")
|
|
|
|
),
|
2004-08-02 14:05:59 +00:00
|
|
|
static_cast< cppu::OWeakObject * >( this ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
{
|
|
|
|
aRet[ n ] <<= Exception(
|
2010-11-11 10:19:47 -03:00
|
|
|
::rtl::OUString(
|
|
|
|
RTL_CONSTASCII_USTRINGPARAM("No property set for storing the value!")
|
|
|
|
),
|
2004-08-02 14:05:59 +00:00
|
|
|
static_cast< cppu::OWeakObject * >( this ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( nChanged > 0 )
|
|
|
|
{
|
|
|
|
notifyDataSourceModified();
|
|
|
|
aGuard.clear();
|
|
|
|
aChanges.realloc( nChanged );
|
|
|
|
notifyPropertiesChange( aChanges );
|
|
|
|
}
|
|
|
|
|
|
|
|
return aRet;
|
|
|
|
}
|
2010-10-12 23:48:07 +02:00
|
|
|
|
2004-08-02 14:05:59 +00:00
|
|
|
//=========================================================================
|
|
|
|
// static
|
|
|
|
Reference< XRow > OContentHelper::getPropertyValues( const Sequence< Property >& rProperties)
|
|
|
|
{
|
|
|
|
// Note: Empty sequence means "get values of all supported properties".
|
|
|
|
|
2007-11-21 14:35:41 +00:00
|
|
|
rtl::Reference< ::ucbhelper::PropertyValueSet > xRow = new ::ucbhelper::PropertyValueSet( m_aContext.getLegacyServiceFactory() );
|
2004-08-02 14:05:59 +00:00
|
|
|
|
|
|
|
sal_Int32 nCount = rProperties.getLength();
|
|
|
|
if ( nCount )
|
|
|
|
{
|
|
|
|
const Property* pProps = rProperties.getConstArray();
|
|
|
|
for ( sal_Int32 n = 0; n < nCount; ++n )
|
|
|
|
{
|
|
|
|
const Property& rProp = pProps[ n ];
|
|
|
|
|
|
|
|
// Process Core properties.
|
|
|
|
|
2012-04-06 14:28:18 +02:00
|
|
|
if ( rProp.Name == "ContentType" )
|
2004-08-02 14:05:59 +00:00
|
|
|
{
|
2008-12-09 07:25:38 +00:00
|
|
|
xRow->appendString ( rProp, getContentType() );
|
2004-08-02 14:05:59 +00:00
|
|
|
}
|
2012-04-06 14:28:18 +02:00
|
|
|
else if ( rProp.Name == "Title" )
|
2004-08-02 14:05:59 +00:00
|
|
|
{
|
|
|
|
xRow->appendString ( rProp, m_pImpl->m_aProps.aTitle );
|
|
|
|
}
|
2012-04-06 14:28:18 +02:00
|
|
|
else if ( rProp.Name == "IsDocument" )
|
2004-08-02 14:05:59 +00:00
|
|
|
{
|
|
|
|
xRow->appendBoolean( rProp, m_pImpl->m_aProps.bIsDocument );
|
|
|
|
}
|
2012-04-06 14:28:18 +02:00
|
|
|
else if ( rProp.Name == "IsFolder" )
|
2004-08-02 14:05:59 +00:00
|
|
|
{
|
|
|
|
xRow->appendBoolean( rProp, m_pImpl->m_aProps.bIsFolder );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
xRow->appendVoid(rProp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Append all Core Properties.
|
|
|
|
xRow->appendString (
|
2010-11-11 10:19:47 -03:00
|
|
|
Property( rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ContentType")),
|
2004-08-02 14:05:59 +00:00
|
|
|
-1,
|
|
|
|
getCppuType( static_cast< const rtl::OUString * >( 0 ) ),
|
|
|
|
PropertyAttribute::BOUND
|
|
|
|
| PropertyAttribute::READONLY ),
|
2008-12-09 07:25:38 +00:00
|
|
|
getContentType() );
|
2004-08-02 14:05:59 +00:00
|
|
|
xRow->appendString (
|
2010-11-11 10:19:47 -03:00
|
|
|
Property( rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Title" )),
|
2004-08-02 14:05:59 +00:00
|
|
|
-1,
|
|
|
|
getCppuType( static_cast< const rtl::OUString * >( 0 ) ),
|
|
|
|
PropertyAttribute::BOUND ),
|
|
|
|
m_pImpl->m_aProps.aTitle );
|
|
|
|
xRow->appendBoolean(
|
2010-11-11 10:19:47 -03:00
|
|
|
Property( rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("IsDocument")),
|
2004-08-02 14:05:59 +00:00
|
|
|
-1,
|
|
|
|
getCppuBooleanType(),
|
|
|
|
PropertyAttribute::BOUND
|
|
|
|
| PropertyAttribute::READONLY ),
|
|
|
|
m_pImpl->m_aProps.bIsDocument );
|
|
|
|
xRow->appendBoolean(
|
2010-11-11 10:19:47 -03:00
|
|
|
Property( rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("IsFolder")),
|
2004-08-02 14:05:59 +00:00
|
|
|
-1,
|
|
|
|
getCppuBooleanType(),
|
|
|
|
PropertyAttribute::BOUND
|
|
|
|
| PropertyAttribute::READONLY ),
|
|
|
|
m_pImpl->m_aProps.bIsFolder );
|
|
|
|
|
|
|
|
// @@@ Append other properties supported directly.
|
|
|
|
}
|
|
|
|
|
|
|
|
return Reference< XRow >( xRow.get() );
|
|
|
|
}
|
2010-10-12 23:48:07 +02:00
|
|
|
|
2004-08-02 14:05:59 +00:00
|
|
|
void OContentHelper::notifyPropertiesChange( const Sequence< PropertyChangeEvent >& evt ) const
|
|
|
|
{
|
|
|
|
|
|
|
|
sal_Int32 nCount = evt.getLength();
|
|
|
|
if ( nCount )
|
|
|
|
{
|
|
|
|
// First, notify listeners interested in changes of every property.
|
|
|
|
OInterfaceContainerHelper* pAllPropsContainer = m_aPropertyChangeListeners.getContainer( ::rtl::OUString() );
|
|
|
|
if ( pAllPropsContainer )
|
|
|
|
{
|
|
|
|
OInterfaceIteratorHelper aIter( *pAllPropsContainer );
|
|
|
|
while ( aIter.hasMoreElements() )
|
|
|
|
{
|
|
|
|
// Propagate event.
|
|
|
|
Reference< XPropertiesChangeListener > xListener( aIter.next(), UNO_QUERY );
|
|
|
|
if ( xListener.is() )
|
|
|
|
xListener->propertiesChange( evt );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef Sequence< PropertyChangeEvent > PropertyEventSequence;
|
|
|
|
typedef ::std::map< XPropertiesChangeListener*, PropertyEventSequence* > PropertiesEventListenerMap;
|
|
|
|
PropertiesEventListenerMap aListeners;
|
|
|
|
|
2006-06-20 01:43:26 +00:00
|
|
|
const PropertyChangeEvent* propertyChangeEvent = evt.getConstArray();
|
2004-08-02 14:05:59 +00:00
|
|
|
|
2006-06-20 01:43:26 +00:00
|
|
|
for ( sal_Int32 n = 0; n < nCount; ++n, ++propertyChangeEvent )
|
2004-08-02 14:05:59 +00:00
|
|
|
{
|
2006-06-20 01:43:26 +00:00
|
|
|
const PropertyChangeEvent& rEvent = *propertyChangeEvent;
|
2004-08-02 14:05:59 +00:00
|
|
|
const ::rtl::OUString& rName = rEvent.PropertyName;
|
|
|
|
|
|
|
|
OInterfaceContainerHelper* pPropsContainer = m_aPropertyChangeListeners.getContainer( rName );
|
|
|
|
if ( pPropsContainer )
|
|
|
|
{
|
|
|
|
OInterfaceIteratorHelper aIter( *pPropsContainer );
|
|
|
|
while ( aIter.hasMoreElements() )
|
|
|
|
{
|
2006-06-20 01:43:26 +00:00
|
|
|
PropertyEventSequence* propertyEvents = NULL;
|
2004-08-02 14:05:59 +00:00
|
|
|
|
|
|
|
XPropertiesChangeListener* pListener = static_cast< XPropertiesChangeListener * >( aIter.next() );
|
|
|
|
PropertiesEventListenerMap::iterator it = aListeners.find( pListener );
|
|
|
|
if ( it == aListeners.end() )
|
|
|
|
{
|
|
|
|
// Not in map - create and insert new entry.
|
2006-06-20 01:43:26 +00:00
|
|
|
propertyEvents = new PropertyEventSequence( nCount );
|
|
|
|
aListeners[ pListener ] = propertyEvents;
|
2004-08-02 14:05:59 +00:00
|
|
|
}
|
|
|
|
else
|
2006-06-20 01:43:26 +00:00
|
|
|
propertyEvents = (*it).second;
|
2004-08-02 14:05:59 +00:00
|
|
|
|
2006-06-20 01:43:26 +00:00
|
|
|
if ( propertyEvents )
|
|
|
|
(*propertyEvents)[n] = rEvent;
|
2004-08-02 14:05:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Notify listeners.
|
|
|
|
PropertiesEventListenerMap::iterator it = aListeners.begin();
|
|
|
|
while ( !aListeners.empty() )
|
|
|
|
{
|
|
|
|
XPropertiesChangeListener* pListener =
|
|
|
|
static_cast< XPropertiesChangeListener * >( (*it).first );
|
|
|
|
PropertyEventSequence* pSeq = (*it).second;
|
|
|
|
|
|
|
|
// Remove current element.
|
|
|
|
aListeners.erase( it );
|
|
|
|
|
|
|
|
// Propagate event.
|
|
|
|
pListener->propertiesChange( *pSeq );
|
|
|
|
|
|
|
|
delete pSeq;
|
|
|
|
|
|
|
|
it = aListeners.begin();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-10-12 23:48:07 +02:00
|
|
|
|
2004-08-02 14:05:59 +00:00
|
|
|
// com::sun::star::lang::XUnoTunnel
|
|
|
|
sal_Int64 OContentHelper::getSomething( const Sequence< sal_Int8 > & rId ) throw (RuntimeException)
|
|
|
|
{
|
2012-09-29 14:47:11 +02:00
|
|
|
if (rId.getLength() == 16 && 0 == memcmp(getUnoTunnelImplementationId().getConstArray(), rId.getConstArray(), 16 ) )
|
2004-08-02 14:05:59 +00:00
|
|
|
return reinterpret_cast<sal_Int64>(this);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-07-10 14:08:14 +00:00
|
|
|
OContentHelper* OContentHelper::getImplementation( const Reference< XInterface >& _rxComponent )
|
|
|
|
{
|
|
|
|
OContentHelper* pContent( NULL );
|
|
|
|
|
|
|
|
Reference< XUnoTunnel > xUnoTunnel( _rxComponent, UNO_QUERY );
|
|
|
|
if ( xUnoTunnel.is() )
|
|
|
|
pContent = reinterpret_cast< OContentHelper* >( xUnoTunnel->getSomething( getUnoTunnelImplementationId() ) );
|
|
|
|
|
|
|
|
return pContent;
|
|
|
|
}
|
|
|
|
|
2004-08-02 14:05:59 +00:00
|
|
|
Reference< XInterface > SAL_CALL OContentHelper::getParent( ) throw (RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard(m_aMutex);
|
|
|
|
return m_xParentContainer;
|
|
|
|
}
|
2010-10-12 23:48:07 +02:00
|
|
|
|
2004-08-02 14:05:59 +00:00
|
|
|
void SAL_CALL OContentHelper::setParent( const Reference< XInterface >& _xParent ) throw (NoSupportException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard(m_aMutex);
|
|
|
|
m_xParentContainer = _xParent;
|
|
|
|
}
|
2008-12-01 12:31:27 +00:00
|
|
|
|
2008-12-09 07:25:38 +00:00
|
|
|
void OContentHelper::impl_rename_throw(const ::rtl::OUString& _sNewName,bool _bNotify )
|
2004-08-02 14:05:59 +00:00
|
|
|
{
|
2008-12-09 07:25:38 +00:00
|
|
|
osl::ClearableGuard< osl::Mutex > aGuard(m_aMutex);
|
|
|
|
if ( _sNewName.equals( m_pImpl->m_aProps.aTitle ) )
|
2005-03-23 08:45:08 +00:00
|
|
|
return;
|
2008-12-09 07:25:38 +00:00
|
|
|
try
|
2004-08-02 14:05:59 +00:00
|
|
|
{
|
2008-12-09 07:25:38 +00:00
|
|
|
Sequence< PropertyChangeEvent > aChanges( 1 );
|
2004-08-02 14:05:59 +00:00
|
|
|
|
2008-12-09 07:25:38 +00:00
|
|
|
aChanges[0].Source = static_cast< cppu::OWeakObject * >( this );
|
|
|
|
aChanges[0].Further = sal_False;
|
|
|
|
aChanges[0].PropertyName = PROPERTY_NAME;
|
|
|
|
aChanges[0].PropertyHandle = PROPERTY_ID_NAME;
|
|
|
|
aChanges[0].OldValue <<= m_pImpl->m_aProps.aTitle;
|
|
|
|
aChanges[0].NewValue <<= _sNewName;
|
2004-08-02 14:05:59 +00:00
|
|
|
|
2008-12-09 07:25:38 +00:00
|
|
|
aGuard.clear();
|
|
|
|
|
|
|
|
m_pImpl->m_aProps.aTitle = _sNewName;
|
|
|
|
if ( _bNotify )
|
|
|
|
notifyPropertiesChange( aChanges );
|
|
|
|
notifyDataSourceModified();
|
2004-08-02 14:05:59 +00:00
|
|
|
}
|
2008-12-09 07:25:38 +00:00
|
|
|
catch(const PropertyVetoException&)
|
|
|
|
{
|
|
|
|
throw ElementExistException(_sNewName,*this);
|
|
|
|
}
|
|
|
|
}
|
2010-10-12 23:48:07 +02:00
|
|
|
|
2008-12-09 07:25:38 +00:00
|
|
|
void SAL_CALL OContentHelper::rename( const ::rtl::OUString& newName ) throw (SQLException, ElementExistException, RuntimeException)
|
|
|
|
{
|
|
|
|
|
|
|
|
impl_rename_throw(newName);
|
2004-08-02 14:05:59 +00:00
|
|
|
|
|
|
|
}
|
2010-10-12 23:48:07 +02:00
|
|
|
|
2004-08-02 14:05:59 +00:00
|
|
|
void OContentHelper::notifyDataSourceModified()
|
|
|
|
{
|
|
|
|
::dbaccess::notifyDataSourceModified(m_xParentContainer,sal_True);
|
|
|
|
}
|
|
|
|
|
2010-10-12 23:48:07 +02:00
|
|
|
} // namespace dbaccess
|
2010-10-12 15:59:03 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|