Contents of /trunk/src/notes.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 303 - (show annotations)
Tue Sep 14 09:28:57 2010 UTC (13 years, 7 months ago) by harbaum
File MIME type: text/plain
File size: 1166 byte(s)
Set log flag on web log
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 NOTES_H
21 #define NOTES_H
22
23 void notes_load_all(appdata_t *appdata, gpx_t *gpx);
24 void notes_free(notes_t *notes);
25 GtkWidget *cache_notes(cache_context_t *c);
26 gint notes_destroy_event(GtkWidget *widget, gpointer data );
27 pos_t notes_get_pos(cache_context_t *context);
28 gboolean notes_get_override(cache_context_t *context);
29 void notes_log_export(appdata_t *appdata);
30 void notes_logged(cache_context_t *context);
31
32 #endif // NOTES_H