GPU-Calc: remove Alloc_Host_Ptr for clmem of NAN vector
[LibreOffice.git] / sc / source / ui / vba / vbaformatcondition.hxx
blobca373fd61c8d0d11eac26a93c7602541ebac61d0
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 #ifndef SC_VBA_FORMATCONDITION_HXX
20 #define SC_VBA_FORMATCONDITION_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
34 protected:
35 OUString msStyleName;
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;
41 public:
42 ScVbaFormatCondition( const css::uno::Reference< ov::XHelperInterface >& xParent, const css::uno::Reference< css::uno::XComponentContext > & xContext, const css::uno::Reference< css::sheet::XSheetConditionalEntry >& _xSheetConditionalEntry, const css::uno::Reference< ov::excel::XStyle >&, const css::uno::Reference< ov::excel::XFormatConditions >& _xFormatConditions, const css::uno::Reference< css::beans::XPropertySet >& _xPropertySet ) throw ( css::uno::RuntimeException );
44 void notifyRange() throw ( css::script::BasicErrorException );
45 static css::sheet::ConditionOperator retrieveAPIType(sal_Int32 _nVBAType, const css::uno::Reference< css::sheet::XSheetCondition >& _xSheetCondition ) throw( css::script::BasicErrorException );
47 //Methods
48 virtual void SAL_CALL Delete( ) throw (css::script::BasicErrorException, css::uno::RuntimeException);
49 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);
50 virtual ::sal_Int32 SAL_CALL Type( ) throw (css::script::BasicErrorException, css::uno::RuntimeException);
51 virtual ::sal_Int32 Operator( sal_Bool ) throw (css::script::BasicErrorException);
52 virtual ::sal_Int32 SAL_CALL Operator( ) throw (css::script::BasicErrorException, css::uno::RuntimeException);
53 virtual void setFormula1( const css::uno::Any& _aFormula1) throw ( css::script::BasicErrorException );
54 virtual void setFormula2( const css::uno::Any& _aFormula2) throw ( css::script::BasicErrorException );
55 virtual css::uno::Reference< ::ooo::vba::excel::XInterior > SAL_CALL Interior( ) throw (css::script::BasicErrorException, css::uno::RuntimeException);
56 virtual css::uno::Any SAL_CALL Borders( const css::uno::Any& Index ) throw (css::script::BasicErrorException, css::uno::RuntimeException);
57 virtual css::uno::Reference< ::ooo::vba::excel::XFont > SAL_CALL Font( ) throw (css::script::BasicErrorException, css::uno::RuntimeException);
58 // XHelperInterface
59 virtual OUString getServiceImplName();
60 virtual css::uno::Sequence<OUString> getServiceNames();
62 #endif
64 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */