/usr/include/elementary-1/elm_widget_map.h is in libelementary-dev 1.8.5-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 | #ifndef ELM_WIDGET_MAP_H
#define ELM_WIDGET_MAP_H
#include "Elementary.h"
/**
* @addtogroup Widget
* @{
*
* @section elm-map-class The Elementary Map Class
*
* Elementary, besides having the @ref Map widget, exposes its
* foundation -- the Elementary Map Class -- in order to create
* other widgets which are a map with some more logic on top.
*/
/**
* Base widget smart data extended with map instance data.
*/
typedef struct _Elm_Map_Smart_Data Elm_Map_Smart_Data;
typedef struct _Elm_Map_Name_List Elm_Map_Name_List;
typedef char *(*Elm_Map_Module_Source_Name_Func)(void);
typedef int (*Elm_Map_Module_Tile_Zoom_Min_Func)(void);
typedef int (*Elm_Map_Module_Tile_Zoom_Max_Func)(void);
typedef char *(*Elm_Map_Module_Tile_Url_Func)(const Evas_Object *,
int,
int,
int);
typedef Eina_Bool (*Elm_Map_Module_Tile_Geo_to_Coord_Func)(const Evas_Object *,
int,
double,
double,
int,
int *,
int *);
typedef Eina_Bool (*Elm_Map_Module_Tile_Coord_to_Geo_Func)(const Evas_Object *,
int,
int,
int,
int,
double *,
double *);
typedef double (*Elm_Map_Module_Tile_Scale_Func)(const Evas_Object *,
double,
double,
int);
typedef char *(*Elm_Map_Module_Route_Url_Func)(const Evas_Object *,
const char *,
int,
double,
double,
double,
double);
typedef char *(*Elm_Map_Module_Name_Url_Func)(const Evas_Object *,
int,
const char *,
double,
double);
typedef struct _Source_Tile Source_Tile;
// FIXME: Currently tile size must be 256*256
// and the map size is pow(2.0, z) * (tile size)
struct _Source_Tile
{
const char *name;
int zoom_min;
int zoom_max;
Elm_Map_Module_Tile_Url_Func url_cb;
Elm_Map_Module_Tile_Geo_to_Coord_Func geo_to_coord;
Elm_Map_Module_Tile_Coord_to_Geo_Func coord_to_geo;
Elm_Map_Module_Tile_Scale_Func scale_cb;
};
typedef struct _Source_Route Source_Route;
struct _Source_Route
{
const char *name;
Elm_Map_Module_Route_Url_Func url_cb;
};
typedef struct _Source_Name Source_Name;
struct _Source_Name
{
const char *name;
Elm_Map_Module_Name_Url_Func url_cb;
};
typedef struct _Path Path;
typedef struct _Color Color;
typedef struct _Region Region;
typedef struct _Grid Grid;
typedef struct _Grid_Item Grid_Item;
typedef struct _Overlay_Default Overlay_Default;
typedef struct _Overlay_Class Overlay_Class;
typedef struct _Overlay_Group Overlay_Group;
typedef struct _Overlay_Bubble Overlay_Bubble;
typedef struct _Overlay_Route Overlay_Route;
typedef struct _Overlay_Line Overlay_Line;
typedef struct _Overlay_Polygon Overlay_Polygon;
typedef struct _Overlay_Circle Overlay_Circle;
typedef struct _Overlay_Scale Overlay_Scale;
typedef struct _Path_Node Path_Node;
typedef struct _Path_Waypoint Path_Waypoint;
typedef struct _Route_Dump Route_Dump;
typedef struct _Name_Dump Name_Dump;
typedef struct _Calc_Job Calc_Job;
enum _Route_Xml_Attribute
{
ROUTE_XML_NONE,
ROUTE_XML_DISTANCE,
ROUTE_XML_DESCRIPTION,
ROUTE_XML_COORDINATES,
ROUTE_XML_LAST
} Route_Xml_Attibute;
enum _Name_Xml_Attribute
{
NAME_XML_NONE,
NAME_XML_NAME,
NAME_XML_LON,
NAME_XML_LAT,
NAME_XML_LAST
} Name_Xml_Attibute;
enum _Track_Xml_Attribute
{
TRACK_XML_NONE,
TRACK_XML_COORDINATES,
TRACK_XML_LAST
} Track_Xml_Attibute;
struct _Path
{
Evas_Coord x, y;
};
struct _Region
{
double lon, lat;
};
struct _Color
{
int r, g, b, a;
};
struct _Overlay_Group
{
Elm_Map_Smart_Data *wsd;
double lon, lat;
Elm_Map_Overlay *overlay; // virtual group type overlay
Elm_Map_Overlay *klass; // class overlay for this virtual group
Overlay_Default *ovl; // rendered overlay
Eina_List *members;
Eina_Bool in : 1;
Eina_Bool boss : 1;
};
struct _Overlay_Default
{
Elm_Map_Smart_Data *wsd;
Evas_Coord w, h;
double lon, lat;
Evas_Coord x, y;
// Display priority is content > icon > clas_obj > clas_icon > layout
Evas_Object *content;
Evas_Object *icon;
Color c;
// if clas_content or icon exists, do not inherit from class
Evas_Object *clas_content; // Duplicated from class content
Evas_Object *clas_icon; // Duplicated from class icon
Evas_Object *layout;
};
struct _Overlay_Class
{
Elm_Map_Smart_Data *wsd;
Eina_List *members;
int zoom_max;
Evas_Object *content;
Evas_Object *icon;
};
struct _Overlay_Bubble
{
Elm_Map_Smart_Data *wsd;
Evas_Object *pobj;
Evas_Object *obj, *sc, *bx;
double lon, lat;
Evas_Coord x, y, w, h;
};
struct _Overlay_Route
{
Elm_Map_Smart_Data *wsd;
Evas_Object *obj;
Eina_List *paths;
Eina_List *nodes;
};
struct _Overlay_Line
{
Elm_Map_Smart_Data *wsd;
double flon, flat, tlon, tlat;
Evas_Object *obj;
};
struct _Overlay_Polygon
{
Elm_Map_Smart_Data *wsd;
Eina_List *regions; // list of Regions
Evas_Object *obj;
};
struct _Overlay_Circle
{
Elm_Map_Smart_Data *wsd;
double lon, lat;
double radius; // Intial pixel in intial view
double ratio; // initial-radius/map-size
Evas_Object *obj;
};
struct _Overlay_Scale
{
Elm_Map_Smart_Data *wsd;
Evas_Coord x, y;
Evas_Coord w, h;
Evas_Object *obj;
};
struct _Elm_Map_Overlay
{
Elm_Map_Smart_Data *wsd;
Evas_Coord zoom_min;
Color c;
void *data; // user set data
Elm_Map_Overlay_Type type;
void *ovl; // Overlay Data for each type
Elm_Map_Overlay_Get_Cb cb;
void *cb_data;
Elm_Map_Overlay_Del_Cb del_cb;
void *del_cb_data;
// These are not used if overlay type is class or group
Overlay_Group *grp;
Eina_Bool visible : 1;
Eina_Bool paused : 1;
Eina_Bool hide : 1;
};
struct _Elm_Map_Route
{
Elm_Map_Smart_Data *wsd;
char *fname;
Elm_Map_Route_Type type;
Elm_Map_Route_Method method;
double flon, flat, tlon, tlat;
Elm_Map_Route_Cb cb;
void *data;
Ecore_File_Download_Job *job;
Eina_List *nodes;
Eina_List *waypoint;
struct
{
int node_count;
int waypoint_count;
const char *nodes;
const char *waypoints;
double distance; /* unit : km */
} info;
Path_Node *n;
Path_Waypoint *w;
};
struct _Path_Node
{
Elm_Map_Smart_Data *wsd;
int idx;
struct
{
double lon, lat;
char *address;
} pos;
};
struct _Path_Waypoint
{
Elm_Map_Smart_Data *wsd;
const char *point;
};
struct _Elm_Map_Name
{
Elm_Map_Smart_Data *wsd;
int method;
char *address;
double lon, lat;
char *fname;
Ecore_File_Download_Job *job;
Elm_Map_Name_Cb cb;
void *data;
};
struct _Elm_Map_Name_List
{
Elm_Map_Smart_Data *wsd;
Eina_List *names;
double lon, lat;
char *fname;
Ecore_File_Download_Job *job;
Elm_Map_Name_List_Cb cb;
void *data;
};
struct _Route_Dump
{
int id;
char *fname;
double distance;
char *description;
char *coordinates;
};
struct _Name_Dump
{
int id;
char *address;
double lon;
double lat;
};
struct _Grid_Item
{
Grid *g;
Elm_Map_Smart_Data *wsd;
Evas_Object *img;
const char *file;
const char *url;
int x, y; // Tile coordinate
Ecore_File_Download_Job *job;
Eina_Bool file_have : 1;
};
struct _Grid
{
Elm_Map_Smart_Data *wsd;
int zoom; /* zoom level tiles want for optimal
* display (1, 2, 4, 8) */
int tw, th; // size of grid in tiles
Eina_Matrixsparse *grid;
};
struct _Calc_Job
{
double zoom;
void (*zoom_mode_set)(Elm_Map_Smart_Data *sd, double zoom);
Eina_Bool bring_in : 1;
double lon, lat;
void (*region_show_bring_in)(Elm_Map_Smart_Data *sd, double lon,
double lat, Eina_Bool bring_in);
Eina_List *overlays;
void (*overlays_show)(Elm_Map_Smart_Data *sd, Eina_List *overlays);
};
struct _Elm_Map_Smart_Data
{
Evas_Object *hit_rect;
Evas_Object *pan_obj;
Evas_Object *g_layer;
Evas_Object *obj; // The object itself
/* Tiles are below this and overlays are on top */
Evas_Object *sep_maps_overlays;
Evas_Map *map;
Eina_Array *src_mods;
Source_Tile *src_tile;
Eina_List *src_tiles;
const char **src_tile_names;
Source_Route *src_route;
Eina_List *src_routes;
const char **src_route_names;
Source_Name *src_name;
Eina_List *src_names;
const char **src_name_names;
Eina_List *grids;
int zoom_min, zoom_max;
int tsize;
int id;
int zoom;
double zoom_detail;
struct
{
int w, h; // Current pixel width, heigth of a grid
int tile; // Current pixel size of a grid item
} size;
Elm_Map_Zoom_Mode mode;
struct
{
double zoom;
double diff;
int cnt;
} ani;
Ecore_Timer *zoom_timer;
Ecore_Animator *zoom_animator;
Ecore_Timer *loaded_timer;
int try_num;
int finish_num;
int download_num;
Eina_List *download_list;
Ecore_Idler *download_idler;
Eina_Hash *ua;
const char *user_agent;
Evas_Coord pan_x, pan_y;
Ecore_Timer *scr_timer;
Ecore_Timer *long_timer;
Evas_Event_Mouse_Down ev;
double pinch_zoom;
struct
{
Evas_Coord cx, cy;
double a, d;
} rotate;
Eina_List *routes;
Eina_List *track;
Eina_List *names;
Eina_List *overlays;
Eina_List *group_overlays;
Eina_List *all_overlays;
Eina_Bool wheel_disabled : 1;
Eina_Bool on_hold : 1;
Eina_Bool paused : 1;
Calc_Job calc_job;
};
typedef struct _Elm_Map_Pan_Smart_Data Elm_Map_Pan_Smart_Data;
struct _Elm_Map_Pan_Smart_Data
{
Evas_Object *wobj;
Elm_Map_Smart_Data *wsd;
};
/**
* @}
*/
#define ELM_MAP_DATA_GET(o, sd) \
Elm_Map_Smart_Data * sd = eo_data_scope_get(o, ELM_OBJ_MAP_CLASS)
#define ELM_MAP_PAN_DATA_GET(o, sd) \
Elm_Map_Pan_Smart_Data * sd = eo_data_scope_get(o, ELM_OBJ_MAP_PAN_CLASS)
#define ELM_MAP_DATA_GET_OR_RETURN(o, ptr) \
ELM_MAP_DATA_GET(o, ptr); \
if (!ptr) \
{ \
CRITICAL("No widget data for object %p (%s)", \
o, evas_object_type_get(o)); \
return; \
}
#define ELM_MAP_DATA_GET_OR_RETURN_VAL(o, ptr, val) \
ELM_MAP_DATA_GET(o, ptr); \
if (!ptr) \
{ \
CRITICAL("No widget data for object %p (%s)", \
o, evas_object_type_get(o)); \
return val; \
}
#define ELM_MAP_CHECK(obj) \
if (!eo_isa((obj), ELM_OBJ_MAP_CLASS)) \
return
#endif
|