LibreOffice Module svx (master)
1
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
svx
inc
sdr
contact
objectcontactofobjlistpainter.hxx
Go to the documentation of this file.
1
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
/*
3
* This file is part of the LibreOffice project.
4
*
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/.
8
*
9
* This file incorporates work covered by the following license notice:
10
*
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 .
18
*/
19
20
#pragma once
21
22
#include <config_options.h>
23
#include <
svx/sdr/contact/objectcontact.hxx
>
24
#include <
svx/svxdllapi.h
>
25
#include <
svx/svdpage.hxx
>
26
#include <
unotools/weakref.hxx
>
27
28
class
SdrPage
;
29
class
SdrObject
;
30
31
namespace
sdr::contact
{
32
33
class
UNLESS_MERGELIBS(SVXCORE_DLLPUBLIC) ObjectContactPainter :
public
ObjectContact
34
{
35
protected
:
36
// Hierarchy access methods
37
virtual
sal_uInt32 GetPaintObjectCount()
const
= 0;
38
virtual
ViewContact
& GetPaintObjectViewContact(sal_uInt32
nIndex
) = 0;
39
40
public
:
41
// basic constructor/destructor
42
ObjectContactPainter();
43
virtual
~ObjectContactPainter()
override
;
44
};
45
46
// typedef for transferring SdrObject
47
typedef ::std::vector< SdrObject* >
SdrObjectVector
;
48
49
class
SVXCORE_DLLPUBLIC
ObjectContactOfObjListPainter
final :
public
ObjectContactPainter
50
{
51
// Target OutputDevice
52
OutputDevice
&
mrTargetOutputDevice
;
53
54
// Set StartPoint for next run, also given in constructor
55
SdrObjectVector
maStartObjects
;
56
57
// the processed page which is the base e.g. for PageNumberFields
58
const
SdrPage
*
mpProcessedPage
;
59
60
// Hierarchy access methods
61
virtual
sal_uInt32 GetPaintObjectCount()
const override
;
62
virtual
ViewContact
& GetPaintObjectViewContact(sal_uInt32 nIndex)
override
;
63
64
public
:
65
// basic constructor/destructor
66
ObjectContactOfObjListPainter
(
67
OutputDevice
& rTargetDevice,
68
SdrObjectVector&& rObjects,
69
const
SdrPage
* pProcessedPage);
70
virtual
~
ObjectContactOfObjListPainter
()
override
;
71
72
// Process the whole displaying
73
virtual
void
ProcessDisplay(
DisplayInfo
& rDisplayInfo)
override
;
74
75
// recording MetaFile? Default is false
76
virtual
bool
isOutputToRecordingMetaFile()
const override
;
77
78
// pdf export? Default is false
79
virtual
bool
isOutputToPDFFile()
const override
;
80
81
virtual
OutputDevice
* TryToGetOutputDevice()
const override
;
82
};
83
84
class
ObjectContactOfPagePainter
:
public
ObjectContactPainter
85
{
86
// the original ObjectContact this painter is working on
87
ObjectContact
&
mrOriginalObjectContact
;
88
89
// Set StartPoint for next run, also given in constructor
90
unotools::WeakReference<SdrPage>
mxStartPage
;
91
92
protected
:
93
// Hierarchy access methods
94
virtual
sal_uInt32 GetPaintObjectCount()
const override
;
95
virtual
ViewContact
& GetPaintObjectViewContact(sal_uInt32 nIndex)
override
;
96
97
public
:
98
// basic constructor
99
ObjectContactOfPagePainter
(
ObjectContact
& rOriginalObjectContact);
100
virtual
~
ObjectContactOfPagePainter
()
override
;
101
102
// set another page
103
void
SetStartPage(
const
SdrPage
* pPage);
104
const
SdrPage
*
GetStartPage
()
const
{
return
mxStartPage.
get
().get(); }
105
SdrPage
*
GetStartPage
() {
return
mxStartPage.
get
().get(); }
106
107
virtual
OutputDevice
* TryToGetOutputDevice()
const override
;
108
};
109
110
}
111
112
113
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
sdr::contact::ObjectContactOfObjListPainter::maStartObjects
SdrObjectVector maStartObjects
Definition:
objectcontactofobjlistpainter.hxx:55
nIndex
sal_Int32 nIndex
sdr::contact::ObjectContactOfObjListPainter
Definition:
objectcontactofobjlistpainter.hxx:49
sdr::contact::ObjectContactOfPagePainter::mrOriginalObjectContact
ObjectContact & mrOriginalObjectContact
Definition:
objectcontactofobjlistpainter.hxx:87
sdr::contact::SdrObjectVector
class UNLESS_MERGELIBS(SVXCORE_DLLPUBLIC) ObjectContactPainter typedef::std::vector< SdrObject * > SdrObjectVector
Definition:
objectcontactofobjlistpainter.hxx:33
sdr::contact
sdr::contact::ObjectContact
Definition:
objectcontact.hxx:44
weakref.hxx
sdr::contact::ObjectContactOfPagePainter::GetStartPage
SdrPage * GetStartPage()
Definition:
objectcontactofobjlistpainter.hxx:105
unotools::WeakReference< SdrPage >
sdr::contact::ViewContact
Definition:
viewcontact.hxx:36
sdr::contact::ObjectContactOfPagePainter::mxStartPage
unotools::WeakReference< SdrPage > mxStartPage
Definition:
objectcontactofobjlistpainter.hxx:90
sdr::contact::ObjectContactOfObjListPainter::mrTargetOutputDevice
OutputDevice & mrTargetOutputDevice
Definition:
objectcontactofobjlistpainter.hxx:52
sdr::contact::ObjectContactOfPagePainter::GetStartPage
const SdrPage * GetStartPage() const
Definition:
objectcontactofobjlistpainter.hxx:104
unotools::WeakReference::get
rtl::Reference< interface_type > SAL_CALL get() const
sdr::contact::ObjectContactOfPagePainter
Definition:
objectcontactofobjlistpainter.hxx:84
SdrObject
Abstract DrawObject.
Definition:
svdobj.hxx:260
svdpage.hxx
OutputDevice
sdr::contact::ObjectContactOfObjListPainter::mpProcessedPage
const SdrPage * mpProcessedPage
Definition:
objectcontactofobjlistpainter.hxx:58
sdr::contact::DisplayInfo
Definition:
displayinfo.hxx:30
SVXCORE_DLLPUBLIC
#define SVXCORE_DLLPUBLIC
Definition:
svxdllapi.h:35
objectcontact.hxx
SdrPage
A SdrPage contains exactly one SdrObjList and a description of the physical page dimensions (size / m...
Definition:
svdpage.hxx:373
svxdllapi.h
Generated on Tue Jun 21 2022 19:45:01 for LibreOffice Module svx (master) by
1.8.10