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 .
19 #ifndef INCLUDED_SC_SOURCE_UI_VBA_VBAFORMATCONDITION_HXX
20 #define INCLUDED_SC_SOURCE_UI_VBA_VBAFORMATCONDITION_HXX
21 #include <ooo/vba/excel/XFormatCondition.hpp>
22 #include <ooo/vba/excel/XFormatConditions.hpp>
23 #include <ooo/vba/excel/XStyle.hpp>
24 #include <com/sun/star/frame/XModel.hpp>
25 #include <com/sun/star/sheet/XSheetConditionalEntries.hpp>
26 #include <com/sun/star/sheet/XSheetConditionalEntry.hpp>
27 #include <com/sun/star/sheet/XSheetCondition.hpp>
28 #include <com/sun/star/beans/XPropertySet.hpp>
29 #include "vbacondition.hxx"
31 typedef ScVbaCondition
< ov::excel::XFormatCondition
> ScVbaFormatCondition_BASE
;
32 class ScVbaFormatCondition
: public ScVbaFormatCondition_BASE
36 css::uno::Reference
< css::sheet::XSheetConditionalEntry
> mxSheetConditionalEntry
;
37 css::uno::Reference
< css::sheet::XSheetConditionalEntries
> mxSheetConditionalEntries
;
38 css::uno::Reference
< ov::excel::XFormatConditions
> moFormatConditions
;
39 css::uno::Reference
< ov::excel::XStyle
> mxStyle
;
40 css::uno::Reference
< css::beans::XPropertySet
> mxParentRangePropertySet
;
42 ScVbaFormatCondition( const css::uno::Reference
< ov::XHelperInterface
>& xParent
,
43 const css::uno::Reference
< css::uno::XComponentContext
> & xContext
,
44 const css::uno::Reference
< css::sheet::XSheetConditionalEntry
>& _xSheetConditionalEntry
,
45 const css::uno::Reference
< ov::excel::XStyle
>&,
46 const css::uno::Reference
< ov::excel::XFormatConditions
>& _xFormatConditions
,
47 const css::uno::Reference
< css::beans::XPropertySet
>& _xPropertySet
) throw ( css::uno::RuntimeException
, css::script::BasicErrorException
);
49 void notifyRange() throw ( css::script::BasicErrorException
);
50 static css::sheet::ConditionOperator
retrieveAPIType(sal_Int32 _nVBAType
, const css::uno::Reference
< css::sheet::XSheetCondition
>& _xSheetCondition
) throw( css::script::BasicErrorException
);
53 virtual void SAL_CALL
Delete( ) throw (css::script::BasicErrorException
, css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
54 virtual void SAL_CALL
Modify( ::sal_Int32 Type
, const css::uno::Any
& Operator
, const css::uno::Any
& Formula1
, const css::uno::Any
& Formula2
) throw (css::script::BasicErrorException
, css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
55 virtual ::sal_Int32 SAL_CALL
Type( ) throw (css::script::BasicErrorException
, css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
56 virtual ::sal_Int32
Operator( bool ) throw (css::script::BasicErrorException
) SAL_OVERRIDE
;
57 virtual ::sal_Int32 SAL_CALL
Operator( ) throw (css::script::BasicErrorException
, css::uno::RuntimeException
) SAL_OVERRIDE
;
58 virtual void setFormula1( const css::uno::Any
& _aFormula1
) throw ( css::script::BasicErrorException
) SAL_OVERRIDE
;
59 virtual void setFormula2( const css::uno::Any
& _aFormula2
) throw ( css::script::BasicErrorException
) SAL_OVERRIDE
;
60 virtual css::uno::Reference
< ::ooo::vba::excel::XInterior
> SAL_CALL
Interior( ) throw (css::script::BasicErrorException
, css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
61 virtual css::uno::Any SAL_CALL
Borders( const css::uno::Any
& Index
) throw (css::script::BasicErrorException
, css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
62 virtual css::uno::Reference
< ::ooo::vba::excel::XFont
> SAL_CALL
Font( ) throw (css::script::BasicErrorException
, css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
64 virtual OUString
getServiceImplName() SAL_OVERRIDE
;
65 virtual css::uno::Sequence
<OUString
> getServiceNames() SAL_OVERRIDE
;
69 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */