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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
* TODO: insert short description here
*//*
* Authors: see git history
*
* Copyright (C) 2018 Authors
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#ifndef INKSCAPE_CTRL_H
#define INKSCAPE_CTRL_H
/* sodipodi-ctrl
*
* It is simply small square, which does not scale nor rotate
*
*/
#include <gdk-pixbuf/gdk-pixbuf.h>
#include "sp-canvas-item.h"
#include "enums.h"
#define SP_TYPE_CTRL (sp_ctrl_get_type ())
#define SP_CTRL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SP_TYPE_CTRL, SPCtrl))
#define SP_CTRL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SP_TYPE_CTRL, SPCtrlClass))
#define SP_IS_CTRL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SP_TYPE_CTRL))
#define SP_IS_CTRL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SP_TYPE_CTRL))
enum SPCtrlShapeType {
SP_CTRL_SHAPE_SQUARE,
SP_CTRL_SHAPE_DIAMOND,
SP_CTRL_SHAPE_CIRCLE,
SP_CTRL_SHAPE_TRIANGLE,
SP_CTRL_SHAPE_CROSS,
SP_CTRL_SHAPE_BITMAP,
SP_CTRL_SHAPE_IMAGE
};
enum SPCtrlModeType {
SP_CTRL_MODE_COLOR,
SP_CTRL_MODE_XOR
};
struct SPCtrl : public SPCanvasItem {
SPCtrlShapeType shape;
SPCtrlModeType mode;
SPAnchorType anchor;
unsigned int width;
unsigned int height;
guint defined : 1;
guint shown : 1;
guint build : 1;
guint filled : 1;
guint stroked : 1;
guint32 fill_color;
guint32 stroke_color;
gdouble angle;
Geom::IntRect box; /* NB! x1 & y1 are included */
guint32 *cache;
GdkPixbuf * pixbuf;
void moveto(Geom::Point const p);
Geom::Point _point;
};
struct SPCtrlClass : public SPCanvasItemClass{
};
/* Standard Gtk function */
GType sp_ctrl_get_type ();
#endif /* !INKSCAPE_CTRL_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 :
|