1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
19 #ifndef INCLUDED_VBAHELPER_SOURCE_MSFORMS_VBACOMBOBOX_HXX
20 #define INCLUDED_VBAHELPER_SOURCE_MSFORMS_VBACOMBOBOX_HXX
22 #include <cppuhelper/implbase.hxx>
23 #include <com/sun/star/uno/XComponentContext.hpp>
24 #include <com/sun/star/beans/XPropertySet.hpp>
25 #include <com/sun/star/script/XDefaultProperty.hpp>
26 #include <ooo/vba/msforms/XComboBox.hpp>
27 #include <com/sun/star/beans/PropertyAttribute.hpp>
29 #include "vbacontrol.hxx"
30 #include "vbalistcontrolhelper.hxx"
31 #include <vbahelper/vbahelper.hxx>
33 typedef cppu::ImplInheritanceHelper
<ScVbaControl
, ov::msforms::XComboBox
, css::script::XDefaultProperty
> ComboBoxImpl_BASE
;
34 class ScVbaComboBox
: public ComboBoxImpl_BASE
36 std::unique_ptr
< ListControlHelper
> mpListHelper
;
40 ScVbaComboBox( const css::uno::Reference
< ov::XHelperInterface
>& xParent
, const css::uno::Reference
< css::uno::XComponentContext
>& xContext
, const css::uno::Reference
< css::uno::XInterface
>& xControl
, const css::uno::Reference
< css::frame::XModel
>& xModel
, std::unique_ptr
<ov::AbstractGeometryAttributes
> pGeomHelper
);
43 virtual css::uno::Any SAL_CALL
getListIndex() override
;
44 virtual ::sal_Int32 SAL_CALL
getListCount() override
;
45 virtual void SAL_CALL
setListIndex( const css::uno::Any
& _value
) override
;
46 virtual css::uno::Any SAL_CALL
getValue() override
;
47 virtual void SAL_CALL
setValue( const css::uno::Any
& _value
) override
;
48 virtual OUString SAL_CALL
getText() override
;
49 virtual void SAL_CALL
setText( const OUString
& _text
) override
;
50 virtual sal_Int32 SAL_CALL
getStyle() override
;
51 virtual void SAL_CALL
setStyle( sal_Int32 nStyle
) override
;
52 virtual sal_Int32 SAL_CALL
getDropButtonStyle() override
;
53 virtual void SAL_CALL
setDropButtonStyle( sal_Int32 nDropButtonStyle
) override
;
54 virtual sal_Int32 SAL_CALL
getDragBehavior() override
;
55 virtual void SAL_CALL
setDragBehavior( sal_Int32 nDragBehavior
) override
;
56 virtual sal_Int32 SAL_CALL
getEnterFieldBehavior() override
;
57 virtual void SAL_CALL
setEnterFieldBehavior( sal_Int32 nEnterFieldBehavior
) override
;
58 virtual sal_Int32 SAL_CALL
getListStyle() override
;
59 virtual void SAL_CALL
setListStyle( sal_Int32 nListStyle
) override
;
60 virtual sal_Int32 SAL_CALL
getTextAlign() override
;
61 virtual void SAL_CALL
setTextAlign( sal_Int32 nTextAlign
) override
;
62 virtual sal_Int32 SAL_CALL
getTextLength() override
;
63 virtual css::uno::Reference
< ov::msforms::XNewFont
> SAL_CALL
getFont() override
;
64 virtual sal_Int32 SAL_CALL
getBackColor() override
;
65 virtual void SAL_CALL
setBackColor( sal_Int32 nBackColor
) override
;
66 virtual sal_Bool SAL_CALL
getAutoSize() override
;
67 virtual void SAL_CALL
setAutoSize( sal_Bool bAutoSize
) override
;
68 virtual sal_Bool SAL_CALL
getLocked() override
;
69 virtual void SAL_CALL
setLocked( sal_Bool bAutoSize
) override
;
70 virtual OUString SAL_CALL
getLinkedCell() override
;
71 virtual void SAL_CALL
setLinkedCell( const OUString
& _linkedcell
) override
;
74 virtual void SAL_CALL
AddItem( const css::uno::Any
& pvargItem
, const css::uno::Any
& pvargIndex
) override
;
75 virtual void SAL_CALL
removeItem( const css::uno::Any
& index
) override
;
76 virtual void SAL_CALL
Clear( ) override
;
77 virtual css::uno::Any SAL_CALL
List( const css::uno::Any
& pvargIndex
, const css::uno::Any
& pvarColumn
) override
;
79 virtual void SAL_CALL
setRowSource( const OUString
& _rowsource
) override
;
82 OUString SAL_CALL
getDefaultPropertyName( ) override
{ return OUString("Value"); }
84 virtual OUString
getServiceImplName() override
;
85 virtual css::uno::Sequence
<OUString
> getServiceNames() override
;
90 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */