diff options
author | Michael Terry <mike@mterry.name> | 2011-02-23 13:28:53 -0500 |
---|---|---|
committer | Michael Terry <mike@mterry.name> | 2011-02-23 13:28:53 -0500 |
commit | b4a4c9682ca2413175386ad36d06fc4e1032badc (patch) | |
tree | 01676389bb60015b5b33088c8b15009f1aa251bb /src/timezone-completion.h | |
parent | deafbc1da6b3c29e04455e46414342bcb9841c2a (diff) | |
download | ayatana-indicator-datetime-b4a4c9682ca2413175386ad36d06fc4e1032badc.tar.gz ayatana-indicator-datetime-b4a4c9682ca2413175386ad36d06fc4e1032badc.tar.bz2 ayatana-indicator-datetime-b4a4c9682ca2413175386ad36d06fc4e1032badc.zip |
grab timezone names from geomaps; flesh out support for timezone completion in main map and locations dialog; show times in locations dialog
Diffstat (limited to 'src/timezone-completion.h')
-rw-r--r-- | src/timezone-completion.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/timezone-completion.h b/src/timezone-completion.h index 6b3ac2b..fdfb234 100644 --- a/src/timezone-completion.h +++ b/src/timezone-completion.h @@ -45,13 +45,17 @@ struct _TimezoneCompletion { GtkEntryCompletion parent; }; -#define TIMEZONE_COMPLETION_ZONE 0 -#define TIMEZONE_COMPLETION_NAME 1 -#define TIMEZONE_COMPLETION_COUNTRY 2 -#define TIMEZONE_COMPLETION_LAST 3 +#define TIMEZONE_COMPLETION_ZONE 0 +#define TIMEZONE_COMPLETION_NAME 1 +#define TIMEZONE_COMPLETION_ADMIN1 2 +#define TIMEZONE_COMPLETION_COUNTRY 3 +#define TIMEZONE_COMPLETION_LONGITUDE 4 +#define TIMEZONE_COMPLETION_LATITUDE 5 +#define TIMEZONE_COMPLETION_LAST 6 GType timezone_completion_get_type (void); TimezoneCompletion * timezone_completion_new (); +void timezone_completion_watch_entry (TimezoneCompletion * completion, GtkEntry * entry); G_END_DECLS |