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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
/*
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* This is a plug-in for GIMP.
*
* Generates images containing vector type drawings.
*
* Copyright (C) 1997 Andy Thomas alt@picnic.demon.co.uk
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef __GFIG_DOBJECT_H__
#define __GFIG_DOBJECT_H__
#include "gfig-types.h"
#include "gfig-style.h"
typedef void (*DobjDrawFunc) (GfigObject *, cairo_t *);
typedef void (*DobjFunc) (GfigObject *);
typedef GfigObject *(*DobjGenFunc) (GfigObject *);
typedef struct DobjPoints
{
struct DobjPoints *next;
GdkPoint pnt;
gboolean found_me;
} DobjPoints;
typedef struct
{
DobjType type; /* the object type for this class */
const gchar *name;
/* virtuals */
DobjDrawFunc drawfunc; /* How do I draw myself */
DobjFunc paintfunc; /* Draw me on canvas */
DobjGenFunc copyfunc; /* copy */
void (*update) (GdkPoint *pnt);
} GfigObjectClass;
extern GfigObjectClass dobj_class[10];
/* The object itself */
struct _GfigObject
{
DobjType type; /* What is the type? */
GfigObjectClass *class; /* What class does it belong to? */
gint type_data; /* Extra data needed by the object */
DobjPoints *points; /* List of points */
Style style; /* this object's individual style settings */
gint style_no; /* style index of this specific object */
};
/* States of the object */
#define GFIG_OK 0x0
#define GFIG_MODIFIED 0x1
#define GFIG_READONLY 0x2
extern GfigObject *obj_creating;
extern GfigObject *tmp_line;
DobjPoints *new_dobjpoint (gint x,
gint y);
void do_save_obj (GfigObject *obj,
GString *to);
DobjPoints *d_copy_dobjpoints (DobjPoints *pnts);
void free_one_obj (GfigObject *obj);
void d_delete_dobjpoints (DobjPoints *pnts);
void object_update (GdkPoint *pnt);
GList *copy_all_objs (GList *objs);
void draw_objects (GList *objs,
gboolean show_single,
cairo_t *cr);
GfigObject *d_load_object (gchar *desc,
FILE *fp);
GfigObject *d_new_object (DobjType type,
gint x,
gint y);
void d_save_object (GfigObject *obj,
GString *string);
void free_all_objs (GList *objs);
void clear_undo (void);
void new_obj_2edit (GFigObj *obj);
void gfig_init_object_classes (void);
void d_pnt_add_line (GfigObject *obj,
gint x,
gint y,
gint pos);
#endif /* __GFIG_DOBJECT_H__ */
|