tdf#130857 qt weld: Support mail merge "Server Auth" dialog
[LibreOffice.git] / reportdesign / inc / RptPage.hxx
blobce8e3e6133f078601d373c956935635c486c0c55
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 UNLESS_MERGELIBS_MORE(REPORTDESIGN_DLLPUBLIC) OReportPage final : 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 virtual css::uno::Reference< css::uno::XInterface > createUnoPage() override;
52 public:
54 OReportPage( OReportModel& rModel
55 ,css::uno::Reference< css::report::XSection > _xSection );
57 virtual rtl::Reference<SdrPage> CloneSdrPage(SdrModel& rTargetModel) const override;
59 virtual void NbcInsertObject(SdrObject* pObj, size_t nPos=SAL_MAX_SIZE) override;
60 virtual rtl::Reference<SdrObject> RemoveObject(size_t nObjNum) override;
62 /** returns the index inside the object list which belongs to the report component.
63 @param _xObject the report component
65 size_t getIndexOf(const css::uno::Reference< css::report::XReportComponent >& _xObject);
67 /** removes the SdrObject which belongs to the report component.
68 @param _xObject the report component
70 void removeSdrObject(const css::uno::Reference< css::report::XReportComponent >& _xObject);
72 void setSpecialMode() {m_bSpecialInsertMode = true;}
73 bool getSpecialMode() const {return m_bSpecialInsertMode;}
74 // all temporary objects will remove and destroy
75 void resetSpecialMode();
77 /** insert a new SdrObject which belongs to the report component.
78 @param _xObject the report component
80 void insertObject(const css::uno::Reference< css::report::XReportComponent >& _xObject);
82 const css::uno::Reference< css::report::XSection >& getSection() const { return m_xSection;}
85 #endif // INCLUDED_REPORTDESIGN_INC_RPTPAGE_HXX
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */