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_REPORTDESIGN_INC_RPTPAGE_HXX
20 #define INCLUDED_REPORTDESIGN_INC_RPTPAGE_HXX
23 #include <svx/svdpage.hxx>
24 #include <com/sun/star/report/XReportComponent.hpp>
25 #include <com/sun/star/report/XSection.hpp>
35 class REPORTDESIGN_DLLPUBLIC OReportPage
: public SdrPage
37 OReportPage
& operator=(const OReportPage
&) = delete;
40 css::uno::Reference
< css::report::XSection
> m_xSection
;
41 bool m_bSpecialInsertMode
;
42 std::vector
<SdrObject
*> m_aTemporaryObjectList
;
44 OReportPage(const OReportPage
&);
46 // method to remove temporary objects, created by 'special mode'
48 void removeTempObject(SdrObject
*_pToRemoveObj
);
50 virtual ~OReportPage() override
;
53 virtual css::uno::Reference
< css::uno::XInterface
> createUnoPage() override
;
56 OReportPage( OReportModel
& rModel
57 ,const css::uno::Reference
< css::report::XSection
>& _xSection
);
60 virtual SdrPage
* Clone() const override
;
61 virtual SdrPage
* Clone( SdrModel
* pNewModel
) const override
;
63 virtual void NbcInsertObject(SdrObject
* pObj
, size_t nPos
=SAL_MAX_SIZE
) override
;
64 virtual SdrObject
* RemoveObject(size_t nObjNum
) override
;
66 /** returns the index inside the object list which belongs to the report component.
67 @param _xObject the report component
69 sal_uLong
getIndexOf(const css::uno::Reference
< css::report::XReportComponent
>& _xObject
);
71 /** removes the SdrObject which belongs to the report component.
72 @param _xObject the report component
74 void removeSdrObject(const css::uno::Reference
< css::report::XReportComponent
>& _xObject
);
76 void setSpecialMode() {m_bSpecialInsertMode
= true;}
77 bool getSpecialMode() {return m_bSpecialInsertMode
;}
78 // all temporary objects will remove and destroy
79 void resetSpecialMode();
81 /** insert a new SdrObject which belongs to the report component.
82 @param _xObject the report component
84 void insertObject(const css::uno::Reference
< css::report::XReportComponent
>& _xObject
);
86 const css::uno::Reference
< css::report::XSection
>& getSection() const { return m_xSection
;}
89 #endif // INCLUDED_REPORTDESIGN_INC_RPTPAGE_HXX
91 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */