tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / sc / source / ui / vba / vbavalidation.hxx
blob8e2082f7a483dca486247ec60c6e6a9ff09b7a48
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 #pragma once
21 #include <ooo/vba/excel/XValidation.hpp>
22 #include <utility>
23 #include <vbahelper/vbahelperinterface.hxx>
25 namespace com::sun::star::table { class XCellRange; }
26 namespace com::sun::star::uno { class XComponentContext; }
28 typedef InheritedHelperInterfaceWeakImpl<ov::excel::XValidation > ValidationImpl_BASE;
30 class ScVbaValidation : public ValidationImpl_BASE
32 css::uno::Reference< css::table::XCellRange > m_xRange;
34 public:
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 getCaseSensitive() override;
40 virtual void SAL_CALL setCaseSensitive( sal_Bool _bCase ) override;
41 virtual sal_Bool SAL_CALL getInCellDropdown() override;
42 virtual void SAL_CALL setInCellDropdown( sal_Bool _incelldropdown ) override;
43 virtual sal_Bool SAL_CALL getShowInput() override;
44 virtual void SAL_CALL setShowInput( sal_Bool _showinput ) override;
45 virtual sal_Bool SAL_CALL getShowError() override;
46 virtual void SAL_CALL setShowError( sal_Bool _showerror ) override;
47 virtual OUString SAL_CALL getInputTitle() override;
48 virtual void SAL_CALL setInputTitle( const OUString& _inputtitle ) override;
49 virtual OUString SAL_CALL getErrorTitle() override;
50 virtual void SAL_CALL setErrorTitle( const OUString& _errortitle ) override;
51 virtual OUString SAL_CALL getInputMessage() override;
52 virtual void SAL_CALL setInputMessage( const OUString& _inputmessage ) override;
53 virtual OUString SAL_CALL getErrorMessage() override;
54 virtual void SAL_CALL setErrorMessage( const OUString& _errormessage ) override;
55 virtual OUString SAL_CALL getFormula1() override ;
56 virtual OUString SAL_CALL getFormula2() override;
57 virtual sal_Int32 SAL_CALL getType() override;
58 // Methods
59 virtual void SAL_CALL Delete( ) override;
60 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;
61 // XHelperInterface
62 virtual OUString getServiceImplName() override;
63 virtual css::uno::Sequence<OUString> getServiceNames() override;
67 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */