summaryrefslogtreecommitdiff
path: root/ivi-shell
diff options
context:
space:
mode:
authorPekka Paalanen <pekka.paalanen@collabora.co.uk>2015-02-19 17:08:44 +0200
committerPekka Paalanen <pekka.paalanen@collabora.co.uk>2015-03-02 16:56:02 +0200
commite35b223342d9511a87bb990b24893497d629f8fe (patch)
tree294d95455e075ea18487e45ebe62a44c593a6aa8 /ivi-shell
parent2829f7c42e8052fd1a2ce409c9c4e19ab1fa0386 (diff)
ivi-shell: developer mode debug key bindings
Add a weston.ini option for ivi-shell to enable "developer mode". When developer mode is enabled, hook up the debug key bindings. Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk> Acked-by: Nobuhiko Tanibata <NOBUHIKO_TANIBATA@xddp.denso.co.jp> Reviewed-by: Daniel Stone <daniels@collabora.com>
Diffstat (limited to 'ivi-shell')
-rw-r--r--ivi-shell/ivi-shell.c37
-rw-r--r--ivi-shell/weston.ini.in2
2 files changed, 26 insertions, 13 deletions
diff --git a/ivi-shell/ivi-shell.c b/ivi-shell/ivi-shell.c
index 7c67dff7..5e437fa7 100644
--- a/ivi-shell/ivi-shell.c
+++ b/ivi-shell/ivi-shell.c
@@ -65,6 +65,7 @@ struct ivi_shell_surface
struct ivi_shell_setting
{
char *ivi_module;
+ int developermode;
};
/*
@@ -354,13 +355,17 @@ shell_destroy(struct wl_listener *listener, void *data)
}
static void
-init_ivi_shell(struct weston_compositor *compositor, struct ivi_shell *shell)
+init_ivi_shell(struct weston_compositor *compositor, struct ivi_shell *shell,
+ const struct ivi_shell_setting *setting)
{
shell->compositor = compositor;
wl_list_init(&shell->ivi_surface_list);
weston_layer_init(&shell->input_panel_layer, NULL);
+
+ if (setting->developermode)
+ weston_install_debug_key_binding(compositor, MODIFIER_SUPER);
}
static int
@@ -382,6 +387,9 @@ ivi_shell_setting_create(struct ivi_shell_setting *dest,
result = -1;
}
+ weston_config_section_get_bool(section, "developermode",
+ &dest->developermode, 0);
+
return result;
}
@@ -394,36 +402,39 @@ module_init(struct weston_compositor *compositor,
{
struct ivi_shell *shell;
struct ivi_shell_setting setting = { };
+ int retval = -1;
shell = zalloc(sizeof *shell);
if (shell == NULL)
return -1;
- init_ivi_shell(compositor, shell);
+ if (ivi_shell_setting_create(&setting, compositor) != 0)
+ return -1;
+
+ init_ivi_shell(compositor, shell, &setting);
shell->destroy_listener.notify = shell_destroy;
wl_signal_add(&compositor->destroy_signal, &shell->destroy_listener);
if (input_panel_setup(shell) < 0)
- return -1;
+ goto out_settings;
if (wl_global_create(compositor->wl_display,
&ivi_application_interface, 1,
shell, bind_ivi_application) == NULL)
- return -1;
-
- if (ivi_shell_setting_create(&setting, compositor) != 0)
- return -1;
+ goto out_settings;
ivi_layout_init_with_compositor(compositor);
-
/* Call module_init of ivi-modules which are defined in weston.ini */
- if (load_controller_modules(compositor, setting.ivi_module, argc, argv) < 0) {
- free(setting.ivi_module);
- return -1;
- }
+ if (load_controller_modules(compositor, setting.ivi_module,
+ argc, argv) < 0)
+ goto out_settings;
+
+ retval = 0;
+out_settings:
free(setting.ivi_module);
- return 0;
+
+ return retval;
}
diff --git a/ivi-shell/weston.ini.in b/ivi-shell/weston.ini.in
index 8aa57462..e05e8dad 100644
--- a/ivi-shell/weston.ini.in
+++ b/ivi-shell/weston.ini.in
@@ -5,6 +5,8 @@ shell=ivi-shell.so
ivi-module=hmi-controller.so
ivi-shell-user-interface=@abs_top_builddir@/weston-ivi-shell-user-interface
+#developermode=true
+
cursor-theme=default
cursor-size=32