aboutsummaryrefslogtreecommitdiffstats
path: root/src/hs-clientmanager.cpp
AgeCommit message (Collapse)AuthorFilesLines
2019-06-20fix segmentation fault errorwang_zhiqiang1-79/+11
Change-Id: I3d1124980e10e6f265660226fc9a0749f832a4ff
2019-06-20set area in showWindowwang_zhiqiang1-1/+6
Change-Id: If5a8addaa7ee3827463d3ed030d05577a7d90ffe
2019-06-03merge vuiwang_zhiqiang1-8/+125
Change-Id: I64a1bb68ea3e2b772a40eb78d316c54f8ed25de8
2019-05-20fix handshake bugwang_zhiqiang1-1/+1
Change-Id: I28af770a9f8d5ac63209038ca5939a2aab0bc318
2019-05-09start launcher and lastmode after homescreen startedwang_zhiqiang1-5/+5
Change-Id: I7f6c6d74d5d5c1686dc216bcff3175281b3c1494
2019-04-28fix bugwang_zhiqiang1-2/+9
Change-Id: I0e8b6f58bb2051a17723d19d93e07820650a03a2
2019-04-24send showWindow event when app start overwang_zhiqiang1-1/+24
Change-Id: I2ced5f48f0c377cdc4261b5bb19ac6f9c40760ea
2019-04-23add lastmode functionwang_zhiqiang1-16/+2
Change-Id: I4b7ca96d1333d170c211b420d79ea9a4d3e1272a
2019-04-22change hs_recoerwang_zhiqiang1-5/+2
Change-Id: Iadfa3cafbde7df1faa06234c4633832819280bdd
2019-04-19recover applicationwang_zhiqiang1-1/+20
Change-Id: I02330f9c9336609ce585ab172211acada68fba9c
2019-03-26Change log macro to AFB_XXXwang_zhiqiang1-8/+9
1. using binder log macro instead of HMI_LOG. 2. unify log using level as below: AFB_ERROR: fatal error or serious error may occur. AFB_WARNING: input parameter error or not serious error. AFB_NOTICE: alert sth. AFB_INFO: print input argument or sth else. AFB_DEBUG: prompt for calling location. 3. delete hmi-debug.h. Change-Id: I203864ced39c418d2f792faa50ab2c009deb9d02 Signed-off-by: wang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>
2019-03-25Start app and get runnables list by homescreenwang_zhiqiang1-1/+37
1.start application in showWindow. 2.add "getRunnables" verb. 3.handle "application-list-changed" event from afm-main and add "application-list-changed" event. Bug-AGL: SPEC-2188 Change-Id: I619b97424d20af373a945ff502a8133339916923 Signed-off-by: wang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>
2019-01-16Improve homescreen-servicewang_zhiqiang1-290/+22
1.Improve class cohesion and reduce public interface number 2.Unified event pattern BUG-AGL: SPEC-2120 Change-Id: I4c5066be2deaf2b809af66cb5a8acdc5bffa5a23 Signed-off-by: wang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>
2018-11-28fix issue,not free stringguppy_6.99.2guppy/6.99.26.99.2wang_zhiqiang1-4/+12
After called afb_req_get_application_id api needed to free the string. Change-Id: Ia59a3f4984854d61f4c5a8d9206f44988594ebf3 Signed-off-by: wang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>
2018-11-14add new features in homescreen-service and homescreenwang_zhiqiang1-0/+146
homescreen-service: add five verbs. 1.showWindow: instead of tap_shortcut and show onscreen. 2.hideWindow: used when want to hide onscreen. 3.replyShowWindow: used when post onscreen reply information to application. 4.showNotification: used by application who want to display notification on homescreen top area. 5.showInformation: used by application who want to display information on homescreen botton area. homescreen: 1.add fullscreen transfer button. 2.display notification and information. Bug-AGL: SPEC-1931 Change-Id: I612e541243ee6502eb90ff1aa2ab4d99bfbc7156 Signed-off-by: wang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>
2018-11-06use appid instead of appname in "tap_shortcut"wang_zhiqiang1-8/+3
Now In homescreen-service used application_id to identify different application, so use appid instead of appname in "tap_shortcut" parameter. Bug-AGL: SPEC-1764 Change-Id: I8493331f37977a30d6d88c0d222da4c2db32e727 Signed-off-by: wang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>
2018-10-30Improve HS_ClientManager and fix issuewang_zhiqiang1-68/+165
1.No longer operate HS_Client in homescreen.cpp,move to HS_ClientManager class. 2.In hs_client.cpp,afb_event_push return the count of clients that received the event, not push event result, in tap_shortcut/on_screen_message/on_screen_reply directly return zero. Bug-AGL: SPEC-1764 Change-Id: Ief17d3fe3a9c80937fbda05d1c158eeed3924a75 Signed-off-by: wang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>
2018-10-23Migration to binding V3wang_zhiqiang1-3/+3
migration homescreen-service from v2 to v3 Change-Id: I5e6d42c3dff528e46d0ca407e09eb1d05bacea80 Signed-off-by: wang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>
2018-10-17emit event to one applicationwang_zhiqiang1-0/+219
changed agl-service-homescreen and libhomescreen to make agl-service-homescreen emit event to one application only. BUG-AGL: SPEC-1764 Change-Id: I87e4fc8fe900fdf9d7fde04852077c7174b8a3ba Signed-off-by: wang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>