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 .
21 #include <ooo/vba/excel/XName.hpp>
23 #include <vbahelper/vbahelperinterface.hxx>
24 #include <formula/grammar.hxx>
26 namespace com::sun::star::sheet
{ class XNamedRange
; }
27 namespace com::sun::star::sheet
{ class XNamedRanges
; }
29 typedef InheritedHelperInterfaceWeakImpl
< ov::excel::XName
> NameImpl_BASE
;
31 class ScVbaName
: public NameImpl_BASE
33 css::uno::Reference
< css::frame::XModel
> mxModel
;
34 css::uno::Reference
< css::sheet::XNamedRange
> mxNamedRange
;
35 css::uno::Reference
< css::sheet::XNamedRanges
> mxNames
;
36 OUString
getContent( const formula::FormulaGrammar::Grammar eGrammar
);
37 void setContent( const OUString
& sContent
, const formula::FormulaGrammar::Grammar eGrammar
);
39 ScVbaName( const css::uno::Reference
< ov::XHelperInterface
>& xParent
, const css::uno::Reference
< css::uno::XComponentContext
>& xContext
, css::uno::Reference
< css::sheet::XNamedRange
> xName
, css::uno::Reference
< css::sheet::XNamedRanges
> xNames
, css::uno::Reference
< css::frame::XModel
> xModel
);
40 virtual ~ScVbaName() override
;
43 virtual OUString SAL_CALL
getName() override
;
44 virtual void SAL_CALL
setName( const OUString
&rName
) override
;
45 virtual OUString SAL_CALL
getNameLocal() override
;
46 virtual void SAL_CALL
setNameLocal( const OUString
&rName
) override
;
47 virtual sal_Bool SAL_CALL
getVisible() override
;
48 virtual void SAL_CALL
setVisible( sal_Bool bVisible
) override
;
49 virtual OUString SAL_CALL
getValue() override
;
50 virtual void SAL_CALL
setValue( const OUString
&rValue
) override
;
51 virtual OUString SAL_CALL
getRefersTo() override
;
52 virtual void SAL_CALL
setRefersTo( const OUString
&rRefersTo
) override
;
53 virtual OUString SAL_CALL
getRefersToLocal() override
;
54 virtual void SAL_CALL
setRefersToLocal( const OUString
&rRefersTo
) override
;
55 virtual OUString SAL_CALL
getRefersToR1C1() override
;
56 virtual void SAL_CALL
setRefersToR1C1( const OUString
&rRefersTo
) override
;
57 virtual OUString SAL_CALL
getRefersToR1C1Local() override
;
58 virtual void SAL_CALL
setRefersToR1C1Local( const OUString
&rRefersTo
) override
;
59 virtual css::uno::Reference
< ov::excel::XRange
> SAL_CALL
getRefersToRange() override
;
62 virtual void SAL_CALL
Delete() override
;
65 virtual OUString
getServiceImplName() override
;
66 virtual css::uno::Sequence
<OUString
> getServiceNames() override
;
69 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */