Joogab Yun [Wed, 16 Sep 2020 06:22:08 +0000 (15:22 +0900)]
[Tizen] Add null check for mTextureSet.
For empty text, text-visual doesn't create a textureSet.
So it happens that mTextureSet is null.
(sample)
void Create(Application& application)
{
// Get a handle to the window
Window window = application.GetWindow();
window.SetBackgroundColor(Color::WHITE);
textLabel = TextLabel::New();
textLabel.SetProperty( Actor::Property::SIZE, Vector2(300.f, 200.f));
textLabel.SetProperty( Toolkit::TextLabel::Property::TEXT, "" );
textLabel.SetProperty( Toolkit::TextLabel::Property::ENABLE_AUTO_SCROLL, true );
window.Add(textLabel);
// Respond to a touch anywhere on the window
window.GetRootLayer().TouchedSignal().Connect(this, &HelloWorldController::OnTouch);
}
bool OnTouch(Actor actor, const TouchEvent& touch)
{
textLabel.SetProperty( Toolkit::TextLabel::Property::TEXT, "" );
textLabel.SetProperty( Toolkit::TextLabel::Property::ENABLE_AUTO_SCROLL, false );
return true;
}
Change-Id: Iff50abb0278c7d2f650a8c92cf8d5c5eaec6f36a
Seoyeon Kim [Wed, 16 Sep 2020 05:11:58 +0000 (14:11 +0900)]
[Tizen]Change the precision of size and uSize from mediumP to highP
This reverts commit
f7fb5e22054d8e2486e877f7986f1beed78f6de1.
Change-Id: Iefcc5f4ad37dfa491b831d62dbb3e02f5b2331fb
Seoyeon Kim [Wed, 16 Sep 2020 05:11:24 +0000 (14:11 +0900)]
[Tizen] Set custom fragment shader to the visual used in WebView
This reverts commit
c35e50a38916e65327774edbcf0f4d11084fb2a6.
Change-Id: Ibced0371c4708596d6efdcbbf9da31575095ac50
Seoyeon Kim [Wed, 16 Sep 2020 05:11:20 +0000 (14:11 +0900)]
[Tizen] Revert "Changes after touch consumed behaviour change"
This reverts commit
cbdd482912a7d74b97c634dd1b85b3b306500731.
Change-Id: I51908c934bc644bb71e0fa0fb2446391a8d5e5b0
Seoyeon Kim [Wed, 16 Sep 2020 05:11:17 +0000 (14:11 +0900)]
[Tizen] Add AutofillContainer class and autofill implementation
This reverts commit
7ae98167b08a132295bfcfcd90ea422a9970a8fb.
Change-Id: Iba999267af5f63256a02ef889b209ba930988b5e
Seoyeon Kim [Wed, 16 Sep 2020 05:10:52 +0000 (14:10 +0900)]
Merge branch 'devel/master' into tizen
Seoyeon Kim [Wed, 16 Sep 2020 05:10:21 +0000 (14:10 +0900)]
Revert "[Tizen] Add AutofillContainer class and autofill implementation"
This reverts commit
135ba3ba6b3aadeb34aa0692df49658d0faca263.
Seoyeon Kim [Wed, 16 Sep 2020 05:10:14 +0000 (14:10 +0900)]
Revert "[Tizen] Revert "Changes after touch consumed behaviour change""
This reverts commit
9d8d90feff4f165666b9d83a7ba52b3e3a8bb565.
Seoyeon Kim [Wed, 16 Sep 2020 05:10:10 +0000 (14:10 +0900)]
Revert "[Tizen] Set custom fragment shader to the visual used in WebView"
This reverts commit
aacbf614697ec5af0721b598496fad8659bfbf81.
Seoyeon Kim [Wed, 16 Sep 2020 05:09:45 +0000 (14:09 +0900)]
Revert "[Tizen] Change cursor parent from Layer to Actor"
This reverts commit
9fd3104c04dd4874fa361d156493a257e76aeefe.
Seoyeon Kim [Wed, 16 Sep 2020 05:09:42 +0000 (14:09 +0900)]
Revert "[Tizen]Change the precision of size and uSize from mediumP to highP"
This reverts commit
edcb22faa25d03e71f8a4cb5c3dc5fa328a42f5f.
Adeel Kazmi [Mon, 14 Sep 2020 14:05:01 +0000 (14:05 +0000)]
Merge "Fix VideoView test case" into devel/master
sunghyun kim [Mon, 14 Sep 2020 01:53:05 +0000 (01:53 +0000)]
Merge "[Tizen]Change the precision of size and uSize from mediumP to highP" into tizen
Seoyeon Kim [Tue, 8 Sep 2020 08:21:59 +0000 (17:21 +0900)]
[Tizen] Change cursor parent from Layer to Actor
Change-Id: I5f746b733a443f8d270403d89c0658f165eef992
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
Sunghyun Kim [Fri, 4 Sep 2020 07:14:04 +0000 (16:14 +0900)]
[Tizen]Change the precision of size and uSize from mediumP to highP
When I checked the value of uSize and size set in the application, the
multiplication of these values could result in INF number if shader uses
mediump (fp16).
To avoid this problem, i change the precision of size and uSize from mediumP to highP
Change-Id: Iaa3e6f4427cfbf82a2ca59f0c5628f746ebdbb80
Adeel Kazmi [Fri, 11 Sep 2020 16:51:12 +0000 (16:51 +0000)]
Merge "Dali-Text: Keyboard Shortcuts" into devel/master
ali [Mon, 31 Aug 2020 14:53:58 +0000 (17:53 +0300)]
Dali-Text: Keyboard Shortcuts
Add support for :
1- Select All Text : Ctrl+A
2- Copy Text: support Ctrl+Insert
Disable Ctrl+(C/X/V/A/Insert) when shift is down
Change-Id: I5404ac6866eedb13ba2091d1d4b1be7e70dd95a8
David Steele [Fri, 11 Sep 2020 12:01:22 +0000 (12:01 +0000)]
Merge "DALi Version 1.9.29" into devel/master
adam.b [Fri, 11 Sep 2020 11:56:33 +0000 (12:56 +0100)]
DALi Version 1.9.29
Change-Id: I48d6b2eb6b0da2cba0d67d1c5d5955f1d3ac9c6d
Heeyong Song [Fri, 11 Sep 2020 08:36:07 +0000 (17:36 +0900)]
Fix VideoView test case
Add a VideoView to the Scene before playing an animation
Change-Id: I3c8cdad53592d49109893f741601d58dba8d64c8
Seoyeon Kim [Tue, 8 Sep 2020 08:21:59 +0000 (17:21 +0900)]
Change cursor parent from Layer to Actor
Change-Id: I5f746b733a443f8d270403d89c0658f165eef992
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
David Steele [Thu, 10 Sep 2020 11:31:23 +0000 (12:31 +0100)]
Updating test harness following format changes
Change-Id: I2e6afda4215e8d8f707331d3952a8c8eaff2b9bd
David Steele [Thu, 10 Sep 2020 10:26:49 +0000 (11:26 +0100)]
Formatting API
Change-Id: I8ee16601ef38967ed7eddc7645b2c11a6226adce
Jiyun Yang [Thu, 10 Sep 2020 10:50:01 +0000 (19:50 +0900)]
[Tizen] Set custom fragment shader to the visual used in WebView
Change-Id: Id687fa55dad210ffe0c49900b6a4383e614cc974
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
David Steele [Mon, 7 Sep 2020 16:08:01 +0000 (17:08 +0100)]
Adding clang format
Closely follows new dali-style
Change-Id: I285743bf054dfbb04809ec995e47f00426134889
György Straub [Wed, 9 Sep 2020 13:28:55 +0000 (14:28 +0100)]
Adding 'override', removing 'virtual' from overriding functions' declarations in tests.
Change-Id: I04ba825e4125a13e27818eed9b2d9be67755b6ef
Signed-off-by: György Straub <g.straub@partner.samsung.com>
Adeel Kazmi [Tue, 8 Sep 2020 10:56:57 +0000 (10:56 +0000)]
Merge "Changed 'virtual' function override declarations to 'override' in automated-tests." into devel/master
György Straub [Tue, 8 Sep 2020 07:41:48 +0000 (08:41 +0100)]
Overriding virtual destructors are marked as 'override'.
- so are functions missed from If046270d3b6036f8566a9c48e4064425c1498daa;
- affected files that were the wrong mode have that fixed too (-x);
Change-Id: I476600848bb789ae7e660d130be723604453c674
Signed-off-by: György Straub <g.straub@partner.samsung.com>
Joogab Yun [Mon, 7 Sep 2020 06:01:45 +0000 (15:01 +0900)]
[Tizen] Revert "Changes after touch consumed behaviour change"
This reverts commit
af1671c4205934038b6d13a7b355091bb840b689.
Change-Id: I75aa72d149d84ccf8c3c2502cd8cdadbd3260383
Joogab Yun [Mon, 7 Sep 2020 05:58:49 +0000 (14:58 +0900)]
[Tizen] Add AutofillContainer class and autofill implementation
This reverts commit
5930970d3087752f7cf7ae5b6a2f3d82bdec1153.
Change-Id: Ib56306e1522deb9903910f5d62c2ab8009bf9f37
Joogab Yun [Mon, 7 Sep 2020 05:58:37 +0000 (14:58 +0900)]
Merge branch 'devel/master' into tizen
Joogab Yun [Mon, 7 Sep 2020 05:58:28 +0000 (14:58 +0900)]
Revert "Revert "Move TouchPoint to Devel API""
This reverts commit
18fe710dd9411c6aaf8dd6944601b22855133ca2.
Joogab Yun [Mon, 7 Sep 2020 05:58:15 +0000 (14:58 +0900)]
Revert "Revert "Renamed KeyEvent enum values to comply with coding standards.""
This reverts commit
22bb7aa462e31e509e9dda933f731f76999be728.
Joogab Yun [Mon, 7 Sep 2020 05:58:12 +0000 (14:58 +0900)]
Revert "Revert "KeyEvent class pimpling""
This reverts commit
b9ab1156bc4daffd95aa78a36c626fe71f814158.
Joogab Yun [Mon, 7 Sep 2020 05:58:09 +0000 (14:58 +0900)]
Revert "Revert "WheelEvent class pimpling""
This reverts commit
aa26e19e4876e3838075fec8bf8e6b76e1b402f8.
Joogab Yun [Mon, 7 Sep 2020 05:58:07 +0000 (14:58 +0900)]
Revert "Revert "HoverEvent class pimpling""
This reverts commit
5bf4da2ccc134f18ab55fec0452141787a99b923.
Joogab Yun [Mon, 7 Sep 2020 05:58:03 +0000 (14:58 +0900)]
Revert "[Tizen] Add AutofillContainer class and autofill implementation"
This reverts commit
7dcb535efef87e3b17458423d204e425c6e65af9.
Joogab Yun [Mon, 7 Sep 2020 05:58:00 +0000 (14:58 +0900)]
Revert "[Tizen] Revert "Changes after touch consumed behaviour change""
This reverts commit
a05ee3025d74d4531e1b608a4b836dcb0b308784.
György Straub [Fri, 4 Sep 2020 14:25:00 +0000 (15:25 +0100)]
Changed 'virtual' function override declarations to 'override' in automated-tests.
Change-Id: Id86e9c197e28b3fb67bc1a3aec504020dc093808
Signed-off-by: György Straub <g.straub@partner.samsung.com>
György Straub [Fri, 4 Sep 2020 11:14:24 +0000 (12:14 +0100)]
Changed 'virtual' function override declarations to 'override' in dali-toolkit.
Change-Id: If046270d3b6036f8566a9c48e4064425c1498daa
Signed-off-by: György Straub <g.straub@partner.samsung.com>
Richard Huang [Fri, 4 Sep 2020 10:15:50 +0000 (11:15 +0100)]
DALi Version 1.9.28
Change-Id: Icb06c26e79f0468af263f67dd7363813226cccf0
Adeel Kazmi [Thu, 3 Sep 2020 19:35:37 +0000 (19:35 +0000)]
Merge "Removed REQUIRES_STYLE_CHANGE_SIGNALS" into devel/master
adam.b [Thu, 3 Sep 2020 15:38:51 +0000 (16:38 +0100)]
Removed REQUIRES_STYLE_CHANGE_SIGNALS
Change-Id: I8bacc71a58a052e68aa6f0af9e0ab8634fcd576e
Adeel Kazmi [Thu, 3 Sep 2020 17:23:34 +0000 (17:23 +0000)]
Merge "Removed On(...)Event()" into devel/master
adam.b [Thu, 3 Sep 2020 16:11:02 +0000 (17:11 +0100)]
Removed On(...)Event()
Change-Id: I09dcd36368f97c03cfda6d004e240df4dc13264b
Subhransu Mohanty [Thu, 27 Aug 2020 01:28:01 +0000 (10:28 +0900)]
Update interface to sync with dali-core change.
Change-Id: Ie70a029eabadebaffb7de7587d58328868b35b95
Adeel Kazmi [Thu, 3 Sep 2020 11:59:17 +0000 (11:59 +0000)]
Merge "NPatch rendering optimization" into devel/master
adam.b [Wed, 2 Sep 2020 21:27:52 +0000 (22:27 +0100)]
NPatch rendering optimization
Change-Id: I6d2b95e8141c7e22d326e2f736c98f4783b829ab
György Straub [Wed, 2 Sep 2020 12:48:18 +0000 (13:48 +0100)]
Moved Gesture::State and -::Type to gesture-enumerations.h.
Change-Id: I1094170d47c8dd6246bf5a32244424c9a3976c3d
Signed-off-by: György Straub <g.straub@partner.samsung.com>
Adeel Kazmi [Wed, 2 Sep 2020 21:53:58 +0000 (21:53 +0000)]
Merge "Deleted Move/Copy operators & constructors from Internal::Control" into devel/master
Adeel Kazmi [Wed, 2 Sep 2020 20:09:34 +0000 (20:09 +0000)]
Merge "Changes after TouchedSignal changes" into devel/master
Adeel Kazmi [Wed, 2 Sep 2020 19:55:54 +0000 (20:55 +0100)]
Deleted Move/Copy operators & constructors from Internal::Control
Also added override keywords to methods that required it
Change-Id: If624801451472dce9e2a5d1f2d2d5afa8fc7cb64
Adeel Kazmi [Wed, 2 Sep 2020 13:53:37 +0000 (14:53 +0100)]
Changes after TouchedSignal changes
Change-Id: I439699c97723207d5ea1440e01c911c68a7c83c9
Victor Cebollada [Wed, 2 Sep 2020 08:14:22 +0000 (09:14 +0100)]
Fix compile error. Non initialized variable.
Change-Id: I3b65765de9797df333c32abfb9607e04910bd169
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
Joogab Yun [Wed, 2 Sep 2020 01:53:58 +0000 (10:53 +0900)]
Updates following rename of PropertyBuffer to VertexBuffer
This reverts commit
a945e5467fa078dee9a54b41a782e0664f222b4a.
Change-Id: I457f1f39266a9dc747a5f32ebf9e8822273f5932
Joogab Yun [Tue, 23 Jun 2020 06:18:28 +0000 (15:18 +0900)]
Refactoring Gestures Class
Change-Id: I945af40bbb1a62177fe6bcfeda3c6a85396b90f3
Joogab Yun [Tue, 1 Sep 2020 09:02:53 +0000 (18:02 +0900)]
Revert "Updates following rename of PropertyBuffer to VertexBuffer"
This reverts commit
37809ae7570411971d415a9060b38f64bba81744.
György Straub [Fri, 28 Aug 2020 09:48:17 +0000 (10:48 +0100)]
Renaming of enum values for coding standards compliance.
Change-Id: I7d63afe311fd99b2529928167e864ecda5e2a0ed
Signed-off-by: György Straub <g.straub@partner.samsung.com>
Joogab Yun [Tue, 1 Sep 2020 08:21:15 +0000 (17:21 +0900)]
Revert "HoverEvent class pimpling"
This reverts commit
4a16d0bb121e5faa4eda036474a5269d69b63042.
Joogab Yun [Tue, 1 Sep 2020 08:21:10 +0000 (17:21 +0900)]
Revert "WheelEvent class pimpling"
This reverts commit
be93fd772a1b1b09425ac0aaec1ea1b64e9a9e60.
Joogab Yun [Tue, 1 Sep 2020 08:21:02 +0000 (17:21 +0900)]
Revert "KeyEvent class pimpling"
This reverts commit
286089d715eb4c5e704884284cce67549685dbc5.
Joogab Yun [Tue, 1 Sep 2020 08:20:49 +0000 (17:20 +0900)]
Revert "Renamed KeyEvent enum values to comply with coding standards."
This reverts commit
db577f5da5695be7d4e6e884e735cc9f0c7f487c.
Joogab Yun [Tue, 1 Sep 2020 08:20:39 +0000 (17:20 +0900)]
Revert "Move TouchPoint to Devel API"
This reverts commit
2fa3a7c0258c491a3a75c33dba494b01b88f133c.
Joogab Yun [Tue, 1 Sep 2020 08:20:19 +0000 (17:20 +0900)]
[Tizen] Revert "Changes after touch consumed behaviour change"
This reverts commit
881f902d3aa97cbc198e7c6490db3a23bba329b5.
Change-Id: Ibf0710311e6d0be83ab349c2be2da9a9423b7aef
Joogab Yun [Tue, 1 Sep 2020 08:19:51 +0000 (17:19 +0900)]
[Tizen] Add AutofillContainer class and autofill implementation
This reverts commit
5474b6ba8b666895d778f1592ef7d4b655da4ab4.
Change-Id: Ib52ca9046e85ca524410e0df0565c86790a6abac
Joogab Yun [Tue, 1 Sep 2020 08:19:39 +0000 (17:19 +0900)]
Merge branch 'devel/master' into tizen
Joogab Yun [Tue, 1 Sep 2020 08:19:33 +0000 (17:19 +0900)]
Revert "[Tizen] Add AutofillContainer class and autofill implementation"
This reverts commit
ddd33246a8c29881725d672b84c5d7e87408f6bc.
Joogab Yun [Tue, 1 Sep 2020 08:19:29 +0000 (17:19 +0900)]
Revert "[Tizen] Revert "Changes after touch consumed behaviour change""
This reverts commit
131b974fcac6fcf4570c7b9b3c0e97f1a51da91c.
Joogab Yun [Tue, 1 Sep 2020 08:19:24 +0000 (17:19 +0900)]
Revert "Revert "WheelEvent class pimpling""
This reverts commit
508d62d5d491bdccd8e63e34e3ca315abc7f523f.
Joogab Yun [Tue, 1 Sep 2020 08:19:20 +0000 (17:19 +0900)]
Revert "Revert "HoverEvent class pimpling""
This reverts commit
99647fb974e4e6d1d4b1955d1836a6bc4b259c57.
Richard Huang [Fri, 28 Aug 2020 15:31:26 +0000 (16:31 +0100)]
Move TouchPoint to Devel API
Change-Id: I0117ed93c0fc2f89757c221ad048b90cc544ccef
Adeel Kazmi [Fri, 28 Aug 2020 10:33:11 +0000 (10:33 +0000)]
Merge "DALi Version 1.9.27" into devel/master
Victor Cebollada [Fri, 28 Aug 2020 10:11:42 +0000 (11:11 +0100)]
DALi Version 1.9.27
Change-Id: If09187322fc6d855413861c968f5a15065fd0fa3
Joogab Yun [Fri, 28 Aug 2020 02:09:51 +0000 (11:09 +0900)]
Revert "HoverEvent class pimpling"
This reverts commit
c101be5f764aa7272e491eb8b2ad59850e7e133c.
Change-Id: I49a09be0872effd549a7f89c7e0681ea1899ee1a
Joogab Yun [Fri, 28 Aug 2020 02:09:45 +0000 (11:09 +0900)]
Revert "WheelEvent class pimpling"
This reverts commit
be93fd772a1b1b09425ac0aaec1ea1b64e9a9e60.
Joogab Yun [Thu, 27 Aug 2020 03:54:59 +0000 (12:54 +0900)]
When matchSystemLanguageDirection is set, it should follow the direction setting of the system.
So, we use the window direction, not the actor direction.
Change-Id: I6626dfc35fed531eadc68aa811de5fc1e035cea6
Joogab Yun [Tue, 25 Aug 2020 08:59:40 +0000 (17:59 +0900)]
If the size of the text is larger than the size of the control,
setting it to VerticalAlignment::Center cuts the top and bottom of the text.
The VerticalAlignment::CENTER setting works when the size of the control is enough.
Change-Id: I3d35b4dfceb4297c89bddfc5c5364de4be5bc646
joogab yun [Fri, 28 Aug 2020 00:49:42 +0000 (00:49 +0000)]
Merge "When matchSystemLanguageDirection is set, it should follow the direction setting of the system. So, we use the window direction, not the actor direction." into devel/master
Adeel Kazmi [Thu, 27 Aug 2020 20:11:27 +0000 (20:11 +0000)]
Merge "Updates for const->constexpr" into devel/master
David Steele [Thu, 27 Aug 2020 14:04:56 +0000 (15:04 +0100)]
Updates for const->constexpr
Change-Id: Ied6617817f73a03575b86e9fd9fa515b4a55f10b
György Straub [Thu, 27 Aug 2020 07:42:03 +0000 (08:42 +0100)]
Renamed KeyEvent enum values to comply with coding standards.
Change-Id: Id48a7d995ed6036d7ae2c228a3b596904d1dcf09
Signed-off-by: György Straub <g.straub@partner.samsung.com>
Joogab Yun [Thu, 27 Aug 2020 03:54:59 +0000 (12:54 +0900)]
When matchSystemLanguageDirection is set, it should follow the direction setting of the system.
So, we use the window direction, not the actor direction.
Change-Id: I6626dfc35fed531eadc68aa811de5fc1e035cea6
joogab yun [Wed, 26 Aug 2020 00:49:08 +0000 (00:49 +0000)]
Merge "If the size of the text is larger than the size of the control, setting it to VerticalAlignment::Center cuts the top and bottom of the text." into devel/master
Adeel Kazmi [Tue, 25 Aug 2020 18:25:24 +0000 (18:25 +0000)]
Merge "Updates following rename of PropertyBuffer to VertexBuffer" into devel/master
Adeel Kazmi [Tue, 25 Aug 2020 17:24:46 +0000 (17:24 +0000)]
Merge "KeyEvent class pimpling" into devel/master
David Steele [Mon, 24 Aug 2020 17:35:10 +0000 (18:35 +0100)]
Updates following rename of PropertyBuffer to VertexBuffer
Change-Id: I5989a8b4774feed2b4dcad68cfd8f2573523b983
Richard Huang [Tue, 25 Aug 2020 09:34:16 +0000 (10:34 +0100)]
KeyEvent class pimpling
Change-Id: Ic51e92d7a783f47890e6f842b1ed2cfc5b6f3077
Joogab Yun [Tue, 25 Aug 2020 08:59:40 +0000 (17:59 +0900)]
If the size of the text is larger than the size of the control,
setting it to VerticalAlignment::Center cuts the top and bottom of the text.
The VerticalAlignment::CENTER setting works when the size of the control is enough.
Change-Id: I3d35b4dfceb4297c89bddfc5c5364de4be5bc646
adam.b [Mon, 24 Aug 2020 15:03:22 +0000 (16:03 +0100)]
Changed Animation API enums to uppercase.
Change-Id: I8e17ed6d04fbaf4c589c82358bd920ff8d51e680
David Steele [Mon, 24 Aug 2020 12:49:01 +0000 (13:49 +0100)]
Updates following publication of devel-handle APIs
Change-Id: I070abe62055a6574fcf98a96ab3e1140113256d4
Joogab Yun [Mon, 24 Aug 2020 05:29:44 +0000 (14:29 +0900)]
[Tizen] Revert "Changes after touch consumed behaviour change"
This reverts commit
ab90440bef88388eac4af5a3dc2162127efb4617.
Change-Id: I5b2e9f7b5a94dcdf9ae66d01f23495662b3930c1
Joogab Yun [Mon, 24 Aug 2020 05:29:04 +0000 (14:29 +0900)]
[Tizen] Add AutofillContainer class and autofill implementation
This reverts commit
af642609829eb129621aed29a5e451cc1c5a007a.
Change-Id: I7010df7c82e0a06ecb1715708cdc43d982211a3f
Joogab Yun [Mon, 24 Aug 2020 05:28:55 +0000 (14:28 +0900)]
Merge branch 'devel/master' into tizen
Joogab Yun [Mon, 24 Aug 2020 05:28:46 +0000 (14:28 +0900)]
Revert "[Tizen] Add AutofillContainer class and autofill implementation"
This reverts commit
4040709e45d0e76bc77c49b0a0b3a8e897c3dc00.
Joogab Yun [Mon, 24 Aug 2020 05:28:44 +0000 (14:28 +0900)]
Revert "[Tizen] Revert "Changes after touch consumed behaviour change"
This reverts commit
ee686396514f3568a4c40b145ad77a4a23d2c8ab.
Joogab Yun [Mon, 24 Aug 2020 05:28:41 +0000 (14:28 +0900)]
Revert "[Tizen] (Vector) Change event processing"
This reverts commit
0c28349016869444dea4e173bfd43130a012635f.
Joogab Yun [Mon, 24 Aug 2020 05:28:38 +0000 (14:28 +0900)]
Revert "Revert "Changes after TouchData renamed to TouchEvent""
This reverts commit
07ea2c0aa0c3c229bca54410dfc58b3f7d49e114.
Joogab Yun [Mon, 24 Aug 2020 05:28:35 +0000 (14:28 +0900)]
Revert "Revert "Removed TouchEvent from dali-core""
This reverts commit
ba604915f436f3cf5451fc810f992dbc229f8ba8.
Joogab Yun [Mon, 24 Aug 2020 05:28:33 +0000 (14:28 +0900)]
Revert "Revert "HoverEvent class pimpling""
This reverts commit
e089cefccc37829e5de9635706ec777b65faf0b1.
David Steele [Wed, 19 Aug 2020 18:07:23 +0000 (19:07 +0100)]
Updated test headers in line with dali-core
Change-Id: I6415e847cbe0bae649039906d1a62c72e31116cb