platform/core/uifw/dali-adaptor.git
3 years ago[Tizen] Add web-view APIs 15/252915/1 tizen_5.5_tv
huayong.xu [Tue, 5 Jan 2021 07:00:51 +0000 (15:00 +0800)]
[Tizen] Add web-view APIs

* Some APIs related to scroll are supported.
* Set focus for web engine.
* Construct with program arguments.

Change-Id: I945b93ae802b6aca5f8fc3e1995a5af27023bdfc

3 years ago[Tizen] Check if mGraphics is valid 18/237018/2
Heeyong Song [Tue, 12 May 2020 05:26:44 +0000 (14:26 +0900)]
[Tizen] Check if mGraphics is valid

Change-Id: Idc8ffbfa10edb25f6d6779134e6b40c672fc6741

4 years ago[Tizen] Update window geometry information 31/230831/1
Wonsik Jung [Tue, 14 Apr 2020 11:46:54 +0000 (20:46 +0900)]
[Tizen] Update window geometry information

When window is resized/repostion then hidden.
The changed is not updated.
Because wayland protocol is disconnected.
This patch is to fix this issue.

Change-Id: I30abccbada168b56bed023126dc19c2a732a108d

4 years ago[Tizen] Fix SVACE issue 20/228420/1
Heeyong Song [Mon, 23 Mar 2020 03:51:05 +0000 (12:51 +0900)]
[Tizen] Fix SVACE issue

Change-Id: I10cf654c7c003b0359bb95198ac14fe0697f8139

4 years ago[Tizen] Fix a surface resize issue 40/227140/1
Heeyong Song [Tue, 10 Mar 2020 04:03:18 +0000 (13:03 +0900)]
[Tizen] Fix a surface resize issue

The thread controller will wait for the response that the surface is resized in the updated thread.
But the message may be processed right after ProcessCoreEvents().
If it is processed before calling to mThreadController->ResizeSurface(), the thread controll will wait for the response forever.

So I've changed to call to mThreadController->ResizeSurface() before ProcessCoreEvents().

Change-Id: Id7d4e2a801c1d2fc8d4992676ae2b673eeb8baf0

4 years ago[Tizen] Add log for rendering in the paused state 45/226245/1
Heeyong Song [Fri, 28 Feb 2020 03:30:48 +0000 (12:30 +0900)]
[Tizen] Add log for rendering in the paused state

Change-Id: I09d81ec6830f9e7034a17af32939b281354f4f2d

4 years ago[Tizen] Add logs for file loading failure 61/224661/1
Heeyong Song [Wed, 12 Feb 2020 06:12:48 +0000 (15:12 +0900)]
[Tizen] Add logs for file loading failure

Change-Id: Ib73d19b3b87456d591061207833c3c1daa408610

4 years ago[Tizen] Force update for window rotation 65/224565/1
Wonsik Jung [Tue, 11 Feb 2020 12:38:33 +0000 (21:38 +0900)]
[Tizen] Force update for window rotation

If window rotation event occurs, rotaiont ack should be commited to window server,
although the rotation event's angle is same with current.
This patch is for that.

Change-Id: I430885967bb4f213e3111f90d80cc4d7aafaa1d6

4 years agoMerge "[Tizen] Fix window rotation sync issue for mulit window" into tizen_5.5_tv
Wonsik Jung [Wed, 5 Feb 2020 06:08:22 +0000 (06:08 +0000)]
Merge "[Tizen] Fix window rotation sync issue for mulit window" into tizen_5.5_tv

4 years ago[Tizen] Fix window rotation sync issue for mulit window 18/223918/2
Wonsik Jung [Wed, 5 Feb 2020 04:48:42 +0000 (13:48 +0900)]
[Tizen] Fix window rotation sync issue for mulit window

Fix window rotation sync issue for multi window
Rotation_done_send() should be called after eglSwapbuffers.
For the sync, this patch has the connection of thread controller's lock.

Change-Id: I4595f20485b30d1bee9b2d8f37efa8ce570096c3

4 years ago[Tizen] To prevent reset of default RenderTask's framebuffer. 24/223924/1
Seungho, Baek [Wed, 5 Feb 2020 04:44:07 +0000 (13:44 +0900)]
[Tizen] To prevent reset of default RenderTask's framebuffer.

Change-Id: I834583a4088013d8f3634bfb6a85e792b6997fe6
Signed-off-by: Seungho, Baek <sbsh.baek@samsung.com>
4 years ago[Tizen] Fix sync issue about window rotation 52/223852/1
Wonsik Jung [Tue, 4 Feb 2020 08:44:16 +0000 (17:44 +0900)]
[Tizen] Fix sync issue about window rotation

