Age | Commit message (Collapse) | Author | Files | Lines |
|
This patch fixes the bug that application can't get
the screenUpdated and error events.
Bug-AGL: SPEC-1532
Change-Id: I260179916ea487faf761c40efc473ae415707050
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
|
|
Change-Id: I8c506bc85941bcae59835f7a5dc443cadab044fe
Signed-off-by: Yuta Doi <yuta-d@witz-inc.co.jp>
|
|
rename WindowManager APIs as follows:
- activateSurface -> activateWindow
- deactivateSurface -> deactivateWindow
The "surface" means information of display material frame buffer
anaged by Graphics Subsystem (Weston).
And the "window" means the right to draw on display.
The "surface" is physical information and used inside WindowManager.
So we think it is not good for "surface" to be included in API name.
These APIs provide the function
which is to activate/deactivate the right to draw for the applications.
So we change to "activateWindow/deactivateWindow".
We plan to delete the old API by GG.
Therefore the applications can use old APIs until GG,
but the warning "-Wdeprecated-declarations" is occured when compile.
After GG, old APIs can not be used.
If use it, the error is occured when compile.
Bug-AGL: SPEC-1565
Change-Id: I8a4aa5b8b43e1d90fe28964a41257b1947ab5174
Signed-off-by: Yuta Doi <yuta-d@witz-inc.co.jp>
|
|
This reverts commit 026af4256b9b69ffd52972d6da0cb394dff2b0e6.
The events should be only sent to each application, so revert this commits.
Use "screen_updated" instead.
Bug-AGL: SPEC-1532
Change-Id: I42ba2812a0b8b9f04614f6668c5b925f55111659
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
|
|
Add events
screen_updated
* emitted when the displayed application changed.
error
* emitted when a error happens after request is accepted.
Related commit:
https://gerrit.automotivelinux.org/gerrit/#/c/14761/
Change-Id: I3c91c053668490fe68e45121a34e1fae5cd403fc
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
|
|
Visible/Invisibile event which is sent to application from window
manager, becomes boardcasted in order that HomeScreen needs to
know which application becomes visibile.
Bug-AGL: SPEC-1214
Change-Id: Id168789f4eca9eea61fc8b671a9aeab2224694bf
Signed-off-by: zheng_wenlong <wenlong_zheng@nexty-ele.com>
|
|
getDisplayInfo() can get the display information as follows:
- width[pixel]
- height[pixel]
- width[mm]
- height[mm]
NOTE:
It uses wl_output::geometry() for getting physical width[mm] and height[mm] of the display,
but the value is different with measured value.
value from wl_output::geometry(): width:320 height:520
measured value : width:193 height:343
getAreaInfo() can get the information of area drawn by the application as follows:
- x-coordinate
- y-coordinate
- width
- height
The details are described in doc/ApplicationGuide.md in project apps/agl-service-windowmanager-2017.
Bug-AGL: SPEC-1087
Change-Id: Icee00af4ab210b056cc67c2868ef2c594da1dbe1
Signed-off-by: Yuta Doi <yuta-d@witz-inc.co.jp>
|
|
If window manager server returns fail(afb_req_fail) in requestSurface,
the illegal memory access to json object happens.
So fix not to access to the json object after using it in afb_wsj1_call_j.
Change-Id: I1f422851b6476187f104dcc27d05ba13094b52d6
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
|
|
To run XDG application on AGL HomeScreen/WindowManager,
a new binding API of WindowManager is added.
This api is used only by AGL XDG-Launcher and
all xdg applications should be packed as wgt compatible
to AGL Application framework.
Bug-AGL: SPEC-1096
Change-Id: Iea43c65ce03a352773c47e125490990f32dc9695
Signed-off-by: Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com>
|
|
When the websocket connection to Window Manager is disconnected
due to some reason, libwindowmanager calls exit(1).
Remove this not to kill applications suddenly.
Change-Id: Ibab1600de0e6ea52ec7858fedcdff5a26cde4ab3
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
|
|
The setenv process which sets surface_id to QT_IVI_SURFACE_ID
depends on Qt, so it is removed.
The setenv process was moved to qlibwindowmanager.
Change-Id: I8ed6d25beb6638836fd7d54e5bf722ed14a246bc
Signed-off-by: Yuta Doi <yuta-d@witz-inc.co.jp>
|
|
Add a HMI_DEBUG macro to print debug messages.
It is controlled by the USE_HMI_DEBUG environment variable.
Change-Id: I0cdf0069f67f561156c0f78ff322984733091002
Signed-off-by: Yuta Doi <yuta-d@witz-inc.co.jp>
|
|
Change-Id: I4cf29c7258958c8b0663a0d8ff8d3dd257867e4d
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
|
|
Remove the comments and variable
which are unnecessary and unused already.
Change-Id: Id376c1d4a3b6968fed7050662fa5d42b7026bb34
Signed-off-by: Yuta Doi <yuta-d@witz-inc.co.jp>
|
|
libwindowmanager set surface_id to QT_IVI_SURFACE_ID for now,
but the process will be removed in the future because it depends on Qt.
So requestSurface() is changed to return surface_id.
If requestSurface() occurs errors, negative value is returned.
It is necessary to use return value of requestSurface() for the applications.
Change-Id: Ice2a5fe152a3957f0132e0358ebd8a535bdfa7ce
Signed-off-by: Yuta Doi <yuta-d@witz-inc.co.jp>
|
|
* changes:
Use a version for the library
Replace json_object_object_get() with json_object_object_get_ex()
Replace 'constexpr' with 'const char*'
|
|
To prevent bitbake package_qa issue, adding version is necessary.
So I added a version number of 0.1.0.
Bug-AGL : SPEC-1000
Change-Id: Ic7a22fe04cdab3d323ca75f9292a09ec29fd6d07
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
|
|
json_object_object_get() is deprecated so it causes compile warning.
Change-Id: Id43c3e098a58bd9a1a20e9fb55bc194babd6f48d
Signed-off-by: Yuta Doi <yuta-d@witz-inc.co.jp>
|
|
'constexpr' causes the warning [-Wwrite-strings].
So replace 'constexpr' with 'const char*'.
Change-Id: I03e2c7b53e4db6cb5b804c66cb88ae15e2387eb8
Signed-off-by: Yuta Doi <yuta-d@witz-inc.co.jp>
|
|
|
|
Since libwindowmanager is split from agl-service-windowmanager-2017,
I think the package configuration file should use the same name
as the library, so change the file name to libwindowmanager.pc.
Change-Id: I08ec3a133edfb689b0b44bba4e11f9f222bfb2ff
Signed-off-by: Yuta Doi <yuta-d@witz-inc.co.jp>
|
|
|
|
|
|
wayland-client is not used in this library
(used in binder agl-service-windowmanager-2017)
Bug-AGL: SPEC-1000
Change-Id: I5d5f0cafa79a09e9b34b1d81708c860b4c07a269
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
|
|
Change-Id: I96f99de7b5854066691897cdf838f73d3bea0276
Signed-off-by: Yuta Doi <yuta-d@witz-inc.co.jp>
|
|
The windowmanager server treats the event list as a vector,
thus it numbers the events starting from 0.
Likewise we need to change the eventlist to start from 0 in this library.
Related commit : https://gerrit.automotivelinux.org/gerrit/#/c/11481/
Bug-AGL: SPEC-987
Change-Id: I72a36033191b0a43fc8ab6923e2897715d02bcbd
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
|
|
For future extensibility, change the argument parameter to json_object
Bug-AGL: SPEC-990
Conflicts:
src/libwindowmanager.cpp
Change-Id: I7015fe26d22489f250b67907870d2863d1e8158b
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
|
|
Related commit : https://gerrit.automotivelinux.org/gerrit/#/c/11451/
[Patch Sets 2]
- Remove doc/* because these documents are integtrated
to agl-service-windowmanager-2017.
https://gerrit.automotivelinux.org/gerrit/#/c/11507/1
- Modify the function comments to doxygen format.
Bug-AGL : SPEC-993
Change-Id: Id82ee513e06f0c12eba044b8d42d8dde68063168
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
|
|
|