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
|
/**
* Navit, a modular navigation system.
* Copyright (C) 2005-2008 Navit Team
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public License
* version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef NAVIT_SEARCH_H
#define NAVIT_SEARCH_H
#ifdef __cplusplus
extern "C" {
#endif
struct search_list_common {
void *parent;
struct item unique,item;
int selected;
struct pcoord *c;
char *town_name;
char *district_name;
char *postal;
char *postal_mask;
char *county_name;
struct attr **attrs;
};
struct search_list_country {
struct search_list_common common;
char *car;
char *iso2;
char *iso3;
char *name;
char *flag;
};
struct search_list_town {
struct search_list_common common;
struct item itemt;
char *county;
};
struct search_list_street {
struct search_list_common common;
char *name;
};
struct search_list_house_number {
struct search_list_common common;
char *house_number;
int interpolation;
};
struct search_list_result {
int id;
struct pcoord *c;
struct search_list_country *country;
struct search_list_town *town;
struct search_list_street *street;
struct search_list_house_number *house_number;
};
/* prototypes */
struct attr;
struct mapset;
struct search_list;
struct search_list_result;
struct jni_object;
struct search_list *search_list_new(struct mapset *ms);
int search_list_level(enum attr_type attr_type);
void search_list_search(struct search_list *this_, struct attr *search_attr, int partial);
char *search_postal_merge(char *mask, char *new_);
char *search_postal_merge_replace(char *mask, char *new_);
struct search_list_common *search_list_select(struct search_list *this_, enum attr_type attr_type, int id, int mode);
char *search_list_get_unique(struct search_list *this_, char *unique);
struct search_list_result *search_list_get_result(struct search_list *this_);
void search_list_destroy(struct search_list *this_);
void search_init(void);
/* end of prototypes */
#ifdef __cplusplus
}
#endif
#endif
|