Fix sync issue window rotation.
Window_rotation_done_send should be called before eglSwapBuffers.
Window_rotation_done_send is called in event thread and eglSwapBuffers is called in render thread.
Basically the logic is designed for that, but, sync issue occurs.
This patch is to fix sync issue.

Change-Id: I8da17fdc9cd970502fb8f272e2193d2e3b4a7a66

4 years ago[Tizen] Modify window rotation log 11/223811/1
Wonsik Jung [Mon, 3 Feb 2020 05:27:02 +0000 (14:27 +0900)]
[Tizen] Modify window rotation log

The log of window rotaton is modified for Rotation done.

Change-Id: I0dc358124609e75d2862b6b93781b35c778cf8f4

4 years ago[Tizen] change from system_settings_set_changed_cb to system_settings_add_changed_cb. 10/223810/1
Joogab Yun [Wed, 29 Jan 2020 02:19:01 +0000 (11:19 +0900)]
[Tizen] change from system_settings_set_changed_cb to system_settings_add_changed_cb.
because system_settings_set_changed_cb can only register one callback per process.
If other app registers the system_settings_set_changed_cb callback, DALi cannot use this callback.

Change-Id: Ia1af0daaf8fd95106bb50cc10e64e4d2d90e7ba7

4 years ago[Tizen](Vector) Ignore one frame 09/223809/1
Heeyong Song [Thu, 30 Jan 2020 04:43:26 +0000 (13:43 +0900)]
[Tizen](Vector) Ignore one frame

An empty texture may be rendered if all frames are ignore.

Change-Id: Ib36b5ec84a09950a3dd7320fd8edbf60ae4463d6

4 years ago[Tizen] system_settings_set_changed_cb can only register one callback per process. 08/223808/1
Joogab Yun [Thu, 23 Jan 2020 10:00:14 +0000 (19:00 +0900)]
[Tizen] system_settings_set_changed_cb can only register one callback per process.
If other app registers the system_settings_set_changed_cb callback, DALi cannot use this callback.
So I changed to the way using vconf.

Change-Id: I5e4a100fbb4f13164393ef0973b80c834a8000e5

4 years ago[Tizen] Temporarily modified so that window is no null 10/223010/1 accepted/tizen/5.5/unified/20200128.122310 submit/tizen_5.5/20200123.060916
Sunghyun kim [Wed, 22 Jan 2020 02:38:25 +0000 (11:38 +0900)]
[Tizen] Temporarily modified so that window is no null

Change-Id: I0003f10466fe58e3b1fd059a24491f6ce4958e5d

4 years ago[Tizen]Apply multi Instance for widget 86/222986/1
Sunghyun kim [Wed, 22 Jan 2020 02:16:42 +0000 (11:16 +0900)]
[Tizen]Apply multi Instance for widget

Change-Id: If676925fefc5bd28d9fd3fd147ba19e51760bbe1

4 years agoAdd api for get the internal media player handle of the video player
Joogab Yun [Mon, 13 Jan 2020 08:18:17 +0000 (17:18 +0900)]
Add api for get the internal media player handle of the video player

Change-Id: Ib5fc46a650e189ca35f510d61f0f107835448374

4 years agoSetSource() is called multiple times at the same time when playing multiple Videos.
Joogab Yun [Mon, 20 Jan 2020 08:04:51 +0000 (17:04 +0900)]
SetSource() is called multiple times at the same time when playing multiple Videos.
At the same time, mTbmSurface may not sync when PrepareTexture() is executed.

So I add a mutex lock, and valid check

Change-Id: I807a9bee58fa920879bbdfa1867325c43e9f7730

4 years ago[Tizen] Fix window cast crash issue 05/222805/2 accepted/tizen/5.5/unified/20200121.041227 submit/tizen_5.5/20200120.082613
Seungho, Baek [Mon, 20 Jan 2020 07:34:04 +0000 (16:34 +0900)]
[Tizen] Fix window cast crash issue

Change-Id: I01eb0052ab6dc1b41617c38f051515cd80198293
Signed-off-by: Seungho, Baek <sbsh.baek@samsung.com>
4 years agoWhen set to italic, some text ends cut off.
Joogab Yun [Thu, 16 Jan 2020 05:53:37 +0000 (14:53 +0900)]
When set to italic, some text ends cut off.
Run the sample below and then look at 'I', 'J', 'N' text.
These letters in the upper right corner are cut off.
So I adjuct the widthOut value.

sample)
    Dali::Property::Map fontStyleMapSet;
    fontStyleMapSet.Insert( "slant", "italic" );
    TextLabel textLabelN = TextLabel::New( "ABCDEFGHIJKLMN\nOPQRSTUVWXYZ" );
    textLabelN.SetAnchorPoint( AnchorPoint::TOP_LEFT );
    textLabelN.SetProperty(TextLabel::Property::POINT_SIZE, 18.f);
    textLabelN.SetPosition(100.f, 400.f);
    textLabelN.SetProperty(TextLabel::Property::MULTI_LINE, true);
    textLabelN.SetProperty( TextLabel::Property::FONT_STYLE, fontStyleMapSet );
    stage.Add( textLabelN );

