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
|
/**
* Navit, a modular navigation system.
* Copyright (C) 2005-2008 Navit Team
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public License
* version 2 as published by the Free Software Foundation.
*
* 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 Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef NAVIT_LAYOUT_H
#define NAVIT_LAYOUT_H
#include "item.h"
#include "color.h"
struct element_line;
struct element_text;
struct element {
enum { element_point, element_polyline, element_polygon, element_circle, element_label, element_icon, element_image, element_arrows } type;
struct color color;
int label_size;
union {
struct element_point {
} point;
struct element_polyline {
int width;
int directed;
int dash_num;
int dash_offset;
unsigned char dash_table[4];
} polyline;
struct element_polygon {
} polygon;
struct element_circle {
int width;
int radius;
} circle;
struct element_icon {
char *src;
} icon;
} u;
};
struct itemtype {
int order_min, order_max;
GList *type;
GList *elements;
};
struct color;
struct layer { char *name; int details; GList *itemtypes; };
struct layout { char *name; char *font; struct color color; GList *layers; int order_delta; };
/* prototypes */
enum item_type;
struct element;
struct itemtype;
struct layer;
struct layout;
struct layout *layout_new(struct attr *parent, struct attr **attrs);
struct layer *layer_new(const char *name, int details);
void layout_add_layer(struct layout *layout, struct layer *layer);
struct itemtype *itemtype_new(int order_min, int order_max);
void itemtype_add_type(struct itemtype *this, enum item_type type);
void layer_add_itemtype(struct layer *layer, struct itemtype *itemtype);
void itemtype_add_element(struct itemtype *itemtype, struct element *element);
struct element *polygon_new(struct color *color);
struct element *polyline_new(struct color *color, int width, int directed,
int dash_offset, int *dash_table, int dash_num);
struct element *circle_new(struct color *color, int radius, int width, int label_size);
struct element *label_new(int label_size);
struct element *icon_new(const char *src);
struct element *image_new(void);
#endif
|