Branch libreoffice-5-0-4
[LibreOffice.git] / include / toolkit / controls / unocontrolbase.hxx
blobfd833e66eb303f0aa5b37ee28f8be6f1c25af90b
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_TOOLKIT_CONTROLS_UNOCONTROLBASE_HXX
21 #define INCLUDED_TOOLKIT_CONTROLS_UNOCONTROLBASE_HXX
23 #include <com/sun/star/awt/Size.hpp>
24 #include <com/sun/star/util/Date.hpp>
25 #include <com/sun/star/util/Time.hpp>
27 #include <toolkit/controls/unocontrol.hxx>
30 // class UnoControlBase
33 class TOOLKIT_DLLPUBLIC UnoControlBase : public UnoControl
35 protected:
36 UnoControlBase() :UnoControl() {}
38 bool ImplHasProperty( sal_uInt16 nProp );
39 bool ImplHasProperty( const OUString& aPropertyName );
40 void ImplSetPropertyValue( const OUString& aPropertyName, const ::com::sun::star::uno::Any& aValue, bool bUpdateThis );
41 void ImplSetPropertyValues( const ::com::sun::star::uno::Sequence< OUString >& aPropertyNames, const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aValues, bool bUpdateThis );
42 ::com::sun::star::uno::Any ImplGetPropertyValue( const OUString& aPropertyName );
44 template <typename T> T ImplGetPropertyValuePOD( sal_uInt16 nProp );
45 template <typename T> T ImplGetPropertyValueClass( sal_uInt16 nProp );
46 bool ImplGetPropertyValue_BOOL( sal_uInt16 nProp );
47 sal_Int16 ImplGetPropertyValue_INT16( sal_uInt16 nProp );
48 sal_Int32 ImplGetPropertyValue_INT32( sal_uInt16 nProp );
49 double ImplGetPropertyValue_DOUBLE( sal_uInt16 nProp );
50 OUString ImplGetPropertyValue_UString( sal_uInt16 nProp );
51 ::com::sun::star::util::Date ImplGetPropertyValue_Date( sal_uInt16 nProp );
52 ::com::sun::star::util::Time ImplGetPropertyValue_Time( sal_uInt16 nProp );
54 // XLayoutConstrains (nur wenn das Control es unterstuetzt!)
55 ::com::sun::star::awt::Size Impl_getMinimumSize();
56 ::com::sun::star::awt::Size Impl_getPreferredSize();
57 ::com::sun::star::awt::Size Impl_calcAdjustedSize( const ::com::sun::star::awt::Size& rNewSize );
59 // XTextLayoutConstrains (nur wenn das Control es unterstuetzt!)
60 ::com::sun::star::awt::Size Impl_getMinimumSize( sal_Int16 nCols, sal_Int16 nLines );
61 void Impl_getColumnsAndLines( sal_Int16& nCols, sal_Int16& nLines );
66 #endif // INCLUDED_TOOLKIT_CONTROLS_UNOCONTROLBASE_HXX
68 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */