LibreOffice Module sc (master) 1
vbavalidation.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#pragma once
20
21#include <ooo/vba/excel/XValidation.hpp>
22#include <utility>
24
25namespace com::sun::star::table { class XCellRange; }
26namespace com::sun::star::uno { class XComponentContext; }
27
29
31{
32 css::uno::Reference< css::table::XCellRange > m_xRange;
33
34public:
35 ScVbaValidation( const css::uno::Reference< ov::XHelperInterface >& xParent, const css::uno::Reference< css::uno::XComponentContext >& xContext, css::uno::Reference< css::table::XCellRange > xRange ) : ValidationImpl_BASE( xParent, xContext ), m_xRange(std::move( 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/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual sal_Bool SAL_CALL getShowError() override
virtual sal_Bool SAL_CALL getIgnoreBlank() override
virtual sal_Bool SAL_CALL getInCellDropdown() override
virtual OUString SAL_CALL getErrorMessage() override
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
virtual OUString SAL_CALL getInputTitle() override
virtual void SAL_CALL Delete() override
css::uno::Reference< css::table::XCellRange > m_xRange
ScVbaValidation(const css::uno::Reference< ov::XHelperInterface > &xParent, const css::uno::Reference< css::uno::XComponentContext > &xContext, css::uno::Reference< css::table::XCellRange > xRange)
virtual OUString SAL_CALL getFormula2() override
virtual OUString SAL_CALL getInputMessage() override
virtual OUString getServiceImplName() override
virtual void SAL_CALL setErrorTitle(const OUString &_errortitle) override
virtual void SAL_CALL setInCellDropdown(sal_Bool _incelldropdown) override
virtual OUString SAL_CALL getFormula1() override
virtual void SAL_CALL setIgnoreBlank(sal_Bool _ignoreblank) override
virtual void SAL_CALL setInputTitle(const OUString &_inputtitle) override
virtual void SAL_CALL setShowError(sal_Bool _showerror) override
virtual sal_Int32 SAL_CALL getType() override
virtual void SAL_CALL setErrorMessage(const OUString &_errormessage) override
virtual sal_Bool SAL_CALL getShowInput() override
virtual OUString SAL_CALL getErrorTitle() override
virtual void SAL_CALL setInputMessage(const OUString &_inputmessage) override
virtual void SAL_CALL setShowInput(sal_Bool _showinput) override
virtual css::uno::Sequence< OUString > getServiceNames() override
Type
unsigned char sal_Bool
InheritedHelperInterfaceWeakImpl< ov::excel::XValidation > ValidationImpl_BASE