blob: e12e7aaad20b9142127b32e6525a97559d9650c7 (
plain)
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
97
|
// SPDX-License-Identifier: GPL-2.0-or-later
/**
* @file
* A light-weight widget containing an SPCanvas with for rendering an SVG.
*/
/*
* Authors:
* Tavmjong Bah <tavmjong@free.fr>
*
* Copyright (C) 2018 Authors
*
* The contents of this file may be used under the GNU General Public License Version 2 or later.
* Read the file 'COPYING' for more information.
*
*/
#ifndef INKSCAPE_UI_SVG_VIEW_WIDGET_VARIATIONS_H
#define INKSCAPE_UI_SVG_VIEW_WIDGET_VARIATIONS_H
#include <gtkmm.h>
class SPDocument;
namespace Inkscape {
class CanvasItemDrawing;
class CanvasItemGroup;
namespace UI {
namespace Widget {
class Canvas;
}
namespace View {
/**
* A light-weight widget containing an Inkscape canvas for rendering an SVG.
*/
class SVGViewWidget : public Gtk::Bin {
public:
SVGViewWidget(SPDocument* document);
~SVGViewWidget() override;
void setDocument( SPDocument* document);
void setResize( int width, int height);
void on_size_allocate(Gtk::Allocation& allocation) override;
private:
Inkscape::UI::Widget::Canvas *_canvas;
// From SVGView ---------------------------------
public:
SPDocument* _document = nullptr;
unsigned int _dkey = 0;
Inkscape::CanvasItemGroup *_parent = nullptr;
Inkscape::CanvasItemDrawing *_drawing = nullptr;
Gtk::Allocation _allocation;
double _hscale = 1.0; ///< horizontal scale
double _vscale = 1.0; ///< vertical scale
bool _rescale = false; ///< whether to rescale automatically
bool _keepaspect = false;
double _width = 0.0;
double _height = 0.0;
/**
* Helper function that sets rescale ratio.
*/
void doRescale();
/**
* Change cursor (used for links).
*/
void mouseover();
void mouseout();
};
} // Namespace View
} // Namespace UI
} // Namespace Inkscape
#endif // INKSCAPE_UI_SVG_VIEW_WIDGET
/*
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 :
|