1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 #ifndef _TOOLKIT_AWT_UNOCONTROLBASE_HXX_
25 #define _TOOLKIT_AWT_UNOCONTROLBASE_HXX_
26 
27 #include <com/sun/star/awt/Size.hpp>
28 
29 #include <toolkit/controls/unocontrol.hxx>
30 
31 //	----------------------------------------------------
32 //	class UnoControlBase
33 //	----------------------------------------------------
34 
35 class TOOLKIT_DLLPUBLIC UnoControlBase : public UnoControl
36 {
37 protected:
38     UnoControlBase();
39 
40 protected:
UnoControlBase(const::com::sun::star::uno::Reference<::com::sun::star::lang::XMultiServiceFactory> & i_factory)41 	UnoControlBase( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& i_factory )
42         :UnoControl( i_factory )
43     {
44     }
45 
46 	sal_Bool					ImplHasProperty( sal_uInt16 nProp );
47 	sal_Bool					ImplHasProperty( const ::rtl::OUString& aPropertyName );
48 	void						ImplSetPropertyValue( const ::rtl::OUString& aPropertyName, const ::com::sun::star::uno::Any& aValue, sal_Bool bUpdateThis );
49     void						ImplSetPropertyValues( const ::com::sun::star::uno::Sequence< ::rtl::OUString >& aPropertyNames, const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aValues, sal_Bool bUpdateThis );
50 	::com::sun::star::uno::Any	ImplGetPropertyValue( const ::rtl::OUString& aPropertyName );
51 
52 	sal_Bool		ImplGetPropertyValue_BOOL( sal_uInt16 nProp );
53 	sal_Int16 		ImplGetPropertyValue_INT16( sal_uInt16 nProp );
54 	sal_uInt16 		ImplGetPropertyValue_UINT16( sal_uInt16 nProp );
55 	sal_Int32 		ImplGetPropertyValue_INT32( sal_uInt16 nProp );
56 	sal_uInt32 		ImplGetPropertyValue_UINT32( sal_uInt16 nProp );
57 	double 			ImplGetPropertyValue_DOUBLE( sal_uInt16 nProp );
58 	::rtl::OUString	ImplGetPropertyValue_UString( sal_uInt16 nProp );
59 
60 	// XLayoutConstrains (nur wenn das Control es unterstuetzt!)
61 	::com::sun::star::awt::Size	Impl_getMinimumSize();
62 	::com::sun::star::awt::Size	Impl_getPreferredSize();
63 	::com::sun::star::awt::Size	Impl_calcAdjustedSize( const ::com::sun::star::awt::Size& rNewSize );
64 
65 	// XTextLayoutConstrains (nur wenn das Control es unterstuetzt!)
66 	::com::sun::star::awt::Size	Impl_getMinimumSize( sal_Int16 nCols, sal_Int16 nLines );
67 	void						Impl_getColumnsAndLines( sal_Int16& nCols, sal_Int16& nLines );
68 };
69 
70 
71 
72 #endif // _TOOLKIT_AWT_UNOCONTROLBASE_HXX_
73 
74