Change-Id: I95429189350546169ea4de2fb6f58f2a480324cb

4 years ago[Tizen](Vector) Change to call dlopen and dlclose once 92/222592/1
Heeyong Song [Thu, 16 Jan 2020 09:46:26 +0000 (18:46 +0900)]
[Tizen](Vector) Change to call dlopen and dlclose once

Change-Id: I4e1eeabf8a00ea0d01cb96dbe6f78d6103c349dd

4 years ago[Tizen] Adjust tbm surface queue sequence 55/222455/2
Wonsik Jung [Wed, 15 Jan 2020 06:28:21 +0000 (15:28 +0900)]
[Tizen] Adjust tbm surface queue sequence

Adjust tbm surface queue sequence to reduece memory consumption

Change-Id: Ib708348e08b5cd0d8d552804615dbab158a13900

4 years agoRevert "[Tizen] Idler hotfix using small size counter" 32/222232/1
Dongsug Song [Sat, 11 Jan 2020 06:30:23 +0000 (15:30 +0900)]
Revert "[Tizen] Idler hotfix using small size  counter"

- This error caused by the wrong access of worker thread in application.
- NUI's all contexts (object creation, property set/get, timer use, and etc) must be configured and accessed only on main thread.

This reverts commit 26305f0c1b02ac8f0f23a1650caf535f6c3f528f.

Change-Id: I548b0585be5f39c653daf2d61c7af6340d1a533d

4 years ago[Tizen] Idler hotfix using small size counter 99/222199/1
Seungho, Baek [Fri, 10 Jan 2020 09:39:00 +0000 (18:39 +0900)]
[Tizen] Idler hotfix using small size  counter

Change-Id: Ice8b7eb793f821e0e0084eb0ed08751edc1dab08
Signed-off-by: Seungho, Baek <sbsh.baek@samsung.com>
4 years ago[Tizen] revert hotfix of Idler issue 96/222196/1
Seungho, Baek [Fri, 10 Jan 2020 09:30:36 +0000 (18:30 +0900)]
[Tizen] revert hotfix of Idler issue

Change-Id: I52440875b7cf44a75079903fe8d0954e0ca907c4
Signed-off-by: Seungho, Baek <sbsh.baek@samsung.com>
4 years ago[Tizen] Idler log fix 71/222171/1
Seungho, Baek [Fri, 10 Jan 2020 05:44:20 +0000 (14:44 +0900)]
[Tizen] Idler log fix

Change-Id: Iddfe725b34dd54bc3fe9770e9f6b5df83e799ecb
Signed-off-by: Seungho, Baek <sbsh.baek@samsung.com>
4 years ago[Tizen] Remove logs of Idler Hotfix 24/222124/1
Seungho, Baek [Fri, 10 Jan 2020 02:15:25 +0000 (11:15 +0900)]
[Tizen] Remove logs of Idler Hotfix

Change-Id: Ia796d00e5729b2a5392192a083b098de149d3817
Signed-off-by: Seungho, Baek <sbsh.baek@samsung.com>
4 years ago[Tizen] HOT Fix : IdleEnterer 19/222119/1
Joogab Yun [Thu, 9 Jan 2020 15:07:47 +0000 (00:07 +0900)]
[Tizen] HOT Fix :  IdleEnterer

Change-Id: I84edbddbd48a7039f9f414a703a5aeafb0f09988

4 years ago[Tizen] Add Component Application Structure 52/221852/3
huiyu.eun [Mon, 25 Nov 2019 08:58:43 +0000 (17:58 +0900)]
[Tizen] Add Component Application Structure

Change-Id: I48a877fe10eccaccddb4e28f262637f809f9394f
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
4 years ago[Tizen](Vector) Add a method to ignore rendered frames 94/221194/1 accepted/tizen/5.5/unified/20200102.110128 submit/tizen_5.5/20200102.004531
Heeyong Song [Mon, 30 Dec 2019 05:13:47 +0000 (14:13 +0900)]
[Tizen](Vector) Add a method to ignore rendered frames

Change-Id: I6f8fdcb4a913e3439b45c13def5f6570a82dda74

4 years ago[Tizen] Add a method to NativeImageSourceQueue 93/221193/1
Heeyong Song [Mon, 30 Dec 2019 05:11:18 +0000 (14:11 +0900)]
[Tizen] Add a method to NativeImageSourceQueue

There is a case not to show images which are enqueued previously.
So added a method to ignore source buffers

