1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
* SPPage -- a page object.
*//*
* Authors:
* Martin Owens 2021
*
* Copyright (C) 2021 Martin Owens
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#ifndef SEEN_SP_PAGE_H
#define SEEN_SP_PAGE_H
#include <2geom/rect.h>
#include <vector>
#include "display/control/canvas-page.h"
#include "page-manager.h"
#include "sp-object.h"
#include "svg/svg-length.h"
class SPDesktop;
class SPItem;
namespace Inkscape {
class ObjectSet;
}
class SPPage : public SPObject
{
public:
SPPage();
~SPPage() override;
void movePage(Geom::Affine translate, bool with_objects);
void swapPage(SPPage *other, bool with_objects);
static void moveItems(Geom::Affine translate, std::vector<SPItem *> const &objects);
// Canvas visualisation
void showPage(Inkscape::CanvasItemGroup *fg, Inkscape::CanvasItemGroup *bg);
void hidePage(Inkscape::UI::Widget::Canvas *canvas) { _canvas_item->remove(canvas); }
void showPage() { _canvas_item->show(); }
void hidePage() { _canvas_item->hide(); }
void setSelected(bool selected);
bool setDefaultAttributes();
int getPageIndex() const;
int getPagePosition() const { return getPageIndex() + 1; }
bool setPageIndex(int index, bool swap_page);
bool setPagePosition(int position, bool swap_page) { return setPageIndex(position - 1, swap_page); }
SPPage *getNextPage();
SPPage *getPreviousPage();
Geom::Rect getRect() const;
Geom::Rect getDesktopRect() const;
Geom::Rect getDocumentRect() const;
Geom::Rect getSensitiveRect() const;
void setRect(Geom::Rect rect);
void setDesktopRect(Geom::Rect rect);
void setDesktopSize(double width, double height);
std::vector<SPItem *> getExclusiveItems(bool hidden = true) const;
std::vector<SPItem *> getOverlappingItems(bool hidden = true) const;
bool itemOnPage(SPItem *item, bool contains = false) const;
bool isViewportPage() const;
std::string getDefaultLabel() const;
std::string getLabel() const;
protected:
void build(SPDocument *doc, Inkscape::XML::Node *repr) override;
void release() override;
void update(SPCtx *ctx, unsigned int flags) override;
void set(SPAttr key, const char *value) override;
Inkscape::XML::Node *write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags) override;
private:
Inkscape::CanvasPage *_canvas_item = nullptr;
SVGLength x;
SVGLength y;
SVGLength width;
SVGLength height;
};
#endif // SEEN_SP_PAGE_H
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :
|