/[zanavi_public1]/navit/navit/graphics.h
ZANavi

Contents of /navit/navit/graphics.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 28 - (show annotations) (download)
Sun Jun 17 08:12:47 2012 UTC (11 years, 9 months ago) by zoff99
File MIME type: text/plain
File size: 12236 byte(s)
lots of new stuff and fixes
1 /**
2 * Navit, a modular navigation system.
3 * Copyright (C) 2005-2008 Navit Team
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public License
7 * version 2 as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Library General Public License for more details.
13 *
14 * You should have received a copy of the GNU Library General Public
15 * License along with this program; if not, write to the
16 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
18 */
19
20 #ifndef NAVIT_GRAPHICS_H
21 #define NAVIT_GRAPHICS_H
22
23 #ifdef __cplusplus
24 extern "C"
25 {
26 #endif
27 struct attr;
28 struct point;
29 struct container;
30 struct color;
31 struct graphics;
32 struct graphics_gc;
33 struct graphics_font;
34 struct graphics_image;
35 struct transformation;
36 struct display_list;
37 struct mapset;
38
39 enum draw_mode_num
40 {
41 draw_mode_begin,
42 draw_mode_begin_clear,
43 draw_mode_end,
44 draw_mode_cursor,
45 draw_mode_end_lazy
46 };
47
48 #include "item.h"
49
50 struct display_context
51 {
52 struct graphics *gra;
53 struct element *e;
54 struct graphics_gc *gc;
55 struct graphics_gc *gc_background;
56 struct graphics_image *img;
57 enum projection pro;
58 int mindist;
59 struct transformation *trans;
60 enum item_type type;
61 int maxlen;
62 };
63
64 //#define HASH_SIZE_GRAPHICS_ 1024
65 #define HASH_SIZE_GRAPHICS_ 2048 // inc. hash size for layer items
66
67 struct hash_entry
68 {
69 enum item_type type;
70 struct displayitem *di;
71 };
72
73 struct displaylist
74 {
75 int busy;
76 int workload;
77 struct callback *cb;
78 struct layout *layout, *layout_hashed;
79 struct display_context dc;
80 int order, order_hashed, max_offset;
81 struct mapset *ms;
82 struct mapset_handle *msh;
83 struct map *m;
84 int conv;
85 struct map_selection *sel;
86 struct map_rect *mr;
87 struct callback *idle_cb;
88 struct event_idle *idle_ev;
89 unsigned int seq;
90 struct hash_entry hash_entries[HASH_SIZE_GRAPHICS_];
91 };
92
93 struct graphics_priv;
94 struct graphics_font_priv;
95 struct graphics_image_priv;
96 struct graphics_gc_priv;
97 struct graphics_font_methods;
98 struct graphics_gc_methods;
99 struct graphics_image_methods;
100
101 struct graphics_methods
102 {
103 void (*graphics_destroy)(struct graphics_priv *gr);
104 void (*draw_mode)(struct graphics_priv *gr, enum draw_mode_num mode);
105 void (*draw_lines)(struct graphics_priv *gr, struct graphics_gc_priv *gc,
106 struct point *p, int count);
107 void (*draw_lines2)(struct graphics_priv *gr, struct graphics_gc_priv *gc,
108 struct point *p, int count, int order, int oneway);
109 void (*draw_lines3)(struct graphics_priv *gr, struct graphics_gc_priv *gc,
110 struct point *p, int count, int order, int width);
111 void (*draw_lines4)(struct graphics_priv *gr, struct graphics_gc_priv *gc,
112 struct point *p, int count, int order, int width, int type);
113 void (*draw_lines_dashed)(struct graphics_priv *gr,
114 struct graphics_gc_priv *gc, struct point *p, int count, int order,
115 int oneway);
116 void (*draw_polygon)(struct graphics_priv *gr, struct graphics_gc_priv *gc,
117 struct point *p, int count);
118 void (*draw_polygon2)(struct graphics_priv *gr,
119 struct graphics_gc_priv *gc, struct point *p, int count, int order,
120 int oneway);
121 void (*draw_rectangle)(struct graphics_priv *gr,
122 struct graphics_gc_priv *gc, struct point *p, int w, int h);
123 void (*draw_circle)(struct graphics_priv *gr, struct graphics_gc_priv *gc,
124 struct point *p, int r);
125 void (*draw_text)(struct graphics_priv *gr, struct graphics_gc_priv *fg,
126 struct graphics_gc_priv *bg, struct graphics_font_priv *font,
127 char *text, struct point *p, int dx, int dy);
128 void (*draw_image)(struct graphics_priv *gr, struct graphics_gc_priv *fg,
129 struct point *p, struct graphics_image_priv *img);
130 void (*draw_bigmap)(struct graphics_priv *gr, struct graphics_gc_priv *fg,
131 int yaw, int order, float clat, float clng, int x, int y, int scx,
132 int scy, int px, int py, int valid);
133 void (*send_osd_values)(struct graphics_priv *gr,
134 struct graphics_gc_priv *fg, char *id, char *text1, char *text2,
135 char *text3, int i1, int i2, int i3, int i4, float f1, float f2,
136 float f3);
137 void
138 (*draw_image_warp)(struct graphics_priv *gr,
139 struct graphics_gc_priv *fg, struct point *p, int count,
140 char *data);
141 void (*draw_restore)(struct graphics_priv *gr, struct point *p, int w,
142 int h);
143 void (*draw_drag)(struct graphics_priv *gr, struct point *p);
144 struct graphics_font_priv
145 *(*font_new)(struct graphics_priv *gr,
146 struct graphics_font_methods *meth, char *font, int size,
147 int flags);
148 struct graphics_gc_priv *(*gc_new)(struct graphics_priv *gr,
149 struct graphics_gc_methods *meth);
150 void
151 (*background_gc)(struct graphics_priv *gr,
152 struct graphics_gc_priv *gc);
153 struct graphics_priv *(*overlay_new)(struct graphics_priv *gr,
154 struct graphics_methods *meth, struct point *p, int w, int h,
155 int alpha, int wraparound);
156 struct graphics_image_priv *(*image_new)(struct graphics_priv *gr,
157 struct graphics_image_methods *meth, char *path, int *w, int *h,
158 struct point *hot, int rotation);
159 void *(*get_data)(struct graphics_priv *gr, const char *type);
160 void (*image_free)(struct graphics_priv *gr,
161 struct graphics_image_priv *priv);
162 void (*get_text_bbox)(struct graphics_priv *gr,
163 struct graphics_font_priv *font, char *text, int dx, int dy,
164 struct point *ret, int estimate);
165 void (*overlay_disable)(struct graphics_priv *gr, int disable);
166 void (*overlay_resize)(struct graphics_priv *gr, struct point *p, int w,
167 int h, int alpha, int wraparound);
168 int (*set_attr)(struct graphics_priv *gr, struct attr *attr);
169 };
170
171 struct graphics_font_methods
172 {
173 void (*font_destroy)(struct graphics_font_priv *font);
174 };
175
176 struct graphics_font
177 {
178 struct graphics_font_priv *priv;
179 struct graphics_font_methods meth;
180 };
181
182 struct graphics_gc_methods
183 {
184 void (*gc_destroy)(struct graphics_gc_priv *gc);
185 void (*gc_set_linewidth)(struct graphics_gc_priv *gc, int width);
186 void (*gc_set_dashes)(struct graphics *gra, struct graphics_gc_priv *gc, int width, int offset,
187 int dash_list[], int order);
188 void (*gc_set_foreground)(struct graphics_gc_priv *gc, struct color *c);
189 void (*gc_set_background)(struct graphics_gc_priv *gc, struct color *c);
190 void (*gc_set_stipple)(struct graphics_gc_priv *gc,
191 struct graphics_image_priv *img);
192 };
193
194 struct graphics_gc
195 {
196 struct graphics_gc_priv *priv;
197 struct graphics_gc_methods meth;
198 struct graphics *gra;
199 };
200
201 struct graphics_image_methods
202 {
203 void (*image_destroy)(struct graphics_image_priv *img);
204 };
205
206 struct graphics_image
207 {
208 struct graphics_image_priv *priv;
209 struct graphics_image_methods meth;
210 int width;
211 int height;
212 struct point hot;
213 };
214
215 struct graphics_data_image
216 {
217 void *data;
218 int size;
219 };
220
221 /* prototypes */
222 enum attr_type;
223 enum draw_mode_num;
224 enum item_type;
225 struct attr;
226 struct attr_iter;
227 struct callback;
228 struct color;
229 struct displayitem;
230 struct displaylist;
231 struct displaylist_handle;
232 struct graphics;
233 struct graphics_font;
234 struct graphics_gc;
235 struct graphics_image;
236 struct item;
237 struct itemgra;
238 struct layout;
239 struct mapset;
240 struct point;
241 struct point_rect;
242 struct transformation;
243 int graphics_set_attr(struct graphics *gra, struct attr *attr);
244 void graphics_set_rect(struct graphics *gra, struct point_rect *pr);
245 struct graphics *graphics_new(struct attr *parent, struct attr **attrs);
246 int graphics_get_attr(struct graphics *this_, enum attr_type type,
247 struct attr *attr, struct attr_iter *iter);
248 struct graphics *graphics_overlay_new(struct graphics *parent, struct point *p,
249 int w, int h, int alpha, int wraparound);
250 void graphics_overlay_resize(struct graphics *this_, struct point *p, int w,
251 int h, int alpha, int wraparound);
252 void graphics_init(struct graphics *this_);
253 void *graphics_get_data(struct graphics *this_, const char *type);
254 void graphics_add_callback(struct graphics *this_, struct callback *cb);
255 void graphics_remove_callback(struct graphics *this_, struct callback *cb);
256 struct graphics_font *graphics_font_new(struct graphics *gra, int size,
257 int flags);
258 struct graphics_font *graphics_named_font_new(struct graphics *gra, char *font,
259 int size, int flags);
260 void graphics_free(struct graphics *gra);
261 void graphics_font_destroy_all(struct graphics *gra);
262 struct graphics_gc *graphics_gc_new(struct graphics *gra);
263 void graphics_gc_destroy(struct graphics_gc *gc);
264 void graphics_gc_set_foreground(struct graphics_gc *gc, struct color *c);
265 void graphics_gc_set_background(struct graphics_gc *gc, struct color *c);
266 void
267 graphics_gc_set_stipple(struct graphics_gc *gc,
268 struct graphics_image *img);
269 void graphics_gc_set_linewidth(struct graphics_gc *gc, int width);
270 void graphics_gc_set_dashes(struct graphics *gra, struct graphics_gc *gc, int width, int offset,
271 int dash_list[], int n, int order);
272 struct graphics_image *graphics_image_new_scaled(struct graphics *gra,
273 char *path, int w, int h);
274 struct graphics_image *graphics_image_new_scaled_rotated(struct graphics *gra,
275 char *path, int w, int h, int rotate);
276 struct graphics_image *graphics_image_new(struct graphics *gra, char *path);
277 void graphics_image_free(struct graphics *gra, struct graphics_image *img);
278 void graphics_draw_restore(struct graphics *this_, struct point *p, int w,
279 int h);
280 void graphics_draw_mode(struct graphics *this_, enum draw_mode_num mode);
281 void graphics_draw_lines(struct graphics *this_, struct graphics_gc *gc,
282 struct point *p, int count);
283 void graphics_draw_circle(struct graphics *this_, struct graphics_gc *gc,
284 struct point *p, int r);
285 void graphics_draw_rectangle(struct graphics *this_, struct graphics_gc *gc,
286 struct point *p, int w, int h);
287 void graphics_draw_rectangle_rounded(struct graphics *this_,
288 struct graphics_gc *gc, struct point *plu, int w, int h, int r,
289 int fill);
290 void graphics_draw_text(struct graphics *this_, struct graphics_gc *gc1,
291 struct graphics_gc *gc2, struct graphics_font *font, char *text,
292 struct point *p, int dx, int dy);
293 void graphics_get_text_bbox(struct graphics *this_, struct graphics_font *font,
294 char *text, int dx, int dy, struct point *ret, int estimate);
295 void graphics_overlay_disable(struct graphics *this_, int disable);
296 void graphics_draw_image(struct graphics *this_, struct graphics_gc *gc,
297 struct point *p, struct graphics_image *img);
298 int graphics_draw_drag(struct graphics *this_, struct point *p);
299 void graphics_background_gc(struct graphics *this_, struct graphics_gc *gc);
300 void graphics_draw_text_std(struct graphics *this_, int text_size, char *text,
301 struct point *p);
302 char *graphics_icon_path(char *icon);
303 void graphics_draw_itemgra(struct graphics *gra, struct itemgra *itm,
304 struct transformation *t, char *label);
305 void graphics_displaylist_draw(struct graphics *gra,
306 struct displaylist *displaylist, struct transformation *trans,
307 struct layout *l, int flags);
308 void graphics_draw(struct graphics *gra, struct displaylist *displaylist,
309 struct mapset *mapset, struct transformation *trans, struct layout *l,
310 int async, struct callback *cb, int flags);
311 int graphics_draw_cancel(struct graphics *gra, struct displaylist *displaylist);
312 struct displaylist_handle *graphics_displaylist_open(
313 struct displaylist *displaylist);
314 struct displayitem *graphics_displaylist_next(struct displaylist_handle *dlh);
315 void graphics_displaylist_close(struct displaylist_handle *dlh);
316 struct displaylist *graphics_displaylist_new(void);
317 struct item *graphics_displayitem_get_item(struct displayitem *di);
318 int graphics_displayitem_get_coord_count(struct displayitem *di);
319 char *graphics_displayitem_get_label(struct displayitem *di);
320 int graphics_displayitem_get_displayed(struct displayitem *di);
321 int graphics_displayitem_within_dist(struct displaylist *displaylist,
322 struct displayitem *di, struct point *p, int dist);
323 void graphics_add_selection(struct graphics *gra, struct item *item,
324 enum item_type type, struct displaylist *dl);
325 void graphics_remove_selection(struct graphics *gra, struct item *item,
326 enum item_type type, struct displaylist *dl);
327 void graphics_clear_selection(struct graphics *gra, struct displaylist *dl);
328 /* end of prototypes */
329 #ifdef __cplusplus
330 }
331 #endif
332
333 #endif
334

   
Visit the ZANavi Wiki