Change-Id: I571af6aff235955d441eef644300033d888003f5

4 years agoRevert "(ATSPI) Add ATSPI for Say(), Pause(), Resume(), SetForcefully(), GetStatus()" accepted/tizen/5.5/unified/20200102.013926 submit/tizen_5.5/20191227.100026 submit/tizen_5.5/20191230.003219
Joogab Yun [Fri, 27 Dec 2019 09:58:54 +0000 (18:58 +0900)]
Revert "(ATSPI) Add ATSPI for Say(), Pause(), Resume(), SetForcefully(), GetStatus()"

This reverts commit 3f5d7ca8e48406934b95f2857a82d802e38cfde4.

Change-Id: Ie851b54dbf1a594f61409f00217eebbfb3e26d35

4 years agoMerge "[Tizen] Add an environment variable for long press gesture" into tizen_5.5
JIYUN YANG [Fri, 27 Dec 2019 09:28:18 +0000 (09:28 +0000)]
Merge "[Tizen] Add an environment variable for long press gesture" into tizen_5.5

4 years agoMerge "[Tizen] Add more Preedit styles" into tizen_5.5
Seoyeon Kim [Fri, 27 Dec 2019 09:14:44 +0000 (09:14 +0000)]
Merge "[Tizen] Add more Preedit styles" into tizen_5.5

4 years agoRevert "Apply multi Instance for widget"
Joogab Yun [Fri, 27 Dec 2019 09:18:02 +0000 (18:18 +0900)]
Revert "Apply multi Instance for widget"

This reverts commit 947dcbb602f1e15b8ca06db9c480228ba9bfed4d.

4 years ago[Tizen] Add an environment variable for long press gesture 31/221131/1
Jiyun Yang [Fri, 20 Dec 2019 06:56:45 +0000 (15:56 +0900)]
[Tizen] Add an environment variable for long press gesture

DALI_LONG_PRESS_MINIMUM_HOLDING_TIME
The minimum holding time required to be recognized as a long press gesture

Change-Id: Idc9f62b4c2096564c37fb089c86815ec6433e3e6
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
4 years ago[Tizen] Add DownloadRemoteFileIntoMemory function
Joogab Yun [Fri, 27 Dec 2019 08:33:40 +0000 (17:33 +0900)]
[Tizen] Add DownloadRemoteFileIntoMemory function

This reverts commit ec5487e60df11121950c595142a6ac8988c2f05f.

Change-Id: I00f92d7d9870312fdb1ee31d0ea939f192e05935

4 years ago[Tizen] Fix Window-rotation's bugs
Joogab Yun [Fri, 27 Dec 2019 08:32:55 +0000 (17:32 +0900)]
[Tizen] Fix Window-rotation's bugs

This reverts commit c9fdc04662f0120c05fe5ad231096135075cdef2.

Change-Id: I3163f4205786b58136144912b2110e93af3ff563

4 years ago[Tizen] Add DALi Autofill implementation
Joogab Yun [Fri, 27 Dec 2019 08:32:41 +0000 (17:32 +0900)]
[Tizen] Add DALi Autofill implementation

This reverts commit e7a5d642d7587a84d751431a3daf641e8b6d2637.

Change-Id: I383d92fb4146415f2b4b5fb1fc20bc6e6befc01e

4 years ago[Tizen] Implement partial update
Joogab Yun [Fri, 27 Dec 2019 08:31:14 +0000 (17:31 +0900)]
[Tizen] Implement partial update

This reverts commit 124a0de1b6cd571584e78620e39b545351dbaef3.

Change-Id: Idd4b5a951739da6a7f39bc03b66db32d900451c5

4 years ago[Tizen] Add screen and client rotation itself function
Joogab Yun [Fri, 27 Dec 2019 08:30:59 +0000 (17:30 +0900)]
[Tizen] Add screen and client rotation itself function

This reverts commit 017b09d14615abd1910ed2aeb8a551c136571b95.

Change-Id: I6239eae5cf1c4fa61151397edec086d9b418cbde

4 years agoMerge branch 'devel/master' into tizen_5.5
Joogab Yun [Fri, 27 Dec 2019 08:30:47 +0000 (17:30 +0900)]
Merge branch 'devel/master' into tizen_5.5

4 years agoRevert "[Tizen] Add screen and client rotation itself function"
Joogab Yun [Fri, 27 Dec 2019 08:30:17 +0000 (17:30 +0900)]
Revert "[Tizen] Add screen and client rotation itself function"

This reverts commit 758e973caa65c59644ab284e54711f9f0f54ac82.

4 years agoRevert "[Tizen] Implement partial update"
Joogab Yun [Fri, 27 Dec 2019 08:30:13 +0000 (17:30 +0900)]
Revert "[Tizen] Implement partial update"

