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 #ifndef INCLUDED_SC_SOURCE_UI_VBA_VBAVALIDATION_HXX 20 #define INCLUDED_SC_SOURCE_UI_VBA_VBAVALIDATION_HXX 21 22 #include <ooo/vba/excel/XValidation.hpp> 23 #include <vbahelper/vbahelperinterface.hxx> 24 25 namespace com { namespace sun { namespace star { namespace table { class XCellRange; } } } } 26 namespace com { namespace sun { namespace star { namespace uno { class XComponentContext; } } } } 27 28 typedef InheritedHelperInterfaceWeakImpl<ov::excel::XValidation > ValidationImpl_BASE; 29 30 class ScVbaValidation : public ValidationImpl_BASE 31 { 32 css::uno::Reference< css::table::XCellRange > m_xRange; 33 34 public: ScVbaValidation(const css::uno::Reference<ov::XHelperInterface> & xParent,const css::uno::Reference<css::uno::XComponentContext> & xContext,const css::uno::Reference<css::table::XCellRange> & xRange)35 ScVbaValidation( const css::uno::Reference< ov::XHelperInterface >& xParent, const css::uno::Reference< css::uno::XComponentContext >& xContext, const css::uno::Reference< css::table::XCellRange >& xRange ) : ValidationImpl_BASE( xParent, xContext ), m_xRange( xRange) {} 36 // Attributes 37 virtual sal_Bool SAL_CALL getIgnoreBlank() override; 38 virtual void SAL_CALL setIgnoreBlank( sal_Bool _ignoreblank ) override; 39 virtual sal_Bool SAL_CALL getInCellDropdown() override; 40 virtual void SAL_CALL setInCellDropdown( sal_Bool _incelldropdown ) override; 41 virtual sal_Bool SAL_CALL getShowInput() override; 42 virtual void SAL_CALL setShowInput( sal_Bool _showinput ) override; 43 virtual sal_Bool SAL_CALL getShowError() override; 44 virtual void SAL_CALL setShowError( sal_Bool _showerror ) override; 45 virtual OUString SAL_CALL getInputTitle() override; 46 virtual void SAL_CALL setInputTitle( const OUString& _inputtitle ) override; 47 virtual OUString SAL_CALL getErrorTitle() override; 48 virtual void SAL_CALL setErrorTitle( const OUString& _errortitle ) override; 49 virtual OUString SAL_CALL getInputMessage() override; 50 virtual void SAL_CALL setInputMessage( const OUString& _inputmessage ) override; 51 virtual OUString SAL_CALL getErrorMessage() override; 52 virtual void SAL_CALL setErrorMessage( const OUString& _errormessage ) override; 53 virtual OUString SAL_CALL getFormula1() override ; 54 virtual OUString SAL_CALL getFormula2() override; 55 virtual sal_Int32 SAL_CALL getType() override; 56 // Methods 57 virtual void SAL_CALL Delete( ) override; 58 virtual void SAL_CALL Add( const css::uno::Any& Type, const css::uno::Any& AlertStyle, const css::uno::Any& Operator, const css::uno::Any& Formula1, const css::uno::Any& Formula2 ) override; 59 // XHelperInterface 60 virtual OUString getServiceImplName() override; 61 virtual css::uno::Sequence<OUString> getServiceNames() override; 62 63 }; 64 65 #endif 66 67 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ 68