diff options
Diffstat (limited to 'navit/layout.h')
-rw-r--r-- | navit/layout.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/navit/layout.h b/navit/layout.h index 700e6245a..8b8a63194 100644 --- a/navit/layout.h +++ b/navit/layout.h @@ -37,6 +37,7 @@ struct element { enum { element_point, element_polyline, element_polygon, element_circle, element_text, element_icon, element_image, element_arrows } type; struct color color; int text_size; + int oneway; union { struct element_point { char stub; @@ -67,6 +68,9 @@ struct element { struct element_text { struct color background_color; } text; + struct element_arrows { + int width; + } arrows; } u; int coord_count; struct coord *coord; @@ -105,6 +109,9 @@ struct layout { char* nightname; char *font; struct color color; + int underground_alpha; + int icon_w; + int icon_h; GList *layers; GList *cursors; int order_delta; |