LibreOffice Module toolkit (master) 1
unocontrolbase.hxx
Go to the documentation of this file.
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#ifndef INCLUDED_TOOLKIT_CONTROLS_UNOCONTROLBASE_HXX
21#define INCLUDED_TOOLKIT_CONTROLS_UNOCONTROLBASE_HXX
22
23#include <com/sun/star/awt/Size.hpp>
24#include <com/sun/star/util/Date.hpp>
25#include <com/sun/star/util/Time.hpp>
26
28
29
30
31
33{
34protected:
36
37 bool ImplHasProperty( sal_uInt16 nProp );
38 bool ImplHasProperty( const OUString& aPropertyName );
39 void ImplSetPropertyValue( const OUString& aPropertyName, const css::uno::Any& aValue, bool bUpdateThis );
40 void ImplSetPropertyValues( const css::uno::Sequence< OUString >& aPropertyNames, const css::uno::Sequence< css::uno::Any >& aValues, bool bUpdateThis );
41 css::uno::Any ImplGetPropertyValue( const OUString& aPropertyName ) const;
42
43 template <typename T> T ImplGetPropertyValuePOD( sal_uInt16 nProp );
44 template <typename T> T ImplGetPropertyValueClass( sal_uInt16 nProp );
45 bool ImplGetPropertyValue_BOOL( sal_uInt16 nProp );
46 sal_Int16 ImplGetPropertyValue_INT16( sal_uInt16 nProp );
47 sal_Int32 ImplGetPropertyValue_INT32( sal_uInt16 nProp );
48 double ImplGetPropertyValue_DOUBLE( sal_uInt16 nProp );
49 OUString ImplGetPropertyValue_UString( sal_uInt16 nProp );
50 css::util::Date ImplGetPropertyValue_Date( sal_uInt16 nProp );
51 css::util::Time ImplGetPropertyValue_Time( sal_uInt16 nProp );
52
53 // XLayoutConstrains (only when the Control supporting it)
54 css::awt::Size Impl_getMinimumSize();
55 css::awt::Size Impl_getPreferredSize();
56 css::awt::Size Impl_calcAdjustedSize( const css::awt::Size& rNewSize );
57
58 // XTextLayoutConstrains (only when the Control supporting it)
59 css::awt::Size Impl_getMinimumSize( sal_Int16 nCols, sal_Int16 nLines );
60 void Impl_getColumnsAndLines( sal_Int16& nCols, sal_Int16& nLines );
61};
62
63
64#endif // INCLUDED_TOOLKIT_CONTROLS_UNOCONTROLBASE_HXX
65
66/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
sal_Int16 ImplGetPropertyValue_INT16(sal_uInt16 nProp)
double ImplGetPropertyValue_DOUBLE(sal_uInt16 nProp)
void Impl_getColumnsAndLines(sal_Int16 &nCols, sal_Int16 &nLines)
bool ImplHasProperty(sal_uInt16 nProp)
css::uno::Any ImplGetPropertyValue(const OUString &aPropertyName) const
void ImplSetPropertyValue(const OUString &aPropertyName, const css::uno::Any &aValue, bool bUpdateThis)
sal_Int32 ImplGetPropertyValue_INT32(sal_uInt16 nProp)
OUString ImplGetPropertyValue_UString(sal_uInt16 nProp)
css::awt::Size Impl_getMinimumSize()
void ImplSetPropertyValues(const css::uno::Sequence< OUString > &aPropertyNames, const css::uno::Sequence< css::uno::Any > &aValues, bool bUpdateThis)
css::util::Time ImplGetPropertyValue_Time(sal_uInt16 nProp)
T ImplGetPropertyValuePOD(sal_uInt16 nProp)
T ImplGetPropertyValueClass(sal_uInt16 nProp)
css::awt::Size Impl_calcAdjustedSize(const css::awt::Size &rNewSize)
css::awt::Size Impl_getPreferredSize()
css::util::Date ImplGetPropertyValue_Date(sal_uInt16 nProp)
bool ImplGetPropertyValue_BOOL(sal_uInt16 nProp)