summaryrefslogtreecommitdiff
path: root/navit/layout.h
diff options
context:
space:
mode:
authormartin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220>2008-11-06 13:45:21 +0000
committermartin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220>2008-11-06 13:45:21 +0000
commit953b2c79c40b5d0195ca457ad68e263629872847 (patch)
treefd0e60ec2eeb9d91c1e82bf86b0d2200acdddf6d /navit/layout.h
parentd74a4163561e21ef658aaa817e895eda637cbf35 (diff)
downloadnavit-953b2c79c40b5d0195ca457ad68e263629872847.tar.gz
Add:Core:Made cursor configurable via navit.xml
git-svn-id: http://svn.code.sf.net/p/navit/code/trunk/navit@1653 ffa7fe5e-494d-0410-b361-a75ebd5db220
Diffstat (limited to 'navit/layout.h')
-rw-r--r--navit/layout.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/navit/layout.h b/navit/layout.h
index 22963f7bc..ea2e885d5 100644
--- a/navit/layout.h
+++ b/navit/layout.h
@@ -52,11 +52,13 @@ struct element {
int height;
} icon;
} u;
+ int coord_count;
+ struct coord *coord;
};
struct itemgra {
- struct order order;
+ struct range order,sequence_range,speed_range,angle_range;
GList *type;
GList *elements;
};
@@ -86,5 +88,6 @@ struct text *text_new(struct attr *parent, struct attr **attrs);
struct icon *icon_new(struct attr *parent, struct attr **attrs);
struct image *image_new(struct attr *parent, struct attr **attrs);
struct arrows *arrows_new(struct attr *parent, struct attr **attrs);
+int element_add_attr(struct element *e, struct attr *attr);
#endif