summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Remove non-working launcherbaserock/genivi/baseline-h-1.1Lars Wirzenius2014-07-091-6/+0
|
* Fix up example weston.inibaserock/liw/genivi-h-1.1Lars Wirzenius2014-07-091-0/+42
|
* Install new PNGs to /usr/share/westonLars Wirzenius2014-07-091-0/+2
|
* Install ivi-shell-weston.ini exampleLars Wirzenius2014-07-031-0/+3
|
* Add LDFLAGS to make fixing workLars Wirzenius2014-07-031-0/+1
|
* Add morphologyLars Wirzenius2014-07-031-0/+11
|
* Transition animation support when attribute change of surface happens by ↵Nobuhiko Tanibata2014-06-2210-527/+1313
| | | | | | | | ivi-layout api. interpolate frames during transition. Signed-off-by: Nobuhiko Tanibata <NOBUHIKO_TANIBATA@xddp.denso.co.jp>
* Clear pending list when layer and screen cleared.Nobuhiko Tanibata2014-06-201-2/+17
| | | | Signed-off-by: Nobuhiko Tanibata <NOBUHIKO_TANIBATA@xddp.denso.co.jp>
* Add callbacks of surface listener.Nobuhiko Tanibata2014-06-201-16/+35
| | | | Signed-off-by: Nobuhiko Tanibata <NOBUHIKO_TANIBATA@xddp.denso.co.jp>
* Clear pending list and order list when layer removed.Nobuhiko Tanibata2014-06-171-0/+39
| | | | Signed-off-by: Nobuhiko Tanibata <NOBUHIKO_TANIBATA@xddp.denso.co.jp>
* Fix destruction of multiple times for ivi-surface's view.Nobuhiko Tanibata2014-06-081-0/+25
| | | | Signed-off-by: Nobuhiko Tanibata <NOBUHIKO_TANIBATA@xddp.denso.co.jp>
* Clear notification callbacks when ivi_layout_layer destroyed.Nobuhiko Tanibata2014-06-081-1/+5
| | | | Signed-off-by: Nobuhiko Tanibata <NOBUHIKO_TANIBATA@xddp.denso.co.jp>
* Clear notification callbacks when ivi_layout_surface destroyed.Nobuhiko Tanibata2014-06-031-0/+3
| | | | Signed-off-by: Nobuhiko Tanibata <NOBUHIKO_TANIBATA@xddp.denso.co.jp>
* Remove layer from render order of screen when screen cleared.Nobuhiko Tanibata2014-06-031-2/+18
| | | | Signed-off-by: Nobuhiko Tanibata <NOBUHIKO_TANIBATA@xddp.denso.co.jp>
* Clear link list to layer when ordersurface removed.Nobuhiko Tanibata2014-06-031-0/+3
| | | | Signed-off-by: Nobuhiko Tanibata <NOBUHIKO_TANIBATA@xddp.denso.co.jp>
* Avoid insertion of link_layer duplicate.Nobuhiko Tanibata2014-06-031-2/+14
| | | | Signed-off-by: Nobuhiko Tanibata <NOBUHIKO_TANIBATA@xddp.denso.co.jp>
* Fix ivi-shell-surface resource leak.Nobuhiko Tanibata2014-06-031-0/+2
| | | | Signed-off-by: Nobuhiko Tanibata <NOBUHIKO_TANIBATA@xddp.denso.co.jp>
* Fix seg-fault during a test-application running.Nobuhiko Tanibata2014-05-282-5/+6
|
* added surface content observer to ivi-layoutTimo Lotterbach2014-05-282-1/+45
| | | | | | | this is used by other weston modules, that are interested in content state of surfaces. Signed-off-by: Timo Lotterbach <timo.lotterbach@bmw-carit.de>
* If window is requsted by "Virtual keyboard", ivi_application surface is not ↵Nobuhiko Tanibata2014-05-201-2/+3
| | | | | | | | created. The positioning of it is done by ivi_shell directly without ivi_application surface. Signed-off-by: Nobuhiko Tanibata <NOBUHIKO_TANIBATA@xddp.denso.co.jp>
* Reference implementation of input panel for ivi-shell.Nobuhiko Tanibata2014-05-205-1/+424
| | | | | | The basement of this code is from input-panel.c of desktop shell. Signed-off-by: Nobuhiko Tanibata <NOBUHIKO_TANIBATA@xddp.denso.co.jp>
* ingnore data/wayland.pngNobuhiko Tanibata2014-05-201-1/+0
| | | | Change-Id: I2f74d8e7842c9cb481f7758e0412875c069926f4
* clients: modify example clients to support ivi-application.xmlNobuhiko Tanibata2014-05-204-39/+161
| | | | Signed-off-by: Nobuhiko Tanibata <NOBUHIKO_TANIBATA@xddp.denso.co.jp>
* ivi-shell: a reference of weston.ini for ivi-shell and ivi-hmi-controller.Nobuhiko Tanibata2014-05-202-3/+101
| | | | Signed-off-by: Nobuhiko Tanibata <NOBUHIKO_TANIBATA@xddp.denso.co.jp>
* data: add reference image files for weston-ivi-shell-user-interfaceNobuhiko Tanibata2014-05-2013-1/+13
| | | | Signed-off-by: Nobuhiko Tanibata <NOBUHIKO_TANIBATA@xddp.denso.co.jp>
* clients: a reference implementation of UI client how to use ivi-hmi-controller.Nobuhiko Tanibata2014-05-203-4/+1380
| | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* ivi-shell: a reference implementation how to use ivi-layout internal APIsNobuhiko Tanibata2014-05-205-26/+1971
| | | | | | | | | | | | | | | | | | | | | | | The library is used to manage layout of surfaces/layers. Layout change is triggered by ivi-hmi-controller protocol, ivi-hmi-controller.xml. A reference how to use the protocol, see hmi-controller-homescreen. In-Vehicle Infotainment system usually manage properties of surfaces/layers by only a central component which decide where surfaces/layers shall be. This reference show examples to implement the central component as a module of weston. Default Scene graph of UI is defined in hmi_controller_create. It consists of - In the bottom, a base layer to group surfaces of background, panel, and buttons - Next, a application layer to show application surfaces. - Workspace background layer to show a surface of background image. - Workspace layer to show launcher to launch application with icons. Paths to binary and icon are defined in weston.ini. The width of this layer is longer than the size of screen because a workspace has several pages and is controlled by motion of input. Signed-off-by: Nobuhiko Tanibata <NOBUHIKO_TANIBATA@xddp.denso.co.jp>
* protocol: ivi hmi controller protocol to set up IVI style UINobuhiko Tanibata2014-05-202-1/+98
| | | | | | | | | | | This protocol realizes following features, - UI ready - changing modes; tiling, side by side, full_screen, and random - Give control a surface; workspace to be controlled by using ivi layout APIs - Display/undisplay a surface; home contains sevaral workspaces to launch application Signed-off-by: Nobuhiko Tanibata <NOBUHIKO_TANIBATA@xddp.denso.co.jp>
* ivi-shell: add IVI layout APIsNobuhiko Tanibata2014-05-203-1/+3778
| | | | | | | | | | | | | | | | | | | | API set of controlling properties of surface and layer which groups surfaces. An unique ID whose type is integer is required to create surface and layer. With the unique ID, surface and layer are identified to control them. The API set consists of APIs to control properties of surface and layers about followings, - visibility. - opacity. - clipping (x,y,width,height). - position and size of it to be displayed. - orientation per 90 degree. - add or remove surfaces to a layer. - order of surfaces/layers in layer/screen to be displayed. - commit to apply property changes. - notifications of property change. Signed-off-by: Nobuhiko Tanibata <NOBUHIKO_TANIBATA@xddp.denso.co.jp>
* ivi-shell: add the shell plugin for In-Vehicle Infotainment systemNobuhiko Tanibata2014-05-195-0/+558
| | | | | | | | | | | | In-Vehicle Infotainment system traditionally manages surfaces with global identification. A protocol, ivi_application, supports such a feature by implementing a request, ivi_application::surface_creation defined in ivi_application.xml. The ivi-shell explicitly loads ivi-layout.so and a module to add business logic like how to layout surfaces by using ivi-layout APIs. Signed-off-by: Nobuhiko Tanibata <NOBUHIKO_TANIBATA@xddp.denso.co.jp>
* protocol: add interface ivi_application extensionNobuhiko Tanibata2014-05-192-1/+103
| | | | | | | | | | | ivi_applicatoin extension creates ivi_surface objects tied to a given wl_surface with a given id. The given id can be used in a shell to identify which application is assigned to a wl_surface and layout the surface wherever the shell wants. ivi_surface objects can be used to receive status of wl_surface in the scenegraph of the compositor. Signed-off-by: Nobuhiko Tanibata <NOBUHIKO_TANIBATA@xddp.denso.co.jp>
* README modifed for ivi-shellNobuhiko Tanibata2014-05-141-0/+17
|
* weston 1.4.93Nobuhiko Tanibata2014-05-1423-130/+270
|
* weston 1.4.92Nobuhiko Tanibata2014-05-0633-471/+1019
|
* 1.4.91Nobuhiko Tanibata2014-04-1993-1888/+8474
| | | | Change-Id: Ibfed4937c6083937d2b29154e0485c1caf8365a1
* Weston 1.4.0Nobuhiko Tanibata2014-01-2929-156/+496
|
* Weston 1.3.92Nobuhiko Tanibata2014-01-20114-6372/+14802
|
* Weston 1.3.1Nobuhiko Tanibata2013-12-05176-0/+76276