annotate src/bar_gps.h @ 1685:47b191b77e07

Revert "Add pgettext for some ambiguous strings" Now there should be all ambiguous strings gone. This reverts commit 1628 With that commit also all ambiguous strings should be solved.
author mow
date Tue, 30 Jun 2009 19:53:55 +0000
parents c6d522fe3e5e
children 956aab097ea7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1604
c6d522fe3e5e added GPS map support - patch by Colin Clark
nadvornik
parents:
diff changeset
1 /*
c6d522fe3e5e added GPS map support - patch by Colin Clark
nadvornik
parents:
diff changeset
2 * Geeqie
c6d522fe3e5e added GPS map support - patch by Colin Clark
nadvornik
parents:
diff changeset
3 * (C) 2004 John Ellis
c6d522fe3e5e added GPS map support - patch by Colin Clark
nadvornik
parents:
diff changeset
4 * Copyright (C) 2008 - 2009 The Geeqie Team
c6d522fe3e5e added GPS map support - patch by Colin Clark
nadvornik
parents:
diff changeset
5 *
c6d522fe3e5e added GPS map support - patch by Colin Clark
nadvornik
parents:
diff changeset
6 * Author: Vladimir Nadvornik
c6d522fe3e5e added GPS map support - patch by Colin Clark
nadvornik
parents:
diff changeset
7 *
c6d522fe3e5e added GPS map support - patch by Colin Clark
nadvornik
parents:
diff changeset
8 * This software is released under the GNU General Public License (GNU GPL).
c6d522fe3e5e added GPS map support - patch by Colin Clark
nadvornik
parents:
diff changeset
9 * Please read the included file COPYING for more information.
c6d522fe3e5e added GPS map support - patch by Colin Clark
nadvornik
parents:
diff changeset
10 * This software comes with no warranty of any kind, use at your own risk!
c6d522fe3e5e added GPS map support - patch by Colin Clark
nadvornik
parents:
diff changeset
11 */
c6d522fe3e5e added GPS map support - patch by Colin Clark
nadvornik
parents:
diff changeset
12
c6d522fe3e5e added GPS map support - patch by Colin Clark
nadvornik
parents:
diff changeset
13 #ifndef BAR_GPS_H
c6d522fe3e5e added GPS map support - patch by Colin Clark
nadvornik
parents:
diff changeset
14 #define BAR_GPS_H
c6d522fe3e5e added GPS map support - patch by Colin Clark
nadvornik
parents:
diff changeset
15
c6d522fe3e5e added GPS map support - patch by Colin Clark
nadvornik
parents:
diff changeset
16 GtkWidget *bar_pane_gps_new(const gchar *id, const gchar *title, const gchar *map_source, const gint zoom,
c6d522fe3e5e added GPS map support - patch by Colin Clark
nadvornik
parents:
diff changeset
17 const gdouble latitude, const gdouble longitude, gboolean expanded, gint height);
c6d522fe3e5e added GPS map support - patch by Colin Clark
nadvornik
parents:
diff changeset
18 GtkWidget *bar_pane_gps_new_from_config(const gchar **attribute_names, const gchar **attribute_values);
c6d522fe3e5e added GPS map support - patch by Colin Clark
nadvornik
parents:
diff changeset
19 void bar_pane_gps_update_from_config(GtkWidget *pane, const gchar **attribute_names, const gchar **attribute_values);
c6d522fe3e5e added GPS map support - patch by Colin Clark
nadvornik
parents:
diff changeset
20
c6d522fe3e5e added GPS map support - patch by Colin Clark
nadvornik
parents:
diff changeset
21
c6d522fe3e5e added GPS map support - patch by Colin Clark
nadvornik
parents:
diff changeset
22 #endif
c6d522fe3e5e added GPS map support - patch by Colin Clark
nadvornik
parents:
diff changeset
23
c6d522fe3e5e added GPS map support - patch by Colin Clark
nadvornik
parents:
diff changeset
24
c6d522fe3e5e added GPS map support - patch by Colin Clark
nadvornik
parents:
diff changeset
25 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */