Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include "fmtextcontrolfeature.hxx"
21 :
22 :
23 : namespace svx
24 : {
25 :
26 :
27 : using namespace ::com::sun::star::uno;
28 : using namespace ::com::sun::star::frame;
29 : using namespace ::com::sun::star::lang;
30 : using namespace ::com::sun::star::beans;
31 : using namespace ::com::sun::star::util;
32 :
33 :
34 : //= FmTextControlFeature
35 :
36 :
37 0 : FmTextControlFeature::FmTextControlFeature( const Reference< XDispatch >& _rxDispatcher, const URL& _rFeatureURL, SfxSlotId _nSlotId, ISlotInvalidator* _pInvalidator )
38 : :m_xDispatcher ( _rxDispatcher )
39 : ,m_aFeatureURL ( _rFeatureURL )
40 : ,m_nSlotId ( _nSlotId )
41 : ,m_pInvalidator ( _pInvalidator )
42 0 : ,m_bFeatureEnabled( false )
43 : {
44 : OSL_ENSURE( _rxDispatcher.is(), "FmTextControlFeature::FmTextControlFeature: invalid dispatcher!" );
45 : OSL_ENSURE( m_nSlotId, "FmTextControlFeature::FmTextControlFeature: invalid slot id!" );
46 : OSL_ENSURE( m_pInvalidator, "FmTextControlFeature::FmTextControlFeature: invalid invalidator!" );
47 :
48 0 : osl_atomic_increment( &m_refCount );
49 : try
50 : {
51 0 : m_xDispatcher->addStatusListener( this, m_aFeatureURL );
52 : }
53 0 : catch( const Exception& )
54 : {
55 : OSL_FAIL( "FmTextControlFeature::FmTextControlFeature: caught an exception!" );
56 : }
57 0 : osl_atomic_decrement( &m_refCount );
58 0 : }
59 :
60 :
61 0 : FmTextControlFeature::~FmTextControlFeature( )
62 : {
63 0 : }
64 :
65 :
66 0 : void FmTextControlFeature::dispatch() const SAL_THROW(())
67 : {
68 0 : dispatch( Sequence< PropertyValue >( ) );
69 0 : }
70 :
71 :
72 0 : void FmTextControlFeature::dispatch( const Sequence< PropertyValue >& _rArgs ) const SAL_THROW(())
73 : {
74 : try
75 : {
76 0 : if ( m_xDispatcher.is() )
77 0 : m_xDispatcher->dispatch( m_aFeatureURL, _rArgs );
78 : }
79 0 : catch( const Exception& )
80 : {
81 : OSL_FAIL( "FmTextControlFeature::dispatch: caught an exception!" );
82 : }
83 0 : }
84 :
85 :
86 0 : void SAL_CALL FmTextControlFeature::statusChanged( const FeatureStateEvent& _rState ) throw (RuntimeException, std::exception)
87 : {
88 0 : m_aFeatureState = _rState.State;
89 0 : m_bFeatureEnabled = _rState.IsEnabled;
90 :
91 0 : if ( m_pInvalidator )
92 0 : m_pInvalidator->Invalidate( m_nSlotId );
93 0 : }
94 :
95 :
96 0 : void SAL_CALL FmTextControlFeature::disposing( const EventObject& /*Source*/ ) throw (RuntimeException, std::exception)
97 : {
98 : // nothing to do
99 0 : }
100 :
101 :
102 0 : void FmTextControlFeature::dispose() SAL_THROW(())
103 : {
104 : try
105 : {
106 0 : m_xDispatcher->removeStatusListener( this, m_aFeatureURL );
107 0 : m_xDispatcher.clear();
108 : }
109 0 : catch( const Exception& )
110 : {
111 : OSL_FAIL( "FmTextControlFeature::dispose: caught an exception!" );
112 : }
113 0 : }
114 :
115 :
116 : } // namespace svx
117 :
118 :
119 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|