xref: /AOO41X/main/extensions/source/propctrlr/pcrcommon.hxx (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir 
28*cdf0e10cSrcweir #ifndef _EXTENSIONS_PROPCTRLR_PCRCOMMON_HXX_
29*cdf0e10cSrcweir #define _EXTENSIONS_PROPCTRLR_PCRCOMMON_HXX_
30*cdf0e10cSrcweir 
31*cdf0e10cSrcweir #define EDITOR_LIST_APPEND	            (sal_uInt16)-1
32*cdf0e10cSrcweir #define EDITOR_LIST_REPLACE_EXISTING    (sal_uInt16)-1
33*cdf0e10cSrcweir 
34*cdf0e10cSrcweir /** === begin UNO includes === **/
35*cdf0e10cSrcweir #include <com/sun/star/uno/Sequence.hxx>
36*cdf0e10cSrcweir #include <com/sun/star/beans/XPropertyChangeListener.hpp>
37*cdf0e10cSrcweir #include <com/sun/star/beans/PropertyChangeEvent.hpp>
38*cdf0e10cSrcweir /** === end UNO includes === **/
39*cdf0e10cSrcweir 
40*cdf0e10cSrcweir #include <tools/string.hxx>
41*cdf0e10cSrcweir #include <toolkit/helper/vclunohelper.hxx>
42*cdf0e10cSrcweir #include <comphelper/listenernotification.hxx>
43*cdf0e10cSrcweir 
44*cdf0e10cSrcweir //............................................................................
45*cdf0e10cSrcweir namespace pcr
46*cdf0e10cSrcweir {
47*cdf0e10cSrcweir //............................................................................
48*cdf0e10cSrcweir 
49*cdf0e10cSrcweir     #define OWN_PROPERTY_ID_INTROSPECTEDOBJECT      0x0010
50*cdf0e10cSrcweir     #define OWN_PROPERTY_ID_CURRENTPAGE             0x0011
51*cdf0e10cSrcweir     #define OWN_PROPERTY_ID_CONTROLCONTEXT          0x0012
52*cdf0e10cSrcweir     #define OWN_PROPERTY_ID_TABBINGMODEL            0x0013
53*cdf0e10cSrcweir 
54*cdf0e10cSrcweir     //========================================================================
55*cdf0e10cSrcweir     //= types
56*cdf0e10cSrcweir 	//========================================================================
57*cdf0e10cSrcweir     typedef ::comphelper::OSimpleListenerContainer  <   ::com::sun::star::beans::XPropertyChangeListener
58*cdf0e10cSrcweir                                                     ,   ::com::sun::star::beans::PropertyChangeEvent
59*cdf0e10cSrcweir                                                     >   PropertyChangeListeners;
60*cdf0e10cSrcweir 
61*cdf0e10cSrcweir     //========================================================================
62*cdf0e10cSrcweir     //= helper
63*cdf0e10cSrcweir 	//========================================================================
64*cdf0e10cSrcweir     // small helper to make the "swap" call on an STL container a single-line call, which
65*cdf0e10cSrcweir     // in it's canonic form "aFoo.swap( Container() )" doesn't compile with GCC
66*cdf0e10cSrcweir     template< class CONTAINER >
67*cdf0e10cSrcweir     void clearContainer( CONTAINER& _rContainer )
68*cdf0e10cSrcweir     {
69*cdf0e10cSrcweir         CONTAINER aEmpty;
70*cdf0e10cSrcweir         _rContainer.swap( aEmpty );
71*cdf0e10cSrcweir     }
72*cdf0e10cSrcweir 
73*cdf0e10cSrcweir     //========================================================================
74*cdf0e10cSrcweir     //= HelpIdUrl
75*cdf0e10cSrcweir 	//========================================================================
76*cdf0e10cSrcweir     /// small helper to translate help ids into help urls
77*cdf0e10cSrcweir     class HelpIdUrl
78*cdf0e10cSrcweir     {
79*cdf0e10cSrcweir     public:
80*cdf0e10cSrcweir         static rtl::OString getHelpId( const ::rtl::OUString& _rHelpURL );
81*cdf0e10cSrcweir         static ::rtl::OUString getHelpURL( const rtl::OString& );
82*cdf0e10cSrcweir     };
83*cdf0e10cSrcweir 
84*cdf0e10cSrcweir 	//====================================================================
85*cdf0e10cSrcweir 	//= StlSyntaxSequence
86*cdf0e10cSrcweir 	//====================================================================
87*cdf0e10cSrcweir     template< class ELEMENT >
88*cdf0e10cSrcweir     class StlSyntaxSequence : public ::com::sun::star::uno::Sequence< ELEMENT >
89*cdf0e10cSrcweir     {
90*cdf0e10cSrcweir     private:
91*cdf0e10cSrcweir         typedef ::com::sun::star::uno::Sequence< ELEMENT >  UnoBase;
92*cdf0e10cSrcweir 
93*cdf0e10cSrcweir     public:
94*cdf0e10cSrcweir         inline StlSyntaxSequence() : UnoBase() { }
95*cdf0e10cSrcweir         inline StlSyntaxSequence( const UnoBase& rSeq ) : UnoBase( rSeq ) { }
96*cdf0e10cSrcweir         inline StlSyntaxSequence( const ELEMENT* pElements, sal_Int32 len ) : UnoBase( pElements, len ) { }
97*cdf0e10cSrcweir         inline StlSyntaxSequence( sal_Int32 len ) : UnoBase( len ) { }
98*cdf0e10cSrcweir 
99*cdf0e10cSrcweir         operator const UnoBase&() const { return *this; }
100*cdf0e10cSrcweir         operator       UnoBase&()       { return *this; }
101*cdf0e10cSrcweir 
102*cdf0e10cSrcweir         typedef const ELEMENT* const_iterator;
103*cdf0e10cSrcweir         typedef       ELEMENT* iterator;
104*cdf0e10cSrcweir 
105*cdf0e10cSrcweir         inline const_iterator begin() const { return UnoBase::getConstArray(); }
106*cdf0e10cSrcweir         inline const_iterator end() const { return UnoBase::getConstArray() + UnoBase::getLength(); }
107*cdf0e10cSrcweir 
108*cdf0e10cSrcweir         inline iterator begin() { return UnoBase::getArray(); }
109*cdf0e10cSrcweir         inline iterator end() { return UnoBase::getArray() + UnoBase::getLength(); }
110*cdf0e10cSrcweir 
111*cdf0e10cSrcweir         inline sal_Int32 size() const { return UnoBase::getLength(); }
112*cdf0e10cSrcweir         inline bool empty() const { return UnoBase::getLength() == 0; }
113*cdf0e10cSrcweir 
114*cdf0e10cSrcweir         inline void resize( size_t _newSize ) { UnoBase::realloc( _newSize ); }
115*cdf0e10cSrcweir 
116*cdf0e10cSrcweir         inline iterator erase( iterator _pos )
117*cdf0e10cSrcweir         {
118*cdf0e10cSrcweir             iterator loop = end();
119*cdf0e10cSrcweir             while ( --loop != _pos )
120*cdf0e10cSrcweir                 *( loop - 1 ) = *loop;
121*cdf0e10cSrcweir             resize( size() - 1 );
122*cdf0e10cSrcweir         }
123*cdf0e10cSrcweir     };
124*cdf0e10cSrcweir 
125*cdf0e10cSrcweir     //========================================================================
126*cdf0e10cSrcweir     //= UNO helpers
127*cdf0e10cSrcweir 	//========================================================================
128*cdf0e10cSrcweir #define DECLARE_XCOMPONENT() \
129*cdf0e10cSrcweir     virtual void SAL_CALL dispose(  ) throw (::com::sun::star::uno::RuntimeException); \
130*cdf0e10cSrcweir     virtual void SAL_CALL addEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener >& xListener ) throw (::com::sun::star::uno::RuntimeException); \
131*cdf0e10cSrcweir     virtual void SAL_CALL removeEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener >& aListener ) throw (::com::sun::star::uno::RuntimeException);
132*cdf0e10cSrcweir 
133*cdf0e10cSrcweir #define IMPLEMENT_FORWARD_XCOMPONENT( classname, baseclass ) \
134*cdf0e10cSrcweir     void SAL_CALL classname::dispose(  ) throw (::com::sun::star::uno::RuntimeException) \
135*cdf0e10cSrcweir     { \
136*cdf0e10cSrcweir     baseclass::WeakComponentImplHelperBase::dispose(); \
137*cdf0e10cSrcweir     } \
138*cdf0e10cSrcweir     void SAL_CALL classname::addEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener >& _Listener ) throw (::com::sun::star::uno::RuntimeException) \
139*cdf0e10cSrcweir     { \
140*cdf0e10cSrcweir         baseclass::WeakComponentImplHelperBase::addEventListener( _Listener ); \
141*cdf0e10cSrcweir     } \
142*cdf0e10cSrcweir     void SAL_CALL classname::removeEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener >& _Listener ) throw (::com::sun::star::uno::RuntimeException) \
143*cdf0e10cSrcweir     { \
144*cdf0e10cSrcweir         baseclass::WeakComponentImplHelperBase::removeEventListener( _Listener ); \
145*cdf0e10cSrcweir     } \
146*cdf0e10cSrcweir 
147*cdf0e10cSrcweir //............................................................................
148*cdf0e10cSrcweir } // namespace pcr
149*cdf0e10cSrcweir //............................................................................
150*cdf0e10cSrcweir 
151*cdf0e10cSrcweir #endif // _EXTENSIONS_PROPCTRLR_PCRCOMMON_HXX_
152*cdf0e10cSrcweir 
153