1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#include "formnavigation.hxx"
#include "urltransformer.hxx"
#include "controlfeatureinterception.hxx"
#include "frm_strings.hxx"
#include <com/sun/star/form/runtime/FormFeature.hpp>
#include <tools/debug.hxx>
//.........................................................................
namespace frm
{
//.........................................................................
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::util;
using namespace ::com::sun::star::frame;
namespace FormFeature = ::com::sun::star::form::runtime::FormFeature;
//==================================================================
//= OFormNavigationHelper
//==================================================================
DBG_NAME( OFormNavigationHelper )
//------------------------------------------------------------------
OFormNavigationHelper::OFormNavigationHelper( const Reference< XMultiServiceFactory >& _rxORB )
:m_xORB( _rxORB )
,m_nConnectedFeatures( 0 )
{
DBG_CTOR( OFormNavigationHelper, NULL );
m_pFeatureInterception.reset( new ControlFeatureInterception( m_xORB ) );
}
//------------------------------------------------------------------
OFormNavigationHelper::~OFormNavigationHelper()
{
DBG_DTOR( OFormNavigationHelper, NULL );
}
//------------------------------------------------------------------
void SAL_CALL OFormNavigationHelper::dispose( ) throw( RuntimeException )
{
m_pFeatureInterception->dispose();
disconnectDispatchers();
}
//------------------------------------------------------------------
void OFormNavigationHelper::interceptorsChanged( )
{
updateDispatches();
}
//------------------------------------------------------------------
void OFormNavigationHelper::featureStateChanged( sal_Int16 /*_nFeatureId*/, sal_Bool /*_bEnabled*/ )
{
// not interested in
}
//------------------------------------------------------------------
void OFormNavigationHelper::allFeatureStatesChanged( )
{
// not interested in
}
//------------------------------------------------------------------
void SAL_CALL OFormNavigationHelper::registerDispatchProviderInterceptor( const Reference< XDispatchProviderInterceptor >& _rxInterceptor ) throw (RuntimeException)
{
m_pFeatureInterception->registerDispatchProviderInterceptor( _rxInterceptor );
interceptorsChanged();
}
//------------------------------------------------------------------
void SAL_CALL OFormNavigationHelper::releaseDispatchProviderInterceptor( const Reference< XDispatchProviderInterceptor >& _rxInterceptor ) throw (RuntimeException)
{
m_pFeatureInterception->releaseDispatchProviderInterceptor( _rxInterceptor );
interceptorsChanged();
}
//------------------------------------------------------------------
void SAL_CALL OFormNavigationHelper::statusChanged( const FeatureStateEvent& _rState ) throw (RuntimeException)
{
for ( FeatureMap::iterator aFeature = m_aSupportedFeatures.begin();
aFeature != m_aSupportedFeatures.end();
++aFeature
)
{
if ( aFeature->second.aURL.Main == _rState.FeatureURL.Main )
{
if ( ( aFeature->second.bCachedState != _rState.IsEnabled )
|| ( aFeature->second.aCachedAdditionalState != _rState.State )
)
{
// change the cached state
aFeature->second.bCachedState = _rState.IsEnabled;
aFeature->second.aCachedAdditionalState = _rState.State;
// tell derivees what happened
featureStateChanged( aFeature->first, _rState.IsEnabled );
}
return;
}
}
// unreachable
OSL_FAIL( "OFormNavigationHelper::statusChanged: huh? An invalid/unknown URL?" );
}
//------------------------------------------------------------------
void SAL_CALL OFormNavigationHelper::disposing( const EventObject& _rSource ) throw (RuntimeException)
{
// was it one of our external dispatchers?
if ( m_nConnectedFeatures )
{
for ( FeatureMap::iterator aFeature = m_aSupportedFeatures.begin();
aFeature != m_aSupportedFeatures.end();
++aFeature
)
{
if ( aFeature->second.xDispatcher == _rSource.Source )
{
aFeature->second.xDispatcher->removeStatusListener( static_cast< XStatusListener* >( this ), aFeature->second.aURL );
aFeature->second.xDispatcher = NULL;
aFeature->second.bCachedState = sal_False;
aFeature->second.aCachedAdditionalState.clear();
--m_nConnectedFeatures;
featureStateChanged( aFeature->first, sal_False );
break;
}
}
}
}
//------------------------------------------------------------------
void OFormNavigationHelper::updateDispatches()
{
if ( !m_nConnectedFeatures )
{ // we don't have any dispatchers yet -> do the initial connect
connectDispatchers();
return;
}
initializeSupportedFeatures();
m_nConnectedFeatures = 0;
Reference< XDispatch > xNewDispatcher;
Reference< XDispatch > xCurrentDispatcher;
for ( FeatureMap::iterator aFeature = m_aSupportedFeatures.begin();
aFeature != m_aSupportedFeatures.end();
++aFeature
)
{
xNewDispatcher = queryDispatch( aFeature->second.aURL );
xCurrentDispatcher = aFeature->second.xDispatcher;
if ( xNewDispatcher != xCurrentDispatcher )
{
// the dispatcher for this particular URL changed
if ( xCurrentDispatcher.is() )
xCurrentDispatcher->removeStatusListener( static_cast< XStatusListener* >( this ), aFeature->second.aURL );
xCurrentDispatcher = aFeature->second.xDispatcher = xNewDispatcher;
if ( xCurrentDispatcher.is() )
xCurrentDispatcher->addStatusListener( static_cast< XStatusListener* >( this ), aFeature->second.aURL );
}
if ( xCurrentDispatcher.is() )
++m_nConnectedFeatures;
else
aFeature->second.bCachedState = sal_False;
}
// notify derivee that (potentially) all features changed their state
allFeatureStatesChanged( );
}
//------------------------------------------------------------------
void OFormNavigationHelper::connectDispatchers()
{
if ( m_nConnectedFeatures )
{ // already connected -> just do an update
updateDispatches();
return;
}
initializeSupportedFeatures();
m_nConnectedFeatures = 0;
for ( FeatureMap::iterator aFeature = m_aSupportedFeatures.begin();
aFeature != m_aSupportedFeatures.end();
++aFeature
)
{
aFeature->second.bCachedState = sal_False;
aFeature->second.aCachedAdditionalState.clear();
aFeature->second.xDispatcher = queryDispatch( aFeature->second.aURL );
if ( aFeature->second.xDispatcher.is() )
{
++m_nConnectedFeatures;
aFeature->second.xDispatcher->addStatusListener( static_cast< XStatusListener* >( this ), aFeature->second.aURL );
}
}
// notify derivee that (potentially) all features changed their state
allFeatureStatesChanged( );
}
//------------------------------------------------------------------
void OFormNavigationHelper::disconnectDispatchers()
{
if ( m_nConnectedFeatures )
{
for ( FeatureMap::iterator aFeature = m_aSupportedFeatures.begin();
aFeature != m_aSupportedFeatures.end();
++aFeature
)
{
if ( aFeature->second.xDispatcher.is() )
aFeature->second.xDispatcher->removeStatusListener( static_cast< XStatusListener* >( this ), aFeature->second.aURL );
aFeature->second.xDispatcher = NULL;
aFeature->second.bCachedState = sal_False;
aFeature->second.aCachedAdditionalState.clear();
}
m_nConnectedFeatures = 0;
}
// notify derivee that (potentially) all features changed their state
allFeatureStatesChanged( );
}
//------------------------------------------------------------------
void OFormNavigationHelper::initializeSupportedFeatures( )
{
if ( m_aSupportedFeatures.empty() )
{
// ask the derivee which feature ids it wants us to support
::std::vector< sal_Int16 > aFeatureIds;
getSupportedFeatures( aFeatureIds );
OFormNavigationMapper aUrlMapper( m_xORB );
for ( ::std::vector< sal_Int16 >::const_iterator aLoop = aFeatureIds.begin();
aLoop != aFeatureIds.end();
++aLoop
)
{
FeatureInfo aFeatureInfo;
bool bKnownId =
aUrlMapper.getFeatureURL( *aLoop, aFeatureInfo.aURL );
DBG_ASSERT( bKnownId, "OFormNavigationHelper::initializeSupportedFeatures: unknown feature id!" );
if ( bKnownId )
// add to our map
m_aSupportedFeatures.insert( FeatureMap::value_type( *aLoop, aFeatureInfo ) );
}
}
}
//------------------------------------------------------------------
Reference< XDispatch > OFormNavigationHelper::queryDispatch( const URL& _rURL )
{
return m_pFeatureInterception->queryDispatch( _rURL );
}
//------------------------------------------------------------------
void OFormNavigationHelper::dispatchWithArgument( sal_Int16 _nFeatureId, const sal_Char* _pParamAsciiName,
const Any& _rParamValue ) const
{
FeatureMap::const_iterator aInfo = m_aSupportedFeatures.find( _nFeatureId );
if ( m_aSupportedFeatures.end() != aInfo )
{
if ( aInfo->second.xDispatcher.is() )
{
Sequence< PropertyValue > aArgs( 1 );
aArgs[0].Name = ::rtl::OUString::createFromAscii( _pParamAsciiName );
aArgs[0].Value = _rParamValue;
aInfo->second.xDispatcher->dispatch( aInfo->second.aURL, aArgs );
}
}
}
//------------------------------------------------------------------
void OFormNavigationHelper::dispatch( sal_Int16 _nFeatureId ) const
{
FeatureMap::const_iterator aInfo = m_aSupportedFeatures.find( _nFeatureId );
if ( m_aSupportedFeatures.end() != aInfo )
{
if ( aInfo->second.xDispatcher.is() )
{
Sequence< PropertyValue > aEmptyArgs;
aInfo->second.xDispatcher->dispatch( aInfo->second.aURL, aEmptyArgs );
}
}
}
//------------------------------------------------------------------
bool OFormNavigationHelper::isEnabled( sal_Int16 _nFeatureId ) const
{
FeatureMap::const_iterator aInfo = m_aSupportedFeatures.find( _nFeatureId );
if ( m_aSupportedFeatures.end() != aInfo )
return aInfo->second.bCachedState;
return false;
}
//------------------------------------------------------------------
bool OFormNavigationHelper::getBooleanState( sal_Int16 _nFeatureId ) const
{
sal_Bool bState = sal_False;
FeatureMap::const_iterator aInfo = m_aSupportedFeatures.find( _nFeatureId );
if ( m_aSupportedFeatures.end() != aInfo )
aInfo->second.aCachedAdditionalState >>= bState;
return (bool)bState;
}
//------------------------------------------------------------------
::rtl::OUString OFormNavigationHelper::getStringState( sal_Int16 _nFeatureId ) const
{
::rtl::OUString sState;
FeatureMap::const_iterator aInfo = m_aSupportedFeatures.find( _nFeatureId );
if ( m_aSupportedFeatures.end() != aInfo )
aInfo->second.aCachedAdditionalState >>= sState;
return sState;
}
//------------------------------------------------------------------
sal_Int32 OFormNavigationHelper::getIntegerState( sal_Int16 _nFeatureId ) const
{
sal_Int32 nState = 0;
FeatureMap::const_iterator aInfo = m_aSupportedFeatures.find( _nFeatureId );
if ( m_aSupportedFeatures.end() != aInfo )
aInfo->second.aCachedAdditionalState >>= nState;
return nState;
}
//------------------------------------------------------------------
void OFormNavigationHelper::invalidateSupportedFeaturesSet()
{
disconnectDispatchers( );
// no supported features anymore:
FeatureMap aEmpty;
m_aSupportedFeatures.swap( aEmpty );
}
//==================================================================
//= OFormNavigationMapper
//==================================================================
//------------------------------------------------------------------
OFormNavigationMapper::OFormNavigationMapper( const Reference< XMultiServiceFactory >& _rxORB )
{
m_pUrlTransformer.reset( new UrlTransformer( _rxORB ) );
}
//------------------------------------------------------------------
OFormNavigationMapper::~OFormNavigationMapper( )
{
}
//------------------------------------------------------------------
bool OFormNavigationMapper::getFeatureURL( sal_Int16 _nFeatureId, URL& /* [out] */ _rURL )
{
// get the ascii version of the URL
const char* pAsciiURL = getFeatureURLAscii( _nFeatureId );
if ( pAsciiURL )
_rURL = m_pUrlTransformer->getStrictURLFromAscii( pAsciiURL );
return ( pAsciiURL != NULL );
}
//------------------------------------------------------------------
namespace
{
struct FeatureURL
{
const sal_Int16 nFormFeature;
const sal_Char* pAsciiURL;
FeatureURL( const sal_Int16 _nFormFeature, const sal_Char* _pAsciiURL )
:nFormFeature( _nFormFeature )
,pAsciiURL( _pAsciiURL )
{
}
};
const FeatureURL* lcl_getFeatureTable()
{
static const FeatureURL s_aFeatureURLs[] =
{
FeatureURL( FormFeature::MoveAbsolute, URL_FORM_POSITION ),
FeatureURL( FormFeature::TotalRecords, URL_FORM_RECORDCOUNT ),
FeatureURL( FormFeature::MoveToFirst, URL_RECORD_FIRST ),
FeatureURL( FormFeature::MoveToPrevious, URL_RECORD_PREV ),
FeatureURL( FormFeature::MoveToNext, URL_RECORD_NEXT ),
FeatureURL( FormFeature::MoveToLast, URL_RECORD_LAST ),
FeatureURL( FormFeature::SaveRecordChanges, URL_RECORD_SAVE ),
FeatureURL( FormFeature::UndoRecordChanges, URL_RECORD_UNDO ),
FeatureURL( FormFeature::MoveToInsertRow, URL_RECORD_NEW ),
FeatureURL( FormFeature::DeleteRecord, URL_RECORD_DELETE ),
FeatureURL( FormFeature::ReloadForm, URL_FORM_REFRESH ),
FeatureURL( FormFeature::RefreshCurrentControl, URL_FORM_REFRESH_CURRENT_CONTROL ),
FeatureURL( FormFeature::SortAscending, URL_FORM_SORT_UP ),
FeatureURL( FormFeature::SortDescending, URL_FORM_SORT_DOWN ),
FeatureURL( FormFeature::InteractiveSort, URL_FORM_SORT ),
FeatureURL( FormFeature::AutoFilter, URL_FORM_AUTO_FILTER ),
FeatureURL( FormFeature::InteractiveFilter, URL_FORM_FILTER ),
FeatureURL( FormFeature::ToggleApplyFilter, URL_FORM_APPLY_FILTER ),
FeatureURL( FormFeature::RemoveFilterAndSort, URL_FORM_REMOVE_FILTER ),
FeatureURL( 0, NULL )
};
return s_aFeatureURLs;
}
}
//------------------------------------------------------------------
const char* OFormNavigationMapper::getFeatureURLAscii( sal_Int16 _nFeatureId )
{
const FeatureURL* pFeatures = lcl_getFeatureTable();
while ( pFeatures->pAsciiURL )
{
if ( pFeatures->nFormFeature == _nFeatureId )
return pFeatures->pAsciiURL;
++pFeatures;
}
return NULL;
}
//------------------------------------------------------------------
sal_Int16 OFormNavigationMapper::getFeatureId( const ::rtl::OUString& _rCompleteURL )
{
const FeatureURL* pFeatures = lcl_getFeatureTable();
while ( pFeatures->pAsciiURL )
{
if ( _rCompleteURL.compareToAscii( pFeatures->pAsciiURL ) == 0 )
return pFeatures->nFormFeature;
++pFeatures;
}
return -1;
}
//.........................................................................
} // namespace frm
//.........................................................................
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|