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 0 : FmTextControlFeature::FmTextControlFeature( const Reference< XDispatch >& _rxDispatcher, const URL& _rFeatureURL, SfxSlotId _nSlotId, ISlotInvalidator* _pInvalidator )
34 : :m_xDispatcher ( _rxDispatcher )
35 : ,m_aFeatureURL ( _rFeatureURL )
36 : ,m_nSlotId ( _nSlotId )
37 : ,m_pInvalidator ( _pInvalidator )
38 0 : ,m_bFeatureEnabled( false )
39 : {
40 : OSL_ENSURE( _rxDispatcher.is(), "FmTextControlFeature::FmTextControlFeature: invalid dispatcher!" );
41 : OSL_ENSURE( m_nSlotId, "FmTextControlFeature::FmTextControlFeature: invalid slot id!" );
42 : OSL_ENSURE( m_pInvalidator, "FmTextControlFeature::FmTextControlFeature: invalid invalidator!" );
43 :
44 0 : osl_atomic_increment( &m_refCount );
45 : try
46 : {
47 0 : m_xDispatcher->addStatusListener( this, m_aFeatureURL );
48 : }
49 0 : catch( const Exception& )
50 : {
51 : OSL_FAIL( "FmTextControlFeature::FmTextControlFeature: caught an exception!" );
52 : }
53 0 : osl_atomic_decrement( &m_refCount );
54 0 : }
55 :
56 :
57 0 : FmTextControlFeature::~FmTextControlFeature( )
58 : {
59 0 : }
60 :
61 :
62 0 : void FmTextControlFeature::dispatch() const
63 : {
64 0 : dispatch( Sequence< PropertyValue >( ) );
65 0 : }
66 :
67 :
68 0 : void FmTextControlFeature::dispatch( const Sequence< PropertyValue >& _rArgs ) const
69 : {
70 : try
71 : {
72 0 : if ( m_xDispatcher.is() )
73 0 : m_xDispatcher->dispatch( m_aFeatureURL, _rArgs );
74 : }
75 0 : catch( const Exception& )
76 : {
77 : OSL_FAIL( "FmTextControlFeature::dispatch: caught an exception!" );
78 : }
79 0 : }
80 :
81 :
82 0 : void SAL_CALL FmTextControlFeature::statusChanged( const FeatureStateEvent& _rState ) throw (RuntimeException, std::exception)
83 : {
84 0 : m_aFeatureState = _rState.State;
85 0 : m_bFeatureEnabled = _rState.IsEnabled;
86 :
87 0 : if ( m_pInvalidator )
88 0 : m_pInvalidator->Invalidate( m_nSlotId );
89 0 : }
90 :
91 :
92 0 : void SAL_CALL FmTextControlFeature::disposing( const EventObject& /*Source*/ ) throw (RuntimeException, std::exception)
93 : {
94 : // nothing to do
95 0 : }
96 :
97 :
98 0 : void FmTextControlFeature::dispose()
99 : {
100 : try
101 : {
102 0 : m_xDispatcher->removeStatusListener( this, m_aFeatureURL );
103 0 : m_xDispatcher.clear();
104 : }
105 0 : catch( const Exception& )
106 : {
107 : OSL_FAIL( "FmTextControlFeature::dispose: caught an exception!" );
108 : }
109 0 : }
110 :
111 :
112 : } // namespace svx
113 :
114 :
115 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|