Adam Bialogonski [Fri, 7 Jan 2022 10:06:01 +0000 (10:06 +0000)]
DALi Version 2.1.4
Change-Id: I55541b80c2d3f3b014e33ac515f9d0e8f8f21b9f
Artur Świgoń [Mon, 22 Nov 2021 10:08:10 +0000 (11:08 +0100)]
[AT-SPI] Expose DevelControl::Property::ACCESSIBILITY_HIDDEN
Change-Id: If0254c40b5e8346f3acc461bc81196d1af40f971
Eunki, Hong [Thu, 30 Dec 2021 09:31:47 +0000 (18:31 +0900)]
Add Awake API in ProcessController to call Process hard.
When DALi-related API doesn't called, DALi think there is nothing to update
--> ProcessController doesn't call the callback functions.
This patch make Awake API so NUI can awak DALi event & update thread hardly.
Change-Id: Ia21ffd48c5ae46ae6f6c58b5baa0261e2563f4da
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Artur Świgoń [Fri, 3 Dec 2021 19:22:43 +0000 (20:22 +0100)]
[AT-SPI] Synchronize with AT-SPI cleanup in dali-toolkit
Changes in dali-adaptor and dali-toolkit add const-correctness and
rename some Accessible-derived classes.
Change-Id: I58cfab34dfffa8eaa094c13a27b236031e584ecd
Lukasz Oleksak [Fri, 17 Dec 2021 14:37:06 +0000 (14:37 +0000)]
Merge "[AT-SPI] Update #include paths to AT-SPI interfaces" into devel/master
Adeel Kazmi [Fri, 17 Dec 2021 06:59:01 +0000 (06:59 +0000)]
DALi Version 2.1.3
Change-Id: I6e2d3f67857682113ae974c0ac689501b92efe40
Artur Świgoń [Fri, 10 Dec 2021 17:44:11 +0000 (18:44 +0100)]
[AT-SPI] Update #include paths to AT-SPI interfaces
A related dali-adaptor change splits accessibility-impl.h so that there
is one header file per AT-SPI interface.
Change-Id: Iae3e4a2bbe457e4b0b127d02277510a18ead55a5
Eunki, Hong [Thu, 16 Dec 2021 06:56:09 +0000 (15:56 +0900)]
Ignore CMake caches
When we do some miss-command during build,
CMakeCache.txt and CMakeFiles/ are created.
I want to ignore them
Change-Id: Ia1f93216bfb47d19b1fba8e506d711cb58d59f4a
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Eunki, Hong [Thu, 16 Dec 2021 03:55:59 +0000 (12:55 +0900)]
Clean up all cpp files header
1. Fill in missing license info
2. Well-formating license info
3. Group each headerfiles as 'INTERNAL' and 'EXTERNAL'
(csharp binder doesn't have any 'CLASS HEADER'
instead of processor-controller.cpp and view-wrapper-impl-wrap.cpp)
Change-Id: Idc1aa857a1b2e725e05a083296aa1cf62aaf2626
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
joogab.yun [Tue, 14 Dec 2021 05:16:22 +0000 (14:16 +0900)]
Binding GetNearestFocusableActor api
Change-Id: I02664f5660d990d62f06cddecfcf711b4025b6a6
Eunki, Hong [Tue, 14 Dec 2021 08:05:45 +0000 (17:05 +0900)]
Reduce compile time + __forced_unwind don't rethrow
Change MACRO usage to function call.
It will make compile time as half
+
Let __forced_unwind don't rethrow.
.NET Core doesn't handle about this.
So we just let DALi catch it, and print log, and do nothing.
It will not make any problems for normal case.
Change-Id: Iaba8407abc0fbe425258451c9f033e715c350fff
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Lukasz Oleksak [Thu, 2 Dec 2021 09:30:49 +0000 (10:30 +0100)]
[ATSPI] Fix for Default Label
This patch:
* replaces existing API AddPopup()/RemovePopup() by RegisterDefaultLabel()/UnregisterDefaultLabel() which has wider applicability (not only for popups)
Related patches:
https://review.tizen.org/gerrit/#/c/platform/core/uifw/dali-adaptor/+/267321/
https://review.tizen.org/gerrit/#/c/platform/core/uifw/dali-toolkit/+/267323/
Change-Id: I8bc2f57f149179e3281a3f57603474c71754533a
Bowon Ryu [Mon, 13 Dec 2021 03:49:31 +0000 (03:49 +0000)]
Merge "Add support for text geometry" into devel/master
Richard Huang [Fri, 10 Dec 2021 11:59:05 +0000 (11:59 +0000)]
DALi Version 2.1.2
Change-Id: I449607688af0a55662cb9a2ecf32ff8b658b4163
abdullah [Wed, 1 Dec 2021 08:57:01 +0000 (10:57 +0200)]
Add support for text geometry
https://review.tizen.org/gerrit/c/platform/core/uifw/dali-toolkit/+/266891
Change-Id: Iacbe5a4753e9d364139079772c4920043b394cd3
David Steele [Fri, 3 Dec 2021 13:57:46 +0000 (13:57 +0000)]
DALi Version 2.1.1
Change-Id: I9e3f512b11083f6f8fb21564bf1588aa071f3355
Eunki, Hong [Fri, 26 Nov 2021 11:36:44 +0000 (20:36 +0900)]
Refactor try-catch macro function
1. Add exception occured file, line, funcname to log
Now CALL_CATCH_EXCEPTION macro print current file / line / funcname to log.
Note. If you used try_catch internal function, you have to wrap the function by parentheses.
This is compiler bug, but we can't fix compiler. Just avoid.
2. You can do any jobs before catched bugs return values.
For example, you can release some malloced memory before return nullptr;
3. Now macro doesn't catch abi::__forced_unwind.
This exception using at C code's pthread library. (pthread_exit and pthread_cancel)
This is not a type of error, so we should ignore it and just rethrow.
Change-Id: I9000684827b63813ad791bb4c7f2f5db751fdf7b
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Adeel Kazmi [Fri, 26 Nov 2021 09:28:59 +0000 (09:28 +0000)]
Merge "DALi Version 2.1.0" into devel/master
Adam Bialogonski [Fri, 26 Nov 2021 08:41:28 +0000 (08:41 +0000)]
DALi Version 2.1.0
Change-Id: I941a2f0e469ae5d4513bcd69394b46b08999de86
dongsug.song [Thu, 25 Nov 2021 12:36:05 +0000 (21:36 +0900)]
replace long try-catch phrase into simple macro
Change-Id: I73b2a889800da83a85bf51957c34b30b72c481f1
joogab yun [Mon, 22 Nov 2021 06:40:10 +0000 (06:40 +0000)]
Merge "Binding TextFitChangedSignal" into devel/master
Wonsik Jung [Mon, 22 Nov 2021 01:44:31 +0000 (01:44 +0000)]
Merge "Add auxiliary message for window" into devel/master
Shinwoo Kim [Fri, 19 Nov 2021 10:25:36 +0000 (10:25 +0000)]
Merge "[AT-SPI] Bindings for Bridge::{Enabled,Disabled}Signal()" into devel/master
Wonsik Jung [Tue, 9 Nov 2021 10:48:06 +0000 (19:48 +0900)]
Add auxiliary message for window
Auxiliary message is sent by display server.
When client application added the window's auxiliary hint and if the auxiliary is changed,
display server send the auxiliary message.
Auxiliary message has the key, value and options.
Change-Id: I8b0c897aceae4c9a217249389d86102b1ecf2008
Richard [Thu, 18 Nov 2021 12:00:20 +0000 (12:00 +0000)]
DALi Version 2.0.53
Change-Id: I43131633e17f2d70c3bc8e1b12af7b1f348efd76
joogab.yun [Mon, 8 Nov 2021 01:32:31 +0000 (10:32 +0900)]
Binding TextFitChangedSignal
Change-Id: Ie7615cc86459fbed1f6af66de610d71aa9f0bf08
Artur Świgoń [Wed, 10 Nov 2021 11:59:02 +0000 (12:59 +0100)]
[AT-SPI] Bindings for Bridge::{Enabled,Disabled}Signal()
There's a paired NUI patch :
https://github.com/Samsung/TizenFX/pull/3718
Change-Id: I8a646ce38289b1f9a779d8df0111a5fe1bf8deff
Shinwoo Kim [Tue, 16 Nov 2021 08:35:53 +0000 (08:35 +0000)]
Merge "[ATSPI] make accessible-nui use DALi states" into devel/master
Shinwoo Kim [Mon, 15 Nov 2021 11:10:41 +0000 (20:10 +0900)]
[ATSPI] make accessible-nui use DALi states
We do not have to calculate states sepalately.
This patch makes NUI calculate states using DALi states.
If there is NUI specific state, it will be overwritten on NUI side.
This depends on following change.
https://github.com/Samsung/TizenFX/pull/3739
Change-Id: I9d2b7153e23a693f11f028e1171ba4008b93d12a
Adeel Kazmi [Fri, 12 Nov 2021 10:48:55 +0000 (10:48 +0000)]
DALi Version 2.0.52
Change-Id: I4fa4739bd04a08c62dd3854adc7d761d07f33777
joogab.yun [Tue, 9 Nov 2021 08:24:50 +0000 (17:24 +0900)]
Code clean for text csharp binder
Change-Id: Ic5d1a0bf5c50caf049369661db0e5af9a01f0a4d
Adeel Kazmi [Fri, 5 Nov 2021 10:44:31 +0000 (10:44 +0000)]
DALi Version 2.0.51
Change-Id: Ifcc1138ed2b2611040d3361888f1631415358d71
Seungho Baek [Mon, 1 Nov 2021 10:25:56 +0000 (19:25 +0900)]
Make use some ImageView properties again
Change-Id: Ie381604142fb5d55bf909c8baad1ba43e5c6c9a5
Signed-off-by: Seungho Baek <sbsh.baek@samsung.com>
David Steele [Fri, 29 Oct 2021 09:06:11 +0000 (10:06 +0100)]
DALi Version 2.0.50
Change-Id: Ibf77bd93f9fe283c47c0ced7495195abfc41aab8
Seungho BAEK [Mon, 25 Oct 2021 04:11:11 +0000 (04:11 +0000)]
Merge "Add a flag to select target control of pair transition" into devel/master
Adeel Kazmi [Fri, 22 Oct 2021 11:26:01 +0000 (11:26 +0000)]
Merge "DALi Version 2.0.49" into devel/master
Adam Bialogonski [Fri, 22 Oct 2021 10:25:23 +0000 (11:25 +0100)]
DALi Version 2.0.49
Change-Id: I5b84470c786000a97ca5b80239ec52a082b653ef
Eunki, Hong [Fri, 22 Oct 2021 10:14:26 +0000 (19:14 +0900)]
gitignore update (*.swp)
Change-Id: I671a112d48532246eeaa2c3f8fc7239cbc7c8239
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Daekwang Ryu [Thu, 21 Oct 2021 01:03:14 +0000 (01:03 +0000)]
Merge "Add GlView binder" into devel/master
Daekwang Ryu [Wed, 29 Sep 2021 01:08:03 +0000 (10:08 +0900)]
Add GlView binder
Change-Id: If2990932ec7587e63ea47f745500a1839d9dc2db
Seungho Baek [Tue, 28 Sep 2021 06:44:08 +0000 (15:44 +0900)]
Add a flag to select target control of pair transition
Change-Id: Id11638781bb7d467500c99caa395724869771c19
Signed-off-by: Seungho Baek <sbsh.baek@samsung.com>
seungho [Mon, 18 Oct 2021 06:46:10 +0000 (15:46 +0900)]
Refactoring VisualActions
Change-Id: Ie941fb4922654eacddc768b44e16280a348d8d2a
Signed-off-by: seungho <sbsh.baek@samsung.com>
Richard Huang [Fri, 15 Oct 2021 09:44:20 +0000 (10:44 +0100)]
DALi Version 2.0.48
Change-Id: I6493aacd19ce048a55b986d26bc2875aac5d49a6
tscholb [Mon, 6 Sep 2021 11:13:38 +0000 (20:13 +0900)]
Add api for brokenImage
Add api for setting broken Image.
Using ThemeManager, nui application can set 3 type of the broken image.
Change-Id: I86c4378869dcd6ce6201935af5e5c15f8a33a266
Seungho BAEK [Wed, 13 Oct 2021 04:23:00 +0000 (04:23 +0000)]
Merge "Fix some typos of model3d-view-wrap.cpp" into devel/master
David Steele [Fri, 8 Oct 2021 13:54:41 +0000 (14:54 +0100)]
DALi Version 2.0.47
Change-Id: Ide84059dc0592a4bce0f1a25d75c65de00cf4730
Seungho Baek [Tue, 5 Oct 2021 02:28:17 +0000 (11:28 +0900)]
Fix some typos of model3d-view-wrap.cpp
Change-Id: Ic1cd19f451e10a0df8f5717a83756b22ed0a3511
Signed-off-by: Seungho Baek <sbsh.baek@samsung.com>
Adeel Kazmi [Fri, 1 Oct 2021 17:23:24 +0000 (18:23 +0100)]
DALi Version 2.0.46
Change-Id: Ie41e784af2c70b0d1164fec6bf393920aebdc882
Seungho BAEK [Mon, 27 Sep 2021 06:41:28 +0000 (06:41 +0000)]
Merge "Separate Model3dView from dali-wrap and name changed" into devel/master
joogab.yun [Fri, 10 Sep 2021 07:58:20 +0000 (16:58 +0900)]
Binding DISPATCH_KEY_EVENTS
Change-Id: I420ab3d3599060b61f28c9a6359887b0fa497b08
Adam Bialogonski [Fri, 24 Sep 2021 08:48:13 +0000 (09:48 +0100)]
DALi Version 2.0.45
Change-Id: Ib8c648e2c67e5f631a9ccb7e1288355085c8254f
Richard Huang [Fri, 17 Sep 2021 10:42:43 +0000 (11:42 +0100)]
DALi Version 2.0.44
Change-Id: Ia06deb97a848e6f5780a09198537f743fe527133
Seungho Baek [Mon, 13 Sep 2021 04:01:36 +0000 (13:01 +0900)]
Separate Model3dView from dali-wrap and name changed
Change-Id: I45257b8b5ed56a71ec9cf176842b311e903f75d3
Signed-off-by: Seungho Baek <sbsh.baek@samsung.com>
Seoyeon Kim [Mon, 13 Sep 2021 03:42:41 +0000 (03:42 +0000)]
Merge "Fix AtspiAccessibility functions to apply to all profiles" into devel/master
Seoyeon Kim [Mon, 13 Sep 2021 00:09:34 +0000 (09:09 +0900)]
Fix AtspiAccessibility functions to apply to all profiles
- Revert "[ATSPI] Hotfix for common profile with ATSPI.IsEnabled()"
This reverts commit
b228f3f42e34dab1778664822253cc43c2ce77a3.
- Move atspi-wrap.cpp file to all profiles including Ubuntu build
Change-Id: I0b9a7d3f88cdef8321b275b7474173b0097d8787
junsu choi [Mon, 13 Sep 2021 00:40:11 +0000 (00:40 +0000)]
Merge "Fix svace issue in CanvasView" into devel/master
Eunki Hong [Sat, 11 Sep 2021 14:15:31 +0000 (07:15 -0700)]
Fix svace issue in CanvasView
Change-Id: I49aeac97a6a9eee06e814a680bde77a85143ef75
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
Adeel Kazmi [Fri, 10 Sep 2021 15:24:39 +0000 (15:24 +0000)]
Merge "DALi Version 2.0.43" into devel/master
David Steele [Fri, 10 Sep 2021 15:20:54 +0000 (16:20 +0100)]
DALi Version 2.0.43
Change-Id: Ibf66da9af14b6a3df1422d039db02c2a675b51dd
Wonsik Jung [Fri, 10 Sep 2021 05:41:46 +0000 (05:41 +0000)]
Merge "Add SetParent wrapper to Window-wrap" into devel/master
Seungho BAEK [Wed, 8 Sep 2021 11:01:14 +0000 (11:01 +0000)]
Merge "Bind Scale transition" into devel/master
huayong.xu [Tue, 7 Sep 2021 07:26:12 +0000 (15:26 +0800)]
Fix crash when written chunk of response is null.
Change-Id: Ibefb7ebbaa4c43bf02c23f56c8e75442dafdbe99
Eunki, Hong [Tue, 7 Sep 2021 10:01:14 +0000 (19:01 +0900)]
[ATSPI] Hotfix for common profile with ATSPI.IsEnabled()
There is some issue with ATSPI in Ubuntu platform.
So we build atspi-wrap.cpp in tizen profile only.
But ATSPI::IsEnable(); API could be called for all profile
This patch hotfix this issue.
We move that function to other file.
(= control-devel-wrap.cpp which relation API defined)
Change-Id: I139ba72c5c3ad8ad2be4255c47e770d29675892e
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Wonsik Jung [Mon, 6 Sep 2021 10:08:02 +0000 (19:08 +0900)]
Add SetParent wrapper to Window-wrap
Add SetParent wrapper to window-wrap.
This wrapper has additional flag whether child is the above or below of the parent.
Change-Id: If9349de78f52fb20aeee54f7095bf6da3306e5b7
Seungho BAEK [Mon, 6 Sep 2021 05:44:46 +0000 (05:44 +0000)]
Merge "Bind slide transition" into devel/master
Adeel Kazmi [Fri, 3 Sep 2021 15:11:33 +0000 (15:11 +0000)]
Merge "DALi Version 2.0.42" into devel/master
Adeel Kazmi [Fri, 3 Sep 2021 15:04:44 +0000 (16:04 +0100)]
DALi Version 2.0.42
Change-Id: I815b1fbbb002995dbd03b7427e63c4c361b962e4
seungho [Thu, 12 Aug 2021 12:49:57 +0000 (21:49 +0900)]
Bind Scale transition
Change-Id: I98f553c79754d1971d978df113f3fd87763ebc3a
Signed-off-by: seungho <sbsh.baek@samsung.com>
Seungho Baek [Thu, 5 Aug 2021 15:39:27 +0000 (00:39 +0900)]
Bind slide transition
Change-Id: I1bba15ec48c41ea725f5db792cdaee9e0f565ad1
Signed-off-by: Seungho Baek <sbsh.baek@samsung.com>
JunsuChoi [Thu, 2 Sep 2021 07:18:01 +0000 (16:18 +0900)]
CanvasView: Change int type to unsigned int for index value
Change-Id: I5e2134e5b7a698299e165becdab85fdaf28efb70
joogab yun [Mon, 30 Aug 2021 05:07:30 +0000 (05:07 +0000)]
Merge "Binding KEYBOARD_FOCUSABLE_CHILDREN property" into devel/master
Seungho BAEK [Mon, 30 Aug 2021 00:59:52 +0000 (00:59 +0000)]
Merge "Refactoring transition and fadeTransition" into devel/master
David Steele [Fri, 27 Aug 2021 11:43:13 +0000 (11:43 +0000)]
Merge "DALi Version 2.0.41" into devel/master
Adam Bialogonski [Fri, 27 Aug 2021 09:49:51 +0000 (10:49 +0100)]
DALi Version 2.0.41
Change-Id: I5f13e95527f9b835aff2671bae7ba3dc2171803c
seungho [Tue, 17 Aug 2021 07:05:51 +0000 (16:05 +0900)]
Refactoring transition and fadeTransition
Change-Id: I8dc0d2f276540a0c2926fbfc96c945254d682e0e
Signed-off-by: seungho <sbsh.baek@samsung.com>
Bowon Ryu [Fri, 27 Aug 2021 02:01:13 +0000 (02:01 +0000)]
Merge "Add SelectionCleared signal" into devel/master
Wonsik Jung [Thu, 26 Aug 2021 08:36:23 +0000 (08:36 +0000)]
Merge "Add the window wrappers about input region" into devel/master
JIYUN YANG [Wed, 25 Aug 2021 07:08:57 +0000 (07:08 +0000)]
Merge "Implement more request interceptor APIs." into devel/master
Seoyeon Kim [Wed, 25 Aug 2021 05:16:58 +0000 (05:16 +0000)]
Merge "[ATSPI] Add C# binding of AtspiAccessibility::IsEnabled" into devel/master
joogab.yun [Thu, 19 Aug 2021 08:23:22 +0000 (17:23 +0900)]
Binding KEYBOARD_FOCUSABLE_CHILDREN property
Change-Id: Ifcbc6347a0ea1db99235dd35f63058541dec6fc6
Seoyeon Kim [Tue, 24 Aug 2021 04:50:42 +0000 (13:50 +0900)]
[ATSPI] Add C# binding of AtspiAccessibility::IsEnabled
- Added `IsEnabled()` to check accessibility state
Change-Id: Ia159916ea6149055b2fa45df72985d7c67095d8a
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
huayong.xu [Tue, 24 Aug 2021 02:58:19 +0000 (10:58 +0800)]
Implement more request interceptor APIs.
Change-Id: I06347ea1e9738d7686bfe3fc0700054c2088b5fe
Wonsik Jung [Fri, 6 Aug 2021 08:30:06 +0000 (17:30 +0900)]
Add the window wrappers about input region
Add the window wrappers about input region.
Add and Subtract region.
Change-Id: I2f23f63f11548d8e4c728f215e98fb076f214866
abdullah [Sun, 22 Aug 2021 14:49:11 +0000 (17:49 +0300)]
Add SelectionCleared signal
Change-Id: Ic8a67258876004449ec4b43c517c0f2c14ad06b0
Sara Samara [Mon, 9 Aug 2021 05:50:32 +0000 (08:50 +0300)]
[NUI] Support Public APIs - CopyText, CutText & PasteText
string CopyText(TextEditor textEditor) or string CopyText(TextField textField)
This function will copy the previously selected string into the clipboard and will return it.
string CutText(TextEditor textEditor) or string CutText(TextField textField)
This function will cut the previously selected string into the clipboard and will return it.
void PasteText(TextEditor textEditor) or void PasteText(TextField textField
This function will paste the most recent string in the clipboard stack into the text control.
corresponding dali-toolkit patch:
https://review.tizen.org/gerrit/c/platform/core/uifw/dali-toolkit/+/262080
Change-Id: I668510d999f2e4a36b50ffc57d28912cba288220
Seoyeon Kim [Mon, 23 Aug 2021 08:39:18 +0000 (08:39 +0000)]
Merge "[NUI] Add SelectionChanged event" into devel/master
JunsuChoi [Fri, 13 Aug 2021 02:06:30 +0000 (11:06 +0900)]
Add CanvasView::Shape::AddPath api binder
Change-Id: I3484511ce5a694542a7d8b50032dab749a4cbfb3
Adeel Kazmi [Fri, 20 Aug 2021 11:20:47 +0000 (11:20 +0000)]
Merge "DALi Version 2.0.40" into devel/master
David Steele [Fri, 20 Aug 2021 11:18:57 +0000 (12:18 +0100)]
DALi Version 2.0.40
Change-Id: I6e7b435c3a7088415e233bc48a2042b7d2f33bb4
Bowon Ryu [Fri, 20 Aug 2021 07:21:58 +0000 (07:21 +0000)]
Merge "[NUI] Add CursorPositionChanged event" into devel/master
Bowon Ryu [Fri, 20 Aug 2021 02:30:20 +0000 (02:30 +0000)]
Merge "[NUI] Support min line size in texteditor" into devel/master
Eunki, Hong [Thu, 19 Aug 2021 07:23:15 +0000 (16:23 +0900)]
Fix PixelData ReleaseFunction type + Remove memoryleak potential
In dali-wrap.cpp, PixelData's buffer always create by new method.
But the releaseFunction used by input value.
So I fixed the ReleaseFunctoin type ans DELETE_ARRAY.
+
It have potential of memory leak when we got some exceptions during PixelData::New();
So I add every memory release routines inside of catch routine
+
Rename each arguments relative with PixelData
Change-Id: I7cc3b31049e9d3336469b9aeb22d8e889fd2e03b
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
abdullah [Mon, 9 Aug 2021 08:48:36 +0000 (11:48 +0300)]
[NUI] Add SelectionChanged event
related patch : https://review.tizen.org/gerrit/c/platform/core/uifw/dali-toolkit/+/262091
Change-Id: Ifd352980d2d82cec2617580500102425dcfa32cc
abdullah [Mon, 9 Aug 2021 12:17:36 +0000 (15:17 +0300)]
[NUI] Add CursorPositionChanged event
Change-Id: I53bdebedeb5ced7061b392e9770389dfc24944b1
Taehyub Kim [Fri, 13 Aug 2021 12:50:46 +0000 (21:50 +0900)]
RiveAnimationView: add build configuration not to support TV AV Profile
Change-Id: Ib1344f99eef948d1ee1d14ff309cced7b8939abc
David Steele [Fri, 13 Aug 2021 13:04:04 +0000 (13:04 +0000)]
Merge "DALi Version 2.0.39" into devel/master
Adeel Kazmi [Fri, 13 Aug 2021 12:46:57 +0000 (13:46 +0100)]
DALi Version 2.0.39
Change-Id: Ie4d00f461618ec7dbbf9287c2b3636e5c066bf45
JunsuChoi [Fri, 13 Aug 2021 03:06:19 +0000 (12:06 +0900)]
CanvasView: Apply code formatter
Change-Id: I2b421cc77fe8cf65d117cbb0b97fa8715a4fe10f
junsu choi [Fri, 13 Aug 2021 02:00:17 +0000 (02:00 +0000)]
Merge "Add CanvasRenderer::Picture class binder" into devel/master
junsu choi [Fri, 13 Aug 2021 02:00:11 +0000 (02:00 +0000)]
Merge "Add CanvasRenderer::Gradient, LinearGradient, RadialGradient binder" into devel/master