Code

Super duper mega (fun!) commit: replaced encoding=utf-8 with fileencoding=utf-8 in...
[inkscape.git] / src / display / sp-ctrlquadr.h
1 #ifndef __INKSCAPE_CTRLQUADR_H__
2 #define __INKSCAPE_CTRLQUADR_H__
4 /*
5  * Quadrilateral
6  *
7  * Authors:
8  *   bulia byak
9  *
10  * Copyright (C) 2005 authors
11  *
12  * Released under GNU GPL
13  */
15 #include "sp-canvas.h"
19 #define SP_TYPE_CTRLQUADR (sp_ctrlquadr_get_type ())
20 #define SP_CTRLQUADR(obj) (GTK_CHECK_CAST ((obj), SP_TYPE_CTRLQUADR, SPCtrlQuadr))
21 #define SP_IS_CTRLQUADR(obj) (GTK_CHECK_TYPE ((obj), SP_TYPE_CTRLQUADR))
23 struct SPCtrlQuadr;
24 struct SPCtrlQuadrClass;
26 GType sp_ctrlquadr_get_type (void);
28 void sp_ctrlquadr_set_rgba32 (SPCtrlQuadr *cl, guint32 rgba);
29 void sp_ctrlquadr_set_coords (SPCtrlQuadr *cl, const Geom::Point p1, const Geom::Point p2, const Geom::Point p3, const Geom::Point p4);
32 #endif
34 /*
35   Local Variables:
36   mode:c++
37   c-file-style:"stroustrup"
38   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
39   indent-tabs-mode:nil
40   fill-column:99
41   End:
42 */
43 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :