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
|
#ifndef INKSCAPE_CTRL_H
#define INKSCAPE_CTRL_H
/* sodipodi-ctrl
*
* It is simply small square, which does not scale nor rotate
*
*/
#include <gtk/gtkenums.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <libnr/nr-rect-l.h>
#include "sp-canvas-item.h"
#define SP_TYPE_CTRL (sp_ctrl_get_type ())
#define SP_CTRL(obj) (GTK_CHECK_CAST ((obj), SP_TYPE_CTRL, SPCtrl))
#define SP_CTRL_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), SP_TYPE_CTRL, SPCtrlClass))
#define SP_IS_CTRL(obj) (GTK_CHECK_TYPE ((obj), SP_TYPE_CTRL))
#define SP_IS_CTRL_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), SP_TYPE_CTRL))
typedef enum {
SP_CTRL_SHAPE_SQUARE,
SP_CTRL_SHAPE_DIAMOND,
SP_CTRL_SHAPE_CIRCLE,
SP_CTRL_SHAPE_CROSS,
SP_CTRL_SHAPE_BITMAP,
SP_CTRL_SHAPE_IMAGE
} SPCtrlShapeType;
typedef enum {
SP_CTRL_MODE_COLOR,
SP_CTRL_MODE_XOR
} SPCtrlModeType;
struct SPCtrl : public SPCanvasItem {
SPCtrlShapeType shape;
SPCtrlModeType mode;
GtkAnchorType anchor;
gint span;
guint defined : 1;
guint shown : 1;
guint build : 1;
guint filled : 1;
guint stroked : 1;
guint32 fill_color;
guint32 stroke_color;
bool _moved;
NRRectL box; /* NB! x1 & y1 are included */
guchar *cache;
GdkPixbuf * pixbuf;
void moveto(Geom::Point const p);
Geom::Point _point;
};
struct SPCtrlClass : public SPCanvasItemClass{
};
/* Standard Gtk function */
GtkType sp_ctrl_get_type (void);
#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 :
|