Version 6.4.0.0.beta1, tag libreoffice-6.4.0.0.beta1
[LibreOffice.git] / reportdesign / inc / RptPage.hxx
blobabfa883f93eb840306018a3343b7c85d0e9bcfba
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 INCLUDED_REPORTDESIGN_INC_RPTPAGE_HXX
20 #define INCLUDED_REPORTDESIGN_INC_RPTPAGE_HXX
22 #include "dllapi.h"
23 #include <svx/svdpage.hxx>
24 #include <com/sun/star/report/XReportComponent.hpp>
25 #include <com/sun/star/report/XSection.hpp>
27 namespace rptui
30 // OReportPage
33 class OReportModel;
35 class REPORTDESIGN_DLLPUBLIC OReportPage : public SdrPage
37 OReportPage& operator=(const OReportPage&) = delete;
38 OReportPage(const OReportPage&) = delete;
40 OReportModel& rModel;
41 css::uno::Reference< css::report::XSection > m_xSection;
42 bool m_bSpecialInsertMode;
43 std::vector<SdrObject*> m_aTemporaryObjectList;
45 // method to remove temporary objects, created by 'special mode'
46 // (BegDragObj)
47 void removeTempObject(SdrObject const *_pToRemoveObj);
49 virtual ~OReportPage() override;
51 protected:
52 virtual css::uno::Reference< css::uno::XInterface > createUnoPage() override;
53 public:
55 OReportPage( OReportModel& rModel
56 ,const css::uno::Reference< css::report::XSection >& _xSection );
58 virtual SdrPage* CloneSdrPage(SdrModel& rTargetModel) const override;
60 virtual void NbcInsertObject(SdrObject* pObj, size_t nPos=SAL_MAX_SIZE) override;
61 virtual SdrObject* RemoveObject(size_t nObjNum) override;
63 /** returns the index inside the object list which belongs to the report component.
64 @param _xObject the report component
66 sal_uLong getIndexOf(const css::uno::Reference< css::report::XReportComponent >& _xObject);
68 /** removes the SdrObject which belongs to the report component.
69 @param _xObject the report component
71 void removeSdrObject(const css::uno::Reference< css::report::XReportComponent >& _xObject);
73 void setSpecialMode() {m_bSpecialInsertMode = true;}
74 bool getSpecialMode() const {return m_bSpecialInsertMode;}
75 // all temporary objects will remove and destroy
76 void resetSpecialMode();
78 /** insert a new SdrObject which belongs to the report component.
79 @param _xObject the report component
81 void insertObject(const css::uno::Reference< css::report::XReportComponent >& _xObject);
83 const css::uno::Reference< css::report::XSection >& getSection() const { return m_xSection;}
86 #endif // INCLUDED_REPORTDESIGN_INC_RPTPAGE_HXX
88 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */