diff options
author | Michael Terry <mike@mterry.name> | 2011-02-17 14:30:43 -0500 |
---|---|---|
committer | Michael Terry <mike@mterry.name> | 2011-02-17 14:30:43 -0500 |
commit | a10f207618976b59a0cc43c01befbf67128c92a5 (patch) | |
tree | de34a6202fd5bb2a42e7871c4c026ec583b6ae98 /src/settings-shared.h | |
parent | 37fc0a3158e5ff5f8cf9096de49451379c2d11f1 (diff) | |
download | ayatana-indicator-datetime-a10f207618976b59a0cc43c01befbf67128c92a5.tar.gz ayatana-indicator-datetime-a10f207618976b59a0cc43c01befbf67128c92a5.tar.bz2 ayatana-indicator-datetime-a10f207618976b59a0cc43c01befbf67128c92a5.zip |
first pass at preferences dialog
Diffstat (limited to 'src/settings-shared.h')
-rw-r--r-- | src/settings-shared.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/settings-shared.h b/src/settings-shared.h new file mode 100644 index 0000000..1a66688 --- /dev/null +++ b/src/settings-shared.h @@ -0,0 +1,39 @@ +/* +An indicator to show date and time information. + +Copyright 2010 Canonical Ltd. + +Authors: + Ted Gould <ted@canonical.com> + +This program is free software: you can redistribute it and/or modify it +under the terms of the GNU General Public License version 3, 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 warranties of +MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR +PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along +with this program. If not, see <http://www.gnu.org/licenses/>. +*/ + +#ifndef __DATETIME_SETTINGS_SHARED_H__ +#define __DATETIME_SETTINGS_SHARED_H__ + +#define SETTINGS_INTERFACE "com.canonical.indicator.datetime" +#define SETTINGS_SHOW_CLOCK_S "show-clock" +#define SETTINGS_TIME_FORMAT_S "time-format" +#define SETTINGS_SHOW_SECONDS_S "show-seconds" +#define SETTINGS_SHOW_DAY_S "show-day" +#define SETTINGS_SHOW_DATE_S "show-date" +#define SETTINGS_CUSTOM_TIME_FORMAT_S "custom-time-format" +#define SETTINGS_SHOW_CALENDAR_S "show-calendar" +#define SETTINGS_SHOW_WEEK_NUMBERS_S "show-week-numbers" +#define SETTINGS_WEEK_BEGINS_SUNDAY_S "week-begins-sunday" +#define SETTINGS_SHOW_EVENTS_S "show-events" +#define SETTINGS_SHOW_LOCATIONS_S "show-locations" +#define SETTINGS_LOCATIONS_S "locations" + +#endif |