summaryrefslogtreecommitdiff
path: root/src/ug.c
AgeCommit message (Collapse)AuthorFilesLines
2016-07-12Add comment for excluding from coverage testsubmit/tizen_mobile/20160713.013202submit/tizen/20160712.090432accepted/tizen/wearable/20160712.132219accepted/tizen/tv/20160712.132204accepted/tizen/mobile/20160713.013332accepted/tizen/ivi/20160712.132243accepted/tizen/common/20160713.050603Semun Lee1-0/+5
Change-Id: I5471a94dc7ce748b04c57661f2aae591abbc3075 Signed-off-by: Semun Lee <sm79.lee@samsung.com>
2016-07-08Fix wrong return value of ug_is_installedsubmit/tizen/20160708.025112accepted/tizen/wearable/20160708.033350accepted/tizen/tv/20160708.033304accepted/tizen/mobile/20160708.033233accepted/tizen/ivi/20160708.033409accepted/tizen/common/20160708.140707Semun Lee1-1/+1
Change-Id: I571412e60fde3c9217e245543d47f7329a38e0e9 Signed-off-by: Semun Lee <sm79.lee@samsung.com>
2016-07-07Fix crash of ug-client appssubmit/tizen/20160707.122156accepted/tizen/wearable/20160707.225137accepted/tizen/tv/20160707.225121accepted/tizen/mobile/20160707.225105accepted/tizen/ivi/20160707.225154accepted/tizen/common/20160707.172213Semun Lee1-1/+10
dlopen ug shared library file again to prevent crash while terminating app. In some case, unloaded memory could be accessed by other libaries clean up routine. Fix double free of ad.name Change-Id: I612c318ccb798d76a0ac8b77ab8f23dbe2b1e974 Signed-off-by: Semun Lee <sm79.lee@samsung.com>
2016-06-17sync prototype of ug_init with tizen_2.4submit/tizen/20160616.235341accepted/tizen/wearable/20160617.083923accepted/tizen/tv/20160617.083613accepted/tizen/mobile/20160617.083840accepted/tizen/ivi/20160617.083720accepted/tizen/common/20160620.163206Jiwoong Im1-3/+3
Change-Id: I3b035883b8245e72a52dcf4de73efa8f9ffdcb92 Signed-off-by: Jiwoong Im <jiwoong.im@samsung.com>
2016-06-16fix abi issueJiwoong Im1-1/+6
Change-Id: Idc9ca564c61f2f6278c93e950d3163c83391274c Signed-off-by: Jiwoong Im <jiwoong.im@samsung.com>
2016-06-08add null check in ug_disable_effectsubmit/tizen/20160608.045259accepted/tizen/wearable/20160609.090138accepted/tizen/tv/20160609.090223accepted/tizen/mobile/20160609.090120accepted/tizen/ivi/20160609.090150accepted/tizen/common/20160610.175824Jiwoong Im1-0/+4
Change-Id: I468e972f1fd82f2055656f0496e65d29b5d6c346 Signed-off-by: Jiwoong Im <jiwoong.im@samsung.com>
2016-04-04add missing internal api from tizen 2.4Jiwoong Im1-0/+34
- int ugman_resume_ug() int ugman_pause_ug() int ugman_create_cb() Change-Id: I76f13d7f6567e50b46ad159f0f5c8603f4e46e77 Signed-off-by: Jiwoong Im <jiwoong.im@samsung.com>
2015-12-09Apply tizen coding rulesJiwoong Im1-3/+2
Change-Id: I2169875f3d6252c2b992194fd2ed1ad20079a601 Signed-off-by: Jiwoong Im <jiwoong.im@samsung.com>
2015-11-09replace service to app_controlsubmit/tizen/20151109.102049submit/tizen/20151109.081437submit/tizen/20151109.081121accepted/tizen/wearable/20151109.233930accepted/tizen/tv/20151109.233909accepted/tizen/mobile/20151109.233856Jiwoong Im1-21/+21
Change-Id: Ib50b5c5e057f570e2bbd656dd4437d4b3eb8c4bd Signed-off-by: Jiwoong Im <jiwoong.im@samsung.com>
2015-06-30replace WAYLAND DEFINITION to UG_WAYLANDsubmit/tizen/20150702.004900accepted/tizen/wearable/20150702.105021accepted/tizen/tv/20150702.105007accepted/tizen/mobile/20150702.104953Jiwoong Im1-1/+1
Change-Id: I2580de7cfc88dbe54824863a7554774b6d9d627f Signed-off-by: Jiwoong Im <jiwoong.im@samsung.com>
2015-05-11add codes to support wayland profile.submit/tizen/20150511.111505accepted/tizen/wearable/20150511.132837accepted/tizen/tv/20150512.050609accepted/tizen/mobile/20150512.024300accepted/tizen/common/20150511.125855Jiwoong Im1-0/+10
Add ugman_init and ug_init for wayland profile to failure in UG_INIT_EFL Jira ticket : TC-2507 Change-Id: I0f787e50ac25fb18cb2bb38880fd12bf7ca5f8b8 Signed-off-by: Jiwoong Im <jiwoong.im@samsung.com>
2014-03-07Apps should not require ecore_x.Fabio Mello1-0/+15
The current UG_INIT_EFL() macro forces the applications who uses it to depend on ecore_x. This patch uses a higher level of abstraction in this macro, this approach lets ui-gadget-1 handle the display server without expose this to its dependents. Signed-off-by: Leandro Dorileo <leandro.maciel.dorileo@intel.com> Signed-off-by: Fabio Mello <fabio.mello@intel.com> Conflicts: CMakeLists.txt Change-Id: I9a1683df1ee64b2d997b0edfedc6bfc695aed9e7
2014-01-08init wayland supportsubmit/tizen/20140110.215645accepted/tizen/mobile/20140113.182040accepted/tizen/ivi/20140110.224049accepted/tizen/generic/20140114.145758accepted/tizen/mobileLi,Limin1-0/+2
The display server based on X or Wayland, is now a choice of different profile in Tizen 3.0. Basically and consistently, two macros were used "with wayland" and "with x". Below summarize the combination of the macros: | wayland | x | meaning |--------------------------- | 0 | 1 | pure X11 platform(no wayland) | 1 | 0 | pure wayland platform (no X11) | 1 | 1 | wayland but X compatibility | 0 | 0 | no X and no wayland This method unifies the meaning and usage. Deploy this method to ui-gadget package. Signed-off-by: Li,Limin <liminx.li@intel.com> Change-Id: Iceb95b03f824860b2aac74f35c0945380f6cc22a
2013-04-19add ug_send_result_full api for appcontrol ugHyungdeuk Kim1-8/+45
2013-04-12remve window profile changed cb for desktop modeHyungdeuk Kim1-0/+10
2013-03-16merge with masterJinkun Jang1-1/+1
2013-03-13Tizen 2.1 baseJinkun Jang1-0/+283