summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/LauncherSettings.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/launcher3/LauncherSettings.java')
-rw-r--r--src/com/android/launcher3/LauncherSettings.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/com/android/launcher3/LauncherSettings.java b/src/com/android/launcher3/LauncherSettings.java
index eb395c8bf..a2b9c8143 100644
--- a/src/com/android/launcher3/LauncherSettings.java
+++ b/src/com/android/launcher3/LauncherSettings.java
@@ -91,6 +91,26 @@ class LauncherSettings {
}
/**
+ * Workspace Screens.
+ *
+ * Tracks the order of workspace screens.
+ */
+ static final class WorkspaceScreens implements BaseColumns {
+ /**
+ * The content:// style URL for this table
+ */
+ static final Uri CONTENT_URI = Uri.parse("content://" +
+ LauncherProvider.AUTHORITY + "/" + LauncherProvider.TABLE_WORKSPACE_SCREENS +
+ "?" + LauncherProvider.PARAMETER_NOTIFY + "=true");
+
+ /**
+ * The rank of this screen -- ie. how it is ordered relative to the other screens.
+ * <P>Type: INTEGER</P>
+ */
+ static final String SCREEN_RANK = "screenRank";
+ }
+
+ /**
* Favorites.
*/
static final class Favorites implements BaseLauncherColumns {