2010-08-03 09:26:44 -04:00
|
|
|
*.deps
|
2010-11-08 19:38:40 +03:00
|
|
|
*.jpg
|
|
|
|
*.la
|
|
|
|
*.lo
|
2014-05-12 10:08:56 +03:00
|
|
|
*.log
|
2008-11-25 23:18:29 -05:00
|
|
|
*.o
|
2008-12-10 13:44:23 -05:00
|
|
|
*.pc
|
2010-11-08 19:38:40 +03:00
|
|
|
*.so
|
|
|
|
*.swp
|
2015-02-05 15:31:10 +00:00
|
|
|
.*.sw?
|
|
|
|
.sw?
|
|
|
|
*.sublime-project
|
|
|
|
*.sublime-workspace
|
2014-05-12 10:08:56 +03:00
|
|
|
*.trs
|
2008-12-02 15:18:38 -05:00
|
|
|
*~
|
2012-06-22 13:21:28 +01:00
|
|
|
ctags
|
|
|
|
cscope.out
|
2010-11-08 19:38:40 +03:00
|
|
|
.libs
|
2014-02-01 22:16:43 -08:00
|
|
|
.dirstamp
|
2010-11-08 19:38:40 +03:00
|
|
|
/aclocal.m4
|
|
|
|
/autom4te.cache
|
2014-02-01 18:48:43 +01:00
|
|
|
/build-aux/
|
2015-02-05 15:31:10 +00:00
|
|
|
/config.guess
|
2010-11-08 19:38:40 +03:00
|
|
|
/config.h
|
|
|
|
/config.h.in
|
|
|
|
/config.log
|
|
|
|
/config.mk
|
|
|
|
/config.status
|
2015-02-05 15:31:10 +00:00
|
|
|
/config.sub
|
2010-11-08 19:38:40 +03:00
|
|
|
/configure
|
2015-02-05 15:31:10 +00:00
|
|
|
/depcomp
|
|
|
|
/install-sh
|
2010-11-08 19:38:40 +03:00
|
|
|
/libtool
|
2015-02-05 15:31:10 +00:00
|
|
|
/ltmain.sh
|
2014-05-12 10:08:56 +03:00
|
|
|
/logs
|
2015-02-05 15:31:10 +00:00
|
|
|
/missing
|
2010-11-08 19:38:40 +03:00
|
|
|
/stamp-h1
|
2013-03-28 17:28:22 +00:00
|
|
|
/test-driver
|
2013-11-22 16:46:00 +00:00
|
|
|
/weston.ini
|
2010-11-08 19:38:40 +03:00
|
|
|
Makefile
|
|
|
|
Makefile.in
|
2013-03-28 17:28:22 +00:00
|
|
|
TAGS
|
2013-10-25 12:15:42 -07:00
|
|
|
protocol/.*.valid
|
2014-02-06 15:43:19 -05:00
|
|
|
protocol/*.[ch]
|
|
|
|
|
2015-02-05 15:31:10 +00:00
|
|
|
00*.patch
|
|
|
|
|
2014-02-06 15:43:19 -05:00
|
|
|
weston-calibrator
|
|
|
|
weston-clickdot
|
|
|
|
weston-cliptest
|
|
|
|
weston-dnd
|
|
|
|
weston-editor
|
|
|
|
weston-eventdemo
|
|
|
|
weston-flower
|
|
|
|
weston-fullscreen
|
|
|
|
weston-gears
|
|
|
|
weston-image
|
|
|
|
weston-nested
|
|
|
|
weston-nested-client
|
2014-09-23 22:08:49 -04:00
|
|
|
weston-presentation-shm
|
2014-02-06 15:43:19 -05:00
|
|
|
weston-resizor
|
|
|
|
weston-scaler
|
|
|
|
weston-simple-egl
|
|
|
|
weston-simple-shm
|
|
|
|
weston-simple-touch
|
2014-04-05 09:22:15 -05:00
|
|
|
weston-simple-damage
|
2014-02-06 15:43:19 -05:00
|
|
|
weston-smoke
|
|
|
|
weston-stacking
|
|
|
|
weston-subsurfaces
|
|
|
|
weston-transformed
|
|
|
|
weston-view
|
|
|
|
|
|
|
|
weston-keyboard
|
|
|
|
libtoytoolkit.a
|
|
|
|
weston-desktop-shell
|
clients: a reference implementation of UI client how to use ivi-hmi-controller.
- introduces ivi-shell-user-interface.c
This is launched from hmi-controller by launch_hmi_client_process and
invoke a
client process.
The basic flow is as followed,
1/ process invoked
2/ read configuration from weston.ini.
3/ draw png file to surface according to configuration of weston.ini
4/ all parts of UI are ready. request "UI_ready" to draw UI.
5/ Enter event loop
6/ If a surface receives touch/pointer event, followings are invoked
according
to type of event and surface
6-1/ If a surface to launch ivi_application receive touch up, it execs
ivi-application configured in weston.ini.
6-2/ If a surface to switch layout mode receive touch up, it sends a
request,
ivi_hmi_controller_switch_mode, to hmi-controller.
6-3/ If a surface to show workspace having launchers, it sends a
request,
ivi_hmi_controller_home, to hmi-controller.
6-4/ If touch down events happens in workspace,
ivi_hmi_controller_workspace_control is sent to slide workspace.
When control finished, event:
ivi_hmi_controller_workspace_end_control
is received.
Signed-off-by: Nobuhiko Tanibata <NOBUHIKO_TANIBATA@xddp.denso.co.jp>
Acked-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
2014-11-27 13:23:32 +09:00
|
|
|
weston-ivi-shell-user-interface
|
2014-02-06 15:43:19 -05:00
|
|
|
weston-info
|
|
|
|
weston-screensaver
|
|
|
|
weston-screenshooter
|
|
|
|
weston-tablet-shell
|
|
|
|
weston-terminal
|
|
|
|
weston-multi-resource
|
|
|
|
weston-simple-im
|
|
|
|
git-version.h
|
|
|
|
version.h
|
|
|
|
weston
|
|
|
|
weston-launch
|
|
|
|
spring-tool
|
|
|
|
|
|
|
|
*.weston
|
|
|
|
*.test
|
|
|
|
wcap-decode
|
|
|
|
matrix-test
|
|
|
|
setbacklight
|
|
|
|
weston.1
|
|
|
|
weston-drm.7
|
|
|
|
weston.ini.5
|
2015-03-24 13:51:05 +02:00
|
|
|
|
|
|
|
/tests/weston-ivi.ini
|