aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/cyanogenmod/lockclock/misc/Constants.java
diff options
context:
space:
mode:
authorDvTonder <david.vantonder@gmail.com>2012-12-28 13:22:17 -0500
committerDvTonder <david.vantonder@gmail.com>2012-12-28 13:22:17 -0500
commit712e66fbf0f8c472afc2c67b463846dc336bfc62 (patch)
tree0511bf695c98bbf59232d7c547a4295113f0ce1c /src/com/cyanogenmod/lockclock/misc/Constants.java
parenta7e30e40f602899609c6ff20c6d34af11a938035 (diff)
downloadandroid_packages_apps_LockClock-712e66fbf0f8c472afc2c67b463846dc336bfc62.tar.gz
android_packages_apps_LockClock-712e66fbf0f8c472afc2c67b463846dc336bfc62.tar.bz2
android_packages_apps_LockClock-712e66fbf0f8c472afc2c67b463846dc336bfc62.zip
Add Calendar support and some general cleanup of copyrights
Diffstat (limited to 'src/com/cyanogenmod/lockclock/misc/Constants.java')
-rw-r--r--src/com/cyanogenmod/lockclock/misc/Constants.java39
1 files changed, 27 insertions, 12 deletions
diff --git a/src/com/cyanogenmod/lockclock/misc/Constants.java b/src/com/cyanogenmod/lockclock/misc/Constants.java
index 3e52a35..ee222ac 100644
--- a/src/com/cyanogenmod/lockclock/misc/Constants.java
+++ b/src/com/cyanogenmod/lockclock/misc/Constants.java
@@ -1,10 +1,17 @@
/*
- * Copyright (C) 2012 The CyanogenMod Project
+ * Copyright (C) 2012 The CyanogenMod Project (DvTonder)
*
- * * Licensed under the GNU GPLv2 license
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
*
- * The text of the license can be found in the LICENSE file
- * or at https://www.gnu.org/licenses/gpl-2.0.txt
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
package com.cyanogenmod.lockclock.misc;
@@ -25,13 +32,21 @@ public class Constants {
// Widget Settings
public static final String CLOCK_FONT = "clock_font";
- public static final String SHOW_ALARM = "show_alarm";
+ public static final String CLOCK_SHOW_ALARM = "clock_show_alarm";
+
public static final String SHOW_WEATHER = "show_weather";
- public static final String WEATHER_USE_CUSTOM_LOCATION = "use_custom_location";
- public static final String WEATHER_CUSTOM_LOCATION_STRING = "custom_location_string";
- public static final String WEATHER_SHOW_LOCATION = "show_location";
- public static final String WEATHER_SHOW_TIMESTAMP = "show_timestamp";
- public static final String WEATHER_USE_METRIC = "use_metric";
- public static final String WEATHER_INVERT_LOWHIGH = "invert_low_high";
- public static final String WEATHER_UPDATE_INTERVAL = "update_interval";
+ public static final String WEATHER_USE_CUSTOM_LOCATION = "weather_use_custom_location";
+ public static final String WEATHER_CUSTOM_LOCATION_STRING = "weather_custom_location_string";
+ public static final String WEATHER_SHOW_LOCATION = "weather_show_location";
+ public static final String WEATHER_SHOW_TIMESTAMP = "weather_show_timestamp";
+ public static final String WEATHER_USE_METRIC = "weather_use_metric";
+ public static final String WEATHER_INVERT_LOWHIGH = "weather_invert_low_high";
+ public static final String WEATHER_UPDATE_INTERVAL = "weather_update_interval";
+
+ public static final String SHOW_CALENDAR = "show_calendar";
+ public static final String CALENDAR_LIST = "calendar_list";
+ public static final String CALENDAR_REMINDERS_ONLY = "calendar_reminders_only";
+ public static final String CALENDAR_LOOKAHEAD = "calendar_lookahead";
+ public static final String CALENDAR_SHOW_LOCATION = "calendar_show_location";
+ public static final String CALENDAR_SHOW_DESCRIPTION = "calendar_show_description";
}