summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTiago Vignatti <tiago.vignatti@intel.com>2012-03-21 19:49:18 +0200
committerKristian Høgsberg <krh@bitplanet.net>2012-03-25 08:49:30 -0400
commit9a206c4da528b49debcda522b5001e0aeb095b87 (patch)
treeece9205487c4e79d66a40fb192b83bd9c1a1bc9d
parent6bd4d97271c4c03c9719f1e23df025306855afc8 (diff)
config-parser: consolidate shell files into weston.ini only
The shell choice happens in the configuration file now. Signed-off-by: Tiago Vignatti <tiago.vignatti@intel.com>
-rw-r--r--clients/desktop-shell.c4
-rw-r--r--clients/tablet-shell.c19
-rw-r--r--src/compositor.c15
-rw-r--r--src/shell.c2
-rw-r--r--weston-tablet-shell.ini75
-rw-r--r--weston.ini (renamed from weston-desktop-shell.ini)7
6 files changed, 30 insertions, 92 deletions
diff --git a/clients/desktop-shell.c b/clients/desktop-shell.c
index 43d23ef..7477ac1 100644
--- a/clients/desktop-shell.c
+++ b/clients/desktop-shell.c
@@ -118,7 +118,7 @@ static const struct config_key launcher_config_keys[] = {
};
static const struct config_section config_sections[] = {
- { "desktop-shell",
+ { "shell",
shell_config_keys, ARRAY_LENGTH(shell_config_keys) },
{ "launcher",
launcher_config_keys, ARRAY_LENGTH(launcher_config_keys),
@@ -728,7 +728,7 @@ int main(int argc, char *argv[])
desktop_shell_set_background(desktop.shell, output->output, s);
}
- config_file = config_file_path("weston-desktop-shell.ini");
+ config_file = config_file_path("weston.ini");
ret = parse_config_file(config_file,
config_sections, ARRAY_LENGTH(config_sections),
&desktop);
diff --git a/clients/tablet-shell.c b/clients/tablet-shell.c
index cfafd23..206100b 100644
--- a/clients/tablet-shell.c
+++ b/clients/tablet-shell.c
@@ -54,13 +54,10 @@ static char *key_launcher_icon;
static char *key_launcher_path;
static void launcher_section_done(void *data);
-static const struct config_key lockscreen_config_keys[] = {
- { "icon", CONFIG_KEY_STRING, &key_lockscreen_icon },
- { "background", CONFIG_KEY_STRING, &key_lockscreen_background },
-};
-
-static const struct config_key homescreen_config_keys[] = {
- { "background", CONFIG_KEY_STRING, &key_homescreen_background },
+static const struct config_key shell_config_keys[] = {
+ { "lockscreen-icon", CONFIG_KEY_STRING, &key_lockscreen_icon },
+ { "lockscreen", CONFIG_KEY_STRING, &key_lockscreen_background },
+ { "homescreen", CONFIG_KEY_STRING, &key_homescreen_background },
};
static const struct config_key launcher_config_keys[] = {
@@ -69,10 +66,8 @@ static const struct config_key launcher_config_keys[] = {
};
static const struct config_section config_sections[] = {
- { "lockscreen",
- lockscreen_config_keys, ARRAY_LENGTH(lockscreen_config_keys) },
- { "homescreen",
- homescreen_config_keys, ARRAY_LENGTH(homescreen_config_keys) },
+ { "shell",
+ shell_config_keys, ARRAY_LENGTH(shell_config_keys) },
{ "launcher",
launcher_config_keys, ARRAY_LENGTH(launcher_config_keys),
launcher_section_done }
@@ -327,7 +322,7 @@ int main(int argc, char *argv[])
"tablet_shell", 1);
shell = tablet_shell_create(display, id);
- config_file = config_file_path("weston-tablet-shell.ini");
+ config_file = config_file_path("weston.ini");
parse_config_file(config_file,
config_sections, ARRAY_LENGTH(config_sections),
shell);
diff --git a/src/compositor.c b/src/compositor.c
index d690bb6..5af20ec 100644
--- a/src/compositor.c
+++ b/src/compositor.c
@@ -2513,12 +2513,21 @@ int main(int argc, char *argv[])
int32_t idle_time = 300;
int32_t xserver;
char *socket_name = NULL;
+ char *config_file;
+
+ const const struct config_key shell_config_keys[] = {
+ { "type", CONFIG_KEY_STRING, &shell },
+ };
+
+ const const struct config_section cs[] = {
+ { "shell",
+ shell_config_keys, ARRAY_LENGTH(shell_config_keys) },
+ };
const struct weston_option core_options[] = {
{ WESTON_OPTION_STRING, "backend", 'B', &backend },
{ WESTON_OPTION_STRING, "socket", 'S', &socket_name },
{ WESTON_OPTION_INTEGER, "idle-time", 'i', &idle_time },
- { WESTON_OPTION_STRING, "shell", 's', &shell },
{ WESTON_OPTION_BOOLEAN, "xserver", 0, &xserver },
};
@@ -2555,6 +2564,10 @@ int main(int argc, char *argv[])
backend = "drm-backend.so";
}
+ config_file = config_file_path("weston.ini");
+ parse_config_file(config_file, cs, ARRAY_LENGTH(cs), shell);
+ free(config_file);
+
if (!shell)
shell = "desktop-shell.so";
diff --git a/src/shell.c b/src/shell.c
index a262b4f..ea3d0bf 100644
--- a/src/shell.c
+++ b/src/shell.c
@@ -164,7 +164,7 @@ shell_configuration(struct wl_shell *shell)
{ "screensaver", saver_keys, ARRAY_LENGTH(saver_keys), NULL },
};
- config_file = config_file_path("weston-desktop-shell.ini");
+ config_file = config_file_path("weston.ini");
parse_config_file(config_file, cs, ARRAY_LENGTH(cs), shell);
free(config_file);
diff --git a/weston-tablet-shell.ini b/weston-tablet-shell.ini
deleted file mode 100644
index 5c97b5c..0000000
--- a/weston-tablet-shell.ini
+++ /dev/null
@@ -1,75 +0,0 @@
-[lockscreen]
-icon=/usr/share/icons/gnome/256x256/actions/lock.png
-background=/usr/share/backgrounds/gnome/Garden.jpg
-
-[homescreen]
-background=/usr/share/backgrounds/gnome/Blinds.jpg
-
-[launcher]
-icon=/usr/share/icons/gnome/256x256/apps/access.png
-path=/usr/bin/weston-terminal
-
-[launcher]
-icon=/usr/share/icons/gnome/256x256/apps/multimedia.png
-path=/usr/bin/weston-terminal
-
-[launcher]
-icon=/usr/share/icons/gnome/256x256/apps/background.png
-path=/usr/bin/weston-terminal
-
-[launcher]
-icon=/usr/share/icons/gnome/256x256/apps/calc.png
-path=/usr/bin/weston-terminal
-
-[launcher]
-icon=/usr/share/icons/gnome/256x256/apps/file-manager.png
-path=/usr/bin/weston-terminal
-
-[launcher]
-icon=/usr/share/icons/gnome/256x256/apps/fonts.png
-path=/usr/bin/weston-terminal
-
-[launcher]
-icon=/usr/share/icons/gnome/256x256/apps/gnome-character-map.png
-path=/usr/bin/weston-terminal
-
-[launcher]
-icon=/usr/share/icons/gnome/256x256/apps/help-browser.png
-path=/usr/bin/weston-terminal
-
-[launcher]
-icon=/usr/share/icons/gnome/256x256/apps/gnome-remote-desktop.png
-path=/usr/bin/weston-terminal
-
-[launcher]
-icon=/usr/share/icons/gnome/256x256/apps/key_bindings.png
-path=/usr/bin/weston-terminal
-
-[launcher]
-icon=/usr/share/icons/gnome/256x256/apps/style.png
-path=/usr/bin/weston-terminal
-
-[launcher]
-icon=/usr/share/icons/gnome/256x256/apps/terminal.png
-path=/usr/bin/weston-terminal
-
-[launcher]
-icon=/usr/share/icons/gnome/256x256/apps/locale.png
-path=/usr/bin/weston-terminal
-
-[launcher]
-icon=/usr/share/icons/gnome/256x256/apps/screensaver.png
-path=/usr/bin/weston-terminal
-
-[launcher]
-icon=/usr/share/icons/gnome/256x256/apps/text-editor.png
-path=/usr/bin/weston-terminal
-
-[launcher]
-icon=/usr/share/icons/gnome/256x256/apps/wallpaper.png
-path=/usr/bin/weston-terminal
-
-[launcher]
-icon=/usr/share/icons/gnome/256x256/apps/web-browser.png
-path=/usr/bin/weston-terminal
-
diff --git a/weston-desktop-shell.ini b/weston.ini
index 9460a4e..69c7321 100644
--- a/weston-desktop-shell.ini
+++ b/weston.ini
@@ -1,9 +1,14 @@
-[desktop-shell]
+[shell]
+type=desktop-shell.so
background-image=/usr/share/backgrounds/gnome/Aqua.jpg
background-color=0xff002244
panel-color=0x90ff0000
locking=true
+#type=tablet-shell.so
+#lockscreen-icon=/usr/share/icons/gnome/256x256/actions/lock.png
+#lockscreen=/usr/share/backgrounds/gnome/Garden.jpg
+#homescreen=/usr/share/backgrounds/gnome/Blinds.jpg
[launcher]
icon=/usr/share/icons/gnome/24x24/apps/utilities-terminal.png
path=/usr/bin/gnome-terminal