This reverts commit b503f3ce9f4079c2a5a617002406cbcfd47d58fb.

4 years agoRevert "[Tizen] Add DALi Autofill implementation"
Joogab Yun [Fri, 27 Dec 2019 08:30:11 +0000 (17:30 +0900)]
Revert "[Tizen] Add DALi Autofill implementation"

This reverts commit 957a7a7ad8dbba2a7a06496386eaebc2547ef9af.

4 years agoRevert "[Tizen] Fix Window-rotation's bugs"
Joogab Yun [Fri, 27 Dec 2019 08:30:07 +0000 (17:30 +0900)]
Revert "[Tizen] Fix Window-rotation's bugs"

This reverts commit aab7307b09db8231e74f1412eb3cbabb95aa257c.

4 years agoRevert "[Tizen] Initialize mPaused"
Joogab Yun [Fri, 27 Dec 2019 08:30:04 +0000 (17:30 +0900)]
Revert "[Tizen] Initialize mPaused"

This reverts commit fa7eac187f16553c5d696720d13205942ef80b7c.

4 years agoRevert "[Tizen] Add DownloadRemoteFileIntoMemory function"
Joogab Yun [Fri, 27 Dec 2019 08:29:49 +0000 (17:29 +0900)]
Revert "[Tizen] Add DownloadRemoteFileIntoMemory function"

This reverts commit 240419948efd34ee9c60370d8495296c2a25d884.

4 years ago[Tizen] Add more Preedit styles 23/221123/1
Seoyeon Kim [Mon, 16 Dec 2019 05:20:59 +0000 (14:20 +0900)]
[Tizen] Add more Preedit styles

- Add more preedit styles for substring : SUB4, SUB5, SUB6, and SUB7.
- The preedit type is NONE, SUB1 ~ SUB7.
   But, DALi changed the name exactly, such as 'UNDERLINE' instead of 'SUB1' and
  'REVERSE' instead of 'SUB2'.
  SUB4 ~ 7 are just to draw the text in underline with various background color.

- The index received from imf is a byte. So it should be converted to character index.

Change-Id: Iea64e1bfc27ff291cee592c839013171df75d31c
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
4 years agoMerge "Apply multi Instance for widget" into devel/master
sunghyun kim [Fri, 27 Dec 2019 04:03:57 +0000 (04:03 +0000)]
Merge "Apply multi Instance for widget" into devel/master

4 years ago[Tizen] Add DownloadRemoteFileIntoMemory function 52/220852/4 submit/tizen_5.5/20191226.075037
huiyu.eun [Mon, 23 Dec 2019 01:13:32 +0000 (10:13 +0900)]
[Tizen] Add DownloadRemoteFileIntoMemory function

Change-Id: Id2f09880be8459c5da2a3752fe51ee7da0ce4ae3
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
4 years agoAdd to get current window orientation. 77/220877/3
Wonsik Jung [Tue, 24 Dec 2019 06:47:10 +0000 (15:47 +0900)]
Add to get current window orientation.

Add the API to get current window orientation.
It is to return the logical orientation

Change-Id: I01c11158b5c826abe4d7c0a18a4063515eab14e4

4 years agoApply multi Instance for widget 62/212562/22
Sunghyun kim [Fri, 23 Aug 2019 04:59:31 +0000 (13:59 +0900)]
Apply multi Instance for widget

Change-Id: I93dd2fd23a25d95cd9b806745225bd1c4350e75b

4 years agoMerge "Use Depth attachment on the Capture" into devel/master
Seungho BAEK [Sun, 22 Dec 2019 23:13:49 +0000 (23:13 +0000)]
Merge "Use Depth attachment on the Capture" into devel/master

4 years agoMerge "(ATSPI) Add ATSPI for Say(), Pause(), Resume(), SetForcefully(), GetStatus...
Adeel Kazmi [Fri, 20 Dec 2019 16:57:03 +0000 (16:57 +0000)]
Merge "(ATSPI) Add ATSPI for Say(), Pause(), Resume(), SetForcefully(), GetStatus()" into devel/master

4 years agoMerge "Fix AndroidFramework::Delete() so it doesn't crash anymore and small cleanup...
Adeel Kazmi [Fri, 20 Dec 2019 15:59:22 +0000 (15:59 +0000)]
Merge "Fix AndroidFramework::Delete() so it doesn't crash anymore and small cleanup." into devel/master

4 years agoMerge "(RPM) Do not copy build library in profile RPM if building only one profile...
Adeel Kazmi [Fri, 20 Dec 2019 10:47:51 +0000 (10:47 +0000)]
Merge "(RPM) Do not copy build library in profile RPM if building only one profile" into devel/master

