summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2017-11-13Remove the setenveel_4.99.3eel/4.99.34.99.3Yuta Doi1-11/+1
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>
2017-11-13Add debug message macros controlled by environment variableYuta Doi2-20/+101
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>
2017-11-10Remove unnecessary debug logKazumasa Mitsunari1-1/+0
Change-Id: I4cf29c7258958c8b0663a0d8ff8d3dd257867e4d Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
2017-11-10Remove unnecessary comments and variableYuta Doi1-5/+2
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>
2017-11-08Change requestSurface() to return surface_idYuta Doi1-1/+1
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>
2017-11-02Use a version for the libraryKazumasa Mitsunari1-0/+1
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>
2017-11-02Replace json_object_object_get() with json_object_object_get_ex()Yuta Doi1-14/+38
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>
2017-11-02Replace 'constexpr' with 'const char*'Yuta Doi2-4/+8
'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>
2017-11-01Modify the enum starting pointKazumasa Mitsunari1-1/+1
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>
2017-11-01Change parameter from char* to json_objectKazumasa Mitsunari2-47/+80
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>
2017-10-26Add library splitted from agl-service-windowmanagerKazumasa Mitsunari3-0/+626
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>