diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:24:48 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:24:48 +0000 |
commit | cca66b9ec4e494c1d919bff0f71a820d8afab1fa (patch) | |
tree | 146f39ded1c938019e1ed42d30923c2ac9e86789 /src/object/sp-page.h | |
parent | Initial commit. (diff) | |
download | inkscape-upstream/1.2.2.tar.xz inkscape-upstream/1.2.2.zip |
Adding upstream version 1.2.2.upstream/1.2.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | src/object/sp-page.h | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/src/object/sp-page.h b/src/object/sp-page.h new file mode 100644 index 0000000..17d6c34 --- /dev/null +++ b/src/object/sp-page.h @@ -0,0 +1,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 : |