4 years agoDALi Version 1.4.51 25/220725/1 dali_1.4.51
Cheng-Shiun Tsai [Fri, 20 Dec 2019 10:32:55 +0000 (10:32 +0000)]
DALi Version 1.4.51

Change-Id: I033db37fea77b6d84e706493d11a7f21608d861d

4 years agoRevert "[Tizen] Add Component Application Structure" 01/220601/1 accepted/tizen/5.5/unified/20191228.075056 submit/tizen_5.5/20191223.020122 submit/tizen_5.5/20191223.102805
huiyu.eun [Fri, 20 Dec 2019 01:43:08 +0000 (10:43 +0900)]
Revert "[Tizen] Add Component Application Structure"

This reverts commit 94ef0f3ad2d16b5862a5092b7db5acbc2d8fcad7.

Change-Id: I6833bfd8b1d2adc755231036110ecb699217cbc5

4 years agoFix AndroidFramework::Delete() so it doesn't crash anymore and small cleanup. 83/220483/2
Anton Obzhirov [Wed, 18 Dec 2019 15:31:56 +0000 (15:31 +0000)]
Fix AndroidFramework::Delete() so it doesn't crash anymore and small cleanup.

Change-Id: Ib996a66781062f425dd4dc1c9e0e5a32ee638e6c

4 years agoUse Depth attachment on the Capture 59/218259/4
Seungho, Baek [Wed, 20 Nov 2019 08:18:03 +0000 (17:18 +0900)]
Use Depth attachment on the Capture

Change-Id: Iadf4c709fa19ee8c6a47c258786a9601446f3fde
Signed-off-by: Seungho, Baek <sbsh.baek@samsung.com>
4 years agoInitialize mPaused 49/219449/2
huiyu.eun [Thu, 5 Dec 2019 03:47:12 +0000 (12:47 +0900)]
Initialize mPaused

Change-Id: I212b401cbd71a659c4107bcaf2b3871055ba01e3
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
4 years ago[Tizen] Add Component Application Structure 67/220367/2 submit/tizen_5.5/20191219.070549
huiyu.eun [Wed, 18 Dec 2019 01:19:06 +0000 (10:19 +0900)]
[Tizen] Add Component Application Structure

This reverts commit c2396b46b8a4c64de2c678c5721561b7cce134fa.

Change-Id: I1cd12afe92867968cd245898ea7215aeed5e8f72

4 years ago(ATSPI) Add ATSPI for Say(), Pause(), Resume(), SetForcefully(), GetStatus() 93/216793/11
dongsug.song [Fri, 1 Nov 2019 07:33:16 +0000 (16:33 +0900)]
(ATSPI) Add ATSPI for Say(), Pause(), Resume(), SetForcefully(), GetStatus()

- Make all of ATSPI as internal/devel API.
- Only few (Say, PauseResume, SetForcefully, GetStatus) would be c# binded by the requirement from developers.
- Other ATSPI APIs would be merged and provided as devel-api later.
- Current dali Accessibility is maintained.
- Moving all ATSPI files into tizen-wayland/atspi/ folder. (tizen-common doesn't cover all profiles)

Change-Id: Ia7156ca520031743bcf2e96f2255542f500eee89
Signed-off-by: dongsug.song <dongsug.song@samsung.com>
4 years ago[Tizen] Initialize mPaused submit/tizen_5.5/20191219.061022
Wonsik Jung [Thu, 19 Dec 2019 02:17:57 +0000 (11:17 +0900)]
[Tizen] Initialize mPaused

4 years ago[Tizen] Fix Window-rotation's bugs
Wonsik Jung [Thu, 19 Dec 2019 02:17:19 +0000 (11:17 +0900)]
[Tizen] Fix Window-rotation's bugs

4 years ago[Tizen] Add DALi Autofill implementation
Wonsik Jung [Thu, 19 Dec 2019 02:10:52 +0000 (11:10 +0900)]
[Tizen] Add DALi Autofill implementation

4 years ago[Tizen] Implement partial update
Wonsik Jung [Thu, 19 Dec 2019 02:10:18 +0000 (11:10 +0900)]
[Tizen] Implement partial update

4 years ago[Tizen] Add screen and client rotation itself function
Wonsik Jung [Thu, 19 Dec 2019 02:09:37 +0000 (11:09 +0900)]
[Tizen] Add screen and client rotation itself function

4 years agoMerge branch 'devel/master' into tizen_5.5
Wonsik Jung [Thu, 19 Dec 2019 02:08:46 +0000 (11:08 +0900)]
Merge branch 'devel/master' into tizen_5.5

4 years agoChange window rotaton policy
Wonsik Jung [Thu, 19 Dec 2019 02:08:22 +0000 (11:08 +0900)]
Change window rotaton policy

This reverts commit 237bc77bb5f822b949df01f03202781174e444fe.

4 years agoRevert "[Tizen] Add screen and client rotation itself function"
Wonsik Jung [Thu, 19 Dec 2019 02:07:17 +0000 (11:07 +0900)]
Revert "[Tizen] Add screen and client rotation itself function"

This reverts commit 53608b70c36da2ca09ec16cf8de61c77e793b868.

4 years agoRevert "[Tizen] Implement partial update"
Wonsik Jung [Thu, 19 Dec 2019 02:07:10 +0000 (11:07 +0900)]
Revert "[Tizen] Implement partial update"

This reverts commit aebe3e5f9743fe3d5b36f577597eef6c4ee0b016.

4 years agoRevert "[Tizen] Add DALi Autofill implementation"
Wonsik Jung [Thu, 19 Dec 2019 02:07:02 +0000 (11:07 +0900)]
Revert "[Tizen] Add DALi Autofill implementation"

This reverts commit b36f80056bae7e660780705dc4c65086db03fd22.

4 years agoRevert "[Tizen] Support to get KeyCode dynamically using xkbcommon API"
Wonsik Jung [Thu, 19 Dec 2019 02:06:54 +0000 (11:06 +0900)]
Revert "[Tizen] Support to get KeyCode dynamically using xkbcommon API"

This reverts commit d188f5f7358c7e3682766647d63949d909764ae8.

4 years agoRevert "[Tizen] Fix Window-rotation's bugs"
Wonsik Jung [Thu, 19 Dec 2019 02:06:41 +0000 (11:06 +0900)]
Revert "[Tizen] Fix Window-rotation's bugs"

This reverts commit f76905fe3551db80b96a63be4a302190b91e37b9.

4 years agoRevert "[Tizen] Initialize mPaused"
Wonsik Jung [Thu, 19 Dec 2019 02:06:37 +0000 (11:06 +0900)]
Revert "[Tizen] Initialize mPaused"

This reverts commit 4e34a35ccbebdb34bd0dc5b884721826d06d6caa.

4 years agoMerge "Append log for window" into devel/master
Wonsik Jung [Thu, 19 Dec 2019 01:04:45 +0000 (01:04 +0000)]
Merge "Append log for window" into devel/master

4 years agoMerge "Update tizen document URL" into devel/master
Adeel Kazmi [Wed, 18 Dec 2019 12:07:56 +0000 (12:07 +0000)]
Merge "Update tizen document URL" into devel/master

4 years agoUpdate tizen document URL 57/220457/1
Seoyeon Kim [Wed, 18 Dec 2019 10:13:43 +0000 (19:13 +0900)]
Update tizen document URL

- According to the address change of tizen documents,
  the site URL in dali-adaptor-doc.h has been updated.

Change-Id: I21a1401c71092e67dbe95cfc1faaba2698f65b28
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
4 years agoAppend log for window 77/219977/7
Wonsik Jung [Thu, 12 Dec 2019 06:17:55 +0000 (15:17 +0900)]
Append log for window

To commercialize, some logs are appended in window module.

Change-Id: I7316082579c9ca0f1751b03a4ec0d412dbc6f46d

4 years agoMerge "Add NO_ORIENTATION_PREFERENCE type to unset the preferred orientation" into...
Adeel Kazmi [Wed, 18 Dec 2019 09:51:46 +0000 (09:51 +0000)]
Merge "Add NO_ORIENTATION_PREFERENCE type to unset the preferred orientation" into devel/master

4 years agoAdd NO_ORIENTATION_PREFERENCE type to unset the preferred orientation 39/219639/10
Wonsik Jung [Sun, 8 Dec 2019 19:51:14 +0000 (04:51 +0900)]
Add NO_ORIENTATION_PREFERENCE type to unset the preferred orientation

For unseting the preferred orientation for window, NO_ORIENTATION_PREFERENCE type is added to WindowOrientation enum.
To unset the preferred orientation, SetPreferredOrienation() should be called with NO_ORIENTATION_PREFERENCE.

Change-Id: Ia2de67d6533cef59b58340fca51286239c1a297d

4 years ago(RPM) Do not copy build library in profile RPM if building only one profile 67/220267/3
Adeel Kazmi [Mon, 16 Dec 2019 18:04:54 +0000 (18:04 +0000)]
(RPM) Do not copy build library in profile RPM if building only one profile

Change-Id: Ifec18e7bd1961e14df68b614b039a3d9b8033dae

4 years agoRevert "[Tizen] (RPM) Do not copy build library in profile RPM if building only one... 92/220392/1
Seungho, Baek [Wed, 18 Dec 2019 04:16:42 +0000 (13:16 +0900)]
Revert "[Tizen] (RPM) Do not copy build library in profile RPM if building only one profile"

This reverts commit 39bfdd95b601864eccf48b0e928a2ad9fc2b4f07.

Change-Id: I971035da7476f48ac00c6a7f35abc838aa17d484

4 years agoMerge "(Vector) GetMarkerInfo method" into devel/master
Heeyong Song [Wed, 18 Dec 2019 00:46:52 +0000 (00:46 +0000)]
Merge "(Vector) GetMarkerInfo method" into devel/master

4 years ago[Tizen] (RPM) Do not copy build library in profile RPM if building only one profile 81/220281/2 submit/tizen_5.5/20191217.022531 submit/tizen_5.5/20191217.073332
Adeel Kazmi [Mon, 16 Dec 2019 18:04:54 +0000 (18:04 +0000)]
[Tizen] (RPM) Do not copy build library in profile RPM if building only one profile

Change-Id: Ifec18e7bd1961e14df68b614b039a3d9b8033dae

4 years agoRevert "[Tizen] Fix spin build error" 80/220280/1
Seungho, Baek [Tue, 17 Dec 2019 01:26:45 +0000 (10:26 +0900)]
Revert "[Tizen] Fix spin build error"

This reverts commit c1f9dfe4d05a00d285ef4890e2c9e434bc65d2aa.

Change-Id: I5bce4be919921643b2074ce63d09df5df69f63f1

4 years agoSupport to get KeyCode dynamically using xkbcommon API 08/218408/3
Seoyeon Kim [Fri, 22 Nov 2019 04:56:12 +0000 (13:56 +0900)]
Support to get KeyCode dynamically using xkbcommon API

Change-Id: I82ff180cc1f44f411620086053232ba335ec3804
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
4 years ago(Vector) GetMarkerInfo method 73/219973/2
Heeyong Song [Thu, 12 Dec 2019 05:55:15 +0000 (14:55 +0900)]
(Vector) GetMarkerInfo method

Change-Id: Ic3b29173e7a19bd10e0f0b77ceba1801c0564478

4 years agoDALi Version 1.4.50 52/220152/1 dali_1.4.50
Agnelo Vaz [Fri, 13 Dec 2019 10:57:18 +0000 (10:57 +0000)]
DALi Version 1.4.50

Change-Id: I8b1adbf5787424331afeb134cb3e0d342f055e4f

4 years ago[Tizen] Fix spin build error 00/220100/1 submit/tizen_5.5/20191213.072356 submit/tizen_5.5/20191215.122227 submit/tizen_5.5/20191216.094625
Seungho, Baek [Fri, 13 Dec 2019 06:19:48 +0000 (15:19 +0900)]
[Tizen] Fix spin build error

Change-Id: I6d3b23226822750215e3bbc71f749019a7fc4041
Signed-off-by: Seungho, Baek <sbsh.baek@samsung.com>
4 years agoMerge "Fix Android timer implementation not to reset interval on Stop." into devel...
Paul Wisbey [Thu, 5 Dec 2019 16:10:53 +0000 (16:10 +0000)]
Merge "Fix Android timer implementation not to reset interval on Stop." into devel/master

4 years agoMerge changes Ib6897367,I6221cc14 into devel/master
Paul Wisbey [Thu, 5 Dec 2019 16:10:08 +0000 (16:10 +0000)]
Merge changes Ib6897367,I6221cc14 into devel/master

* changes:
  Change gif loader to use FileReader for all cases.
  Fix write out of bounds

4 years agoDALi Version 1.4.49 17/219517/1 dali_1.4.49
Anton Obzhirov [Thu, 5 Dec 2019 11:53:25 +0000 (11:53 +0000)]
DALi Version 1.4.49

Change-Id: Iea5c20638c26fd2565219478229df2ea88a16e45

4 years ago[Tizen] Initialize mPaused 47/219447/1 accepted/tizen/5.5/unified/20191206.013044 submit/tizen_5.5/20191205.041657
huiyu.eun [Thu, 5 Dec 2019 03:47:12 +0000 (12:47 +0900)]
[Tizen] Initialize mPaused

Change-Id: I212b401cbd71a659c4107bcaf2b3871055ba01e3
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
4 years agoChange gif loader to use FileReader for all cases. 21/219421/1
Anton Obzhirov [Wed, 4 Dec 2019 15:18:14 +0000 (15:18 +0000)]
Change gif loader to use FileReader for all cases.

Change-Id: Ib6897367643d589969b5fae15c91c879416e5e6d

4 years agoFix write out of bounds 20/218120/5
greynaga [Tue, 19 Nov 2019 10:55:54 +0000 (10:55 +0000)]
Fix write out of bounds

The issue was the clipped coordinates were overwritten
by the gif image size.

Change-Id: I6221cc1417f945d2d0f02ed656aebe6d26afbceb