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 #ifndef SC_VBA_COMBOBOX_HXX 24 #define SC_VBA_COMBOBOX_HXX 25 #include <cppuhelper/implbase2.hxx> 26 #include <com/sun/star/uno/XComponentContext.hpp> 27 #include <com/sun/star/beans/XPropertySet.hpp> 28 #include <com/sun/star/script/XDefaultProperty.hpp> 29 #include <ooo/vba/msforms/XComboBox.hpp> 30 #include <comphelper/proparrhlp.hxx> 31 #include <comphelper/propertycontainer.hxx> 32 #include <com/sun/star/beans/PropertyAttribute.hpp> 33 34 #include "vbacontrol.hxx" 35 #include "vbalistcontrolhelper.hxx" 36 #include <vbahelper/vbahelper.hxx> 37 38 typedef cppu::ImplInheritanceHelper2<ScVbaControl, ov::msforms::XComboBox, css::script::XDefaultProperty > ComboBoxImpl_BASE; 39 class ScVbaComboBox : public ComboBoxImpl_BASE 40 { 41 std::auto_ptr< ListControlHelper > mpListHelper; 42 rtl::OUString sSourceName; 43 rtl::OUString msDftPropName; 44 bool mbDialogType; 45 46 public: 47 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, ov::AbstractGeometryAttributes* pGeomHelper, bool bDialogType = false ); 48 49 // Attributes 50 virtual css::uno::Any SAL_CALL getListIndex() throw (css::uno::RuntimeException); 51 virtual ::sal_Int32 SAL_CALL getListCount() throw (css::uno::RuntimeException); 52 virtual void SAL_CALL setListIndex( const css::uno::Any& _value ) throw (css::uno::RuntimeException); 53 virtual css::uno::Any SAL_CALL getValue() throw (css::uno::RuntimeException); 54 virtual void SAL_CALL setValue( const css::uno::Any& _value ) throw (css::uno::RuntimeException); 55 virtual ::rtl::OUString SAL_CALL getText() throw (css::uno::RuntimeException); 56 virtual void SAL_CALL setText( const ::rtl::OUString& _text ) throw (css::uno::RuntimeException); 57 virtual sal_Int32 SAL_CALL getStyle() throw (css::uno::RuntimeException); 58 virtual void SAL_CALL setStyle( sal_Int32 nStyle ) throw (css::uno::RuntimeException); 59 virtual sal_Int32 SAL_CALL getDropButtonStyle() throw (css::uno::RuntimeException); 60 virtual void SAL_CALL setDropButtonStyle( sal_Int32 nDropButtonStyle ) throw (css::uno::RuntimeException); 61 virtual sal_Int32 SAL_CALL getDragBehavior() throw (css::uno::RuntimeException); 62 virtual void SAL_CALL setDragBehavior( sal_Int32 nDragBehavior ) throw (css::uno::RuntimeException); 63 virtual sal_Int32 SAL_CALL getEnterFieldBehavior() throw (css::uno::RuntimeException); 64 virtual void SAL_CALL setEnterFieldBehavior( sal_Int32 nEnterFieldBehavior ) throw (css::uno::RuntimeException); 65 virtual sal_Int32 SAL_CALL getListStyle() throw (css::uno::RuntimeException); 66 virtual void SAL_CALL setListStyle( sal_Int32 nListStyle ) throw (css::uno::RuntimeException); 67 virtual sal_Int32 SAL_CALL getTextAlign() throw (css::uno::RuntimeException); 68 virtual void SAL_CALL setTextAlign( sal_Int32 nTextAlign ) throw (css::uno::RuntimeException); 69 virtual sal_Int32 SAL_CALL getTextLength() throw (css::uno::RuntimeException); 70 virtual css::uno::Reference< ov::msforms::XNewFont > SAL_CALL getFont() throw (css::uno::RuntimeException); 71 72 // Methods 73 virtual void SAL_CALL AddItem( const css::uno::Any& pvargItem, const css::uno::Any& pvargIndex ) throw (css::uno::RuntimeException); 74 virtual void SAL_CALL removeItem( const css::uno::Any& index ) throw (css::uno::RuntimeException); 75 virtual void SAL_CALL Clear( ) throw (css::uno::RuntimeException); 76 virtual css::uno::Any SAL_CALL List( const css::uno::Any& pvargIndex, const css::uno::Any& pvarColumn ) throw (css::uno::RuntimeException); 77 // XControl 78 virtual void SAL_CALL setRowSource( const rtl::OUString& _rowsource ) throw (css::uno::RuntimeException); 79 80 // XDefaultProperty getDefaultPropertyName()81 ::rtl::OUString SAL_CALL getDefaultPropertyName( ) throw (css::uno::RuntimeException) { return ::rtl::OUString::createFromAscii("Value"); } 82 //XHelperInterface 83 virtual rtl::OUString& getServiceImplName(); 84 virtual css::uno::Sequence<rtl::OUString> getServiceNames(); 85 }; 86 87 #endif // 88