summaryrefslogtreecommitdiff
path: root/navit/popup.c
diff options
context:
space:
mode:
authormartin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220>2008-05-18 10:01:53 +0000
committermartin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220>2008-05-18 10:01:53 +0000
commit0b74d7f4ee6d448ac811e2741e8cb1ed04f5ce76 (patch)
treebe7bb1cb1020f4022e41c004e2fa9d561ea3580d /navit/popup.c
parentf46eb419c46011d6d103b7f06cb2c842a2cbe6c9 (diff)
downloadnavit-0b74d7f4ee6d448ac811e2741e8cb1ed04f5ce76.tar.gz
Fix:Core:Renamed src to navit for cleanup of includes
git-svn-id: http://svn.code.sf.net/p/navit/code/trunk/navit@1059 ffa7fe5e-494d-0410-b361-a75ebd5db220
Diffstat (limited to 'navit/popup.c')
-rw-r--r--navit/popup.c259
1 files changed, 259 insertions, 0 deletions
diff --git a/navit/popup.c b/navit/popup.c
new file mode 100644
index 000000000..a9fe71294
--- /dev/null
+++ b/navit/popup.c
@@ -0,0 +1,259 @@
+#include <stdarg.h>
+#include <stdio.h>
+#include <string.h>
+#include <fcntl.h>
+#include <unistd.h>
+#include <libintl.h>
+#include <glib.h>
+#include "popup.h"
+#include "debug.h"
+#include "navit.h"
+#include "coord.h"
+#include "gui.h"
+#include "menu.h"
+#include "point.h"
+#include "transform.h"
+#include "projection.h"
+#include "map.h"
+#include "graphics.h"
+#include "item.h"
+#include "callback.h"
+#include "route.h"
+
+#define _(STRING) gettext(STRING)
+#if 0
+static void
+popup_set_no_passing(struct popup_item *item, void *param)
+{
+#if 0
+ struct display_list *l=param;
+ struct segment *seg=(struct segment *)(l->data);
+ struct street_str *str=(struct street_str *)(seg->data[0]);
+ char log[256];
+ int segid=str->segid;
+ if (segid < 0)
+ segid=-segid;
+
+ sprintf(log,"Attributes Street 0x%x updated: limit=0x%x(0x%x)", segid, 0x33, str->limit);
+ str->limit=0x33;
+ log_write(log, seg->blk_inf.file, str, sizeof(*str));
+#endif
+}
+
+#endif
+
+static void
+popup_set_destination(struct navit *nav, struct pcoord *pc)
+{
+ struct coord c;
+ struct coord_geo g;
+ char buffer[1024];
+ char buffer_geo[1024];
+ c.x = pc->x;
+ c.y = pc->y;
+ transform_to_geo(transform_get_projection(navit_get_trans(nav)), &c, &g);
+ transform_geo_text(&g, buffer_geo);
+ sprintf(buffer,"Map Point %s", buffer_geo);
+ navit_set_destination(nav, pc, buffer);
+}
+
+static void
+popup_set_bookmark(struct navit *nav, struct pcoord *pc)
+{
+ struct coord c;
+ struct coord_geo g;
+ char buffer[1024];
+ char buffer_geo[1024];
+ c.x = pc->x;
+ c.y = pc->y;
+ transform_to_geo(pc->pro, &c, &g);
+ transform_geo_text(&g, buffer_geo);
+ sprintf(buffer,"Map Point %s", buffer_geo);
+ if (!gui_add_bookmark(navit_get_gui(nav), pc, buffer))
+ navit_add_bookmark(nav, pc, buffer);
+}
+
+
+extern void *vehicle;
+
+static void
+popup_set_position(struct navit *nav, struct pcoord *pc)
+{
+ dbg(0,"%p %p\n", nav, pc);
+ navit_set_position(nav, pc);
+}
+
+#if 0
+static void
+popup_break_crossing(struct display_list *l)
+{
+ struct segment *seg=(struct segment *)(l->data);
+ struct street_str *str=(struct street_str *)(seg->data[0]);
+ char log[256];
+ int segid=str->segid;
+ if (segid < 0)
+ segid=-segid;
+
+ sprintf(log,"Coordinates Street 0x%x updated: limit=0x%x(0x%x)", segid, 0x33, str->limit);
+ str->limit=0x33;
+ log_write(log, seg->blk_inf.file, str, sizeof(*str));
+}
+#endif
+
+
+#define popup_printf(menu, type, fmt...) popup_printf_cb(menu, type, NULL, fmt)
+
+static void *
+popup_printf_cb(void *menu, enum menu_type type, struct callback *cb, const char *fmt, ...)
+{
+ gchar *str;
+ va_list ap;
+ void *ret;
+
+ va_start(ap, fmt);
+ str=g_strdup_vprintf(fmt, ap);
+ dbg(0,"%s\n", str);
+ ret=menu_add(menu, str, type, cb);
+ va_end(ap);
+ g_free(str);
+ return ret;
+}
+
+static void
+popup_show_attr_val(struct map *map, void *menu, struct attr *attr)
+{
+ char *attr_name=attr_to_name(attr->type);
+ char *str;
+
+ str=attr_to_text(attr, map, 1);
+ popup_printf(menu, menu_type_menu, "%s: %s", attr_name, str);
+ g_free(str);
+}
+
+#if 0
+static void
+popup_show_attr(void *menu, struct item *item, enum attr_type attr_type)
+{
+ struct attr attr;
+ memset(&attr, 0, sizeof(attr));
+ attr.type=attr_type;
+ if (item_attr_get(item, attr_type, &attr))
+ popup_show_attr_val(menu, &attr);
+}
+#endif
+
+static void
+popup_show_attrs(struct map *map, void *menu, struct item *item)
+{
+#if 0
+ popup_show_attr(menu, item, attr_debug);
+ popup_show_attr(menu, item, attr_address);
+ popup_show_attr(menu, item, attr_phone);
+ popup_show_attr(menu, item, attr_phone);
+ popup_show_attr(menu, item, attr_entry_fee);
+ popup_show_attr(menu, item, attr_open_hours);
+#else
+ struct attr attr;
+ for (;;) {
+ memset(&attr, 0, sizeof(attr));
+ if (item_attr_get(item, attr_any, &attr))
+ popup_show_attr_val(map, menu, &attr);
+ else
+ break;
+ }
+
+#endif
+}
+
+static void
+popup_show_item(struct navit *nav, void *popup, struct displayitem *di)
+{
+ struct map_rect *mr;
+ void *menu, *menu_map, *menu_item;
+ char *label;
+ struct item *item;
+
+ label=graphics_displayitem_get_label(di);
+ item=graphics_displayitem_get_item(di);
+
+ if (label)
+ menu=popup_printf(popup, menu_type_submenu, "%s '%s'", item_to_name(item->type), label);
+ else
+ menu=popup_printf(popup, menu_type_submenu, "%s", item_to_name(item->type));
+ menu_item=popup_printf(menu, menu_type_submenu, "Item");
+ popup_printf(menu_item, menu_type_menu, "type: 0x%x", item->type);
+ popup_printf(menu_item, menu_type_menu, "id: 0x%x 0x%x", item->id_hi, item->id_lo);
+ if (item->map) {
+ mr=map_rect_new(item->map,NULL);
+ item=map_rect_get_item_byid(mr, item->id_hi, item->id_lo);
+ dbg(1,"item=%p\n", item);
+ if (item) {
+ popup_show_attrs(item->map, menu_item, item);
+ if (item->type < type_line) {
+ struct coord co;
+ struct pcoord *c;
+ if (item_coord_get(item, &co, 1)) {
+ c=g_new(struct pcoord, 1);
+ c->pro = transform_get_projection(navit_get_trans(nav));
+ c->x = co.x;
+ c->y = co.y;
+ popup_printf_cb(menu_item, menu_type_menu, callback_new_2(callback_cast(popup_set_position), nav, c), _("Set as position"));
+ popup_printf_cb(menu_item, menu_type_menu, callback_new_2(callback_cast(popup_set_destination), nav, c), _("Set as destination"));
+ popup_printf_cb(menu_item, menu_type_menu, callback_new_2(callback_cast(popup_set_bookmark), nav, c), _("Add as bookmark"));
+ }
+ }
+ }
+ map_rect_destroy(mr);
+ menu_map=popup_printf(menu, menu_type_submenu, "Map");
+ } else {
+ popup_printf(menu, menu_type_menu, "(No map)");
+ }
+}
+
+static void
+popup_display(struct navit *nav, void *popup, struct point *p)
+{
+ struct displaylist_handle *dlh;
+ struct displaylist *display;
+ struct displayitem *di;
+
+ display=navit_get_displaylist(nav);
+ dlh=graphics_displaylist_open(display);
+ while ((di=graphics_displaylist_next(dlh))) {
+ if (graphics_displayitem_within_dist(di, p, 5)) {
+ popup_show_item(nav, popup, di);
+ }
+ }
+ graphics_displaylist_close(dlh);
+}
+
+static struct pcoord c;
+
+void
+popup(struct navit *nav, int button, struct point *p)
+{
+ void *popup,*men;
+ char buffer[1024];
+ struct coord_geo g;
+ struct coord co;
+
+ popup=gui_popup_new(navit_get_gui(nav));
+ if (! popup)
+ return;
+ transform_reverse(navit_get_trans(nav), p, &co);
+ men=popup_printf(popup, menu_type_submenu, _("Point 0x%x 0x%x"), co.x, co.y);
+ popup_printf(men, menu_type_menu, _("Screen coord : %d %d"), p->x, p->y);
+ transform_to_geo(transform_get_projection(navit_get_trans(nav)), &co, &g);
+ transform_geo_text(&g, buffer);
+ popup_printf(men, menu_type_menu, "%s", buffer);
+ popup_printf(men, menu_type_menu, "%f %f", g.lat, g.lng);
+ dbg(0,"%p %p\n", nav, &c);
+ c.pro = transform_get_projection(navit_get_trans(nav));
+ c.x = co.x;
+ c.y = co.y;
+ popup_printf_cb(men, menu_type_menu, callback_new_2(callback_cast(popup_set_position), nav, &c), _("Set as position"));
+ popup_printf_cb(men, menu_type_menu, callback_new_2(callback_cast(popup_set_destination), nav, &c), _("Set as destination"));
+ popup_printf_cb(men, menu_type_menu, callback_new_2(callback_cast(popup_set_bookmark), nav, &c), _("Add as bookmark"));
+ popup_display(nav, popup, p);
+ menu_popup(popup);
+}