Contents of /trunk/src/gpxview.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 157 - (hide annotations)
Tue Nov 3 20:20:39 2009 UTC (14 years, 6 months ago) by harbaum
File MIME type: text/plain
File size: 6959 byte(s)
Gcvote xml parsing started
1 harbaum 1 /*
2     * Copyright (C) 2008 Till Harbaum <till@harbaum.org>.
3     *
4     * This file is part of GPXView.
5     *
6     * GPXView is free software: you can redistribute it and/or modify
7     * it under the terms of the GNU General Public License as published by
8     * the Free Software Foundation, either version 3 of the License, or
9     * (at your option) any later version.
10     *
11     * GPXView is distributed in the hope that it will be useful,
12     * but WITHOUT ANY WARRANTY; without even the implied warranty of
13     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14     * GNU General Public License for more details.
15     *
16     * You should have received a copy of the GNU General Public License
17     * along with GPXView. If not, see <http://www.gnu.org/licenses/>.
18     */
19    
20     #ifndef GPXVIEW_H
21     #define GPXVIEW_H
22    
23     #ifdef USE_MAEMO
24     #if MAEMO_VERSION_MAJOR < 5
25     #define USE_BREAD_CRUMB_TRAIL
26     #else
27 harbaum 2 // these are on maemo fremantle
28 harbaum 3 #include <hildon/hildon-button.h>
29 harbaum 8 #include <hildon/hildon-text-view.h>
30 harbaum 11 #include <hildon/hildon-window-stack.h>
31 harbaum 8 #define USE_HILDON_TEXT_VIEW
32 harbaum 1 #define USE_STACKABLE_WINDOW
33 harbaum 2 #define NO_COPY_N_PASTE
34 harbaum 3 #define MENU_GPXLIST 0
35     #define MENU_CACHELIST 1
36     #define MENU_CACHE 2
37 harbaum 1 #endif
38 harbaum 128 #endif
39    
40     #ifdef BCT
41 harbaum 126 #include "bct.h"
42 harbaum 1 #endif
43    
44     #include "config.h"
45    
46     #include <string.h>
47     #include <stdlib.h>
48    
49     #include <locale.h>
50     #include <libintl.h>
51    
52     #define _(String) gettext(String)
53     #define N_(String) (String)
54    
55     #ifdef USE_MAEMO
56     #include <hildon/hildon-program.h>
57     #include <hildon/hildon-file-chooser-dialog.h>
58     #include <hildon/hildon-file-system-model.h>
59     #include <hildon/hildon-bread-crumb-trail.h>
60     #include <hildon/hildon-number-editor.h>
61     #include <libosso.h> /* required for screen saver timeout */
62     #ifdef HILDON_HELP
63     #include <hildon/hildon-help.h>
64     #endif
65     #if MAEMO_VERSION_MAJOR >= 5
66     #define USE_PANNABLE_AREA
67     #include <hildon/hildon-pannable-area.h>
68 harbaum 17 /* panning a gtkhtml view currently doesn't work well */
69     #define PANNABLE_HTML
70 harbaum 1 #endif
71     #endif
72    
73     #include <gtk/gtk.h>
74     #include <gtkhtml/gtkhtml.h>
75    
76     /* list of current gpx files is being kept in gconf */
77     #include <gconf/gconf.h>
78     #include <gconf/gconf-client.h>
79    
80     #include <libgnomevfs/gnome-vfs.h>
81     #include <libgnomevfs/gnome-vfs-inet-connection.h>
82    
83     /* all include appdata_t relies on go here ... */
84     #include "gpx.h"
85     #include "settings.h"
86    
87     #define GPXLIST_ITEM_VALID (1<<0)
88     #define GPXLIST_ITEM_DATE (1<<1)
89     #define GPXLIST_ITEM_CNUM (1<<2)
90     #define GPXLIST_ITEM_FILENAME (1<<3)
91     #define GPXLIST_ITEM_DEFAULT (GPXLIST_ITEM_VALID | GPXLIST_ITEM_CNUM)
92    
93     #define CACHELIST_ITEM_VALID (1<<0)
94     #define CACHELIST_ITEM_ID (1<<1)
95     #define CACHELIST_ITEM_SIZE (1<<2)
96     #define CACHELIST_ITEM_RATING (1<<3)
97     #define CACHELIST_ITEM_DEFAULT (CACHELIST_ITEM_VALID | CACHELIST_ITEM_ID)
98    
99     typedef struct {
100     pos_t home; /* current home geo position */
101     gboolean use_gps; /* use GPS if avbailable */
102     char *path; /* current path to select GPX from */
103    
104     location_t *location; /* extra home locations */
105     int active_location; /* index of active (extra) home location */
106    
107     gboolean imperial; /* display imperial units */
108    
109     pos_t gps; /* saved last gps position */
110    
111     char *image_path; /* path to cache images in */
112    
113     int search; /* "search in" items */
114     char *search_str;
115     int search_days;
116    
117     int gpxlist_items;
118     int cachelist_items;
119     guint cachelist_handler_id; /* update timer */
120     gboolean cachelist_hide_found;
121    
122     /* geotext related */
123     char *geotext_text;
124     int geotext_shift;
125    
126     gpx_t *gpx;
127     GtkListStore *gpxstore;
128     GtkWidget *gpxview;
129     GConfClient *gconf_client;
130    
131     pos_t manual_goto;
132     gboolean compass_locked;
133     int compass_damping;
134    
135     struct gps_state *gps_state;
136    
137     /* keep track of all html views so zoom events can be delivered */
138     struct html_view *html_view;
139    
140     #ifndef REQUIRES_CLOSE_BUTTON
141     /* this is being activated and de-activated on selection/deselection */
142     GtkWidget *menu_remove, *menu_close;
143     #endif
144    
145 harbaum 2 #ifndef NO_COPY_N_PASTE
146 harbaum 1 /* do enable/disable the edit entries */
147     GtkWidget *menu_cut, *menu_copy, *menu_paste;
148     GtkTextBuffer *active_buffer;
149 harbaum 2 #endif
150 harbaum 1
151 harbaum 133 GtkClipboard *clipboard; /* clipboard for copy/paste */
152    
153 harbaum 20 #ifdef USE_STACKABLE_WINDOW
154     GtkWidget *export_menu, *tools_menu;
155     #endif
156    
157 harbaum 1 /* save result here to be able to "goto" it */
158     pos_t geomath;
159    
160     int cur_items;
161     GtkWidget *cur_view;
162    
163     char *mmpoi_path; /* path to save poi to */
164     float mmpoi_radius;
165     gboolean mmpoi_use_radius;
166     gboolean mmpoi_dont_export_found;
167     gboolean mmpoi_dont_export_disabled;
168    
169     char *fieldnotes_path; /* path to save field notes to */
170    
171     char *garmin_path; /* path to save garmin data to */
172     gboolean garmin_ign_found;
173    
174     #ifdef USE_MAEMO
175     gboolean fullscreen;
176     pos_t mmpos; /* position received from Maemo Mapper */
177     gboolean mmpos_valid;
178    
179     gboolean mmpoi_dontlaunch;
180    
181     gboolean cachelist_disable_screensaver;
182     gboolean goto_disable_screensaver;
183    
184     HildonProgram *program;
185     HildonWindow *window;
186     osso_context_t *osso_context;
187 harbaum 126 #else
188     GtkWidget *window;
189     #endif
190 harbaum 1
191 harbaum 129 gboolean cachelist_update;
192    
193 harbaum 128 #if defined(USE_BREAD_CRUMB_TRAIL) || defined(BCT)
194 harbaum 1 /* reference to enable/disable these while walking the crumb trail */
195     GtkWidget *menu_import, *menu_export;
196     GtkWidget *menu_search;
197    
198 harbaum 128 GtkWidget *bct;
199     #endif
200    
201 harbaum 1 /* keep track of current "path" in the bread crumb trail */
202     gpx_t *cur_gpx;
203     cache_t *cur_cache;
204    
205 harbaum 126 gpx_t *search_results;
206    
207 harbaum 48 #ifdef ENABLE_OSM_GPS_MAP
208     struct {
209 harbaum 56 struct map_context_s *context;
210 harbaum 89 int source;
211 harbaum 48 int zoom;
212     pos_t pos;
213     } map;
214     #endif
215    
216 harbaum 1 GtkWidget *vbox;
217     } appdata_t;
218    
219     /* all includes that rely on appdata_t go here ... */
220     #include "gps.h"
221     #include "goto.h"
222     #include "gconf.h"
223     #include "html.h"
224     #include "icons.h"
225     #include "cache.h"
226     #include "geomath.h"
227     #include "geotext.h"
228     #include "notes.h"
229     #include "help.h"
230     #include "mm_poi.h"
231     #include "precpos.h"
232     #include "garmin_export.h"
233 harbaum 157 #include "gcvote.h"
234 harbaum 1
235 harbaum 32 #ifdef ENABLE_OSM_GPS_MAP
236     #include "map-tool.h"
237     #endif
238    
239 harbaum 1 #ifdef USE_MAEMO
240     #include "dbus.h"
241     #endif
242    
243     #define SEARCH_ID (1<<0)
244     #define SEARCH_NAME (1<<1)
245     #define SEARCH_DESC (1<<2)
246     #define SEARCH_OWNER (1<<3)
247     #define SEARCH_FINDS (1<<4)
248    
249     #ifdef USE_MAEMO
250     #define DIALOG_WIDTH 800
251     #define DIALOG_HEIGHT 480
252     #define GTK_FM_OK GTK_RESPONSE_OK
253     #else
254     #define DIALOG_WIDTH 560
255     #define DIALOG_HEIGHT 340
256     #define GTK_FM_OK GTK_RESPONSE_ACCEPT
257     #endif
258    
259     #include "misc.h"
260    
261     #define CHANGE_FLAG_POS (1<<0)
262     #define CHANGE_FLAG_MASK (1<<1)
263    
264     extern void main_after_settings_redraw(appdata_t *appdata, int flags);
265    
266     #include <stdarg.h>
267     extern void errorf(const char *fmt, ...);
268     extern gboolean on_window_key_press(GtkWidget *widget,
269 harbaum 11 GdkEventKey *event, appdata_t *appdata);
270 harbaum 3 #ifdef USE_STACKABLE_WINDOW
271     HildonAppMenu *menu_create(appdata_t *appdata, int mode);
272     #endif
273 harbaum 142 void cachelist_goto_cache(appdata_t *appdata, cache_t *cache);
274     void gpxlist_goto_cachelist(appdata_t *appdata, gpx_t *gpx);
275 harbaum 1
276     #endif // GPXVIEW_H