Taehyub Kim [Fri, 18 Feb 2022 04:13:05 +0000 (04:13 +0000)]
Merge "dnd: add drag and drop csharp binding codes" into devel/master
Seoyeon Kim [Thu, 17 Feb 2022 10:45:03 +0000 (10:45 +0000)]
Merge "[AT-SPI] Singleton AccessibilityDelegate" into devel/master
Taehyub Kim [Fri, 17 Dec 2021 05:54:44 +0000 (14:54 +0900)]
dnd: add drag and drop csharp binding codes
Change-Id: Ia537714144d72a7b5d8304f754363e17270093c2
Adeel Kazmi [Fri, 11 Feb 2022 12:07:19 +0000 (12:07 +0000)]
Merge "DALi Version 2.1.9" into devel/master
David Steele [Fri, 11 Feb 2022 12:02:00 +0000 (12:02 +0000)]
DALi Version 2.1.9
Change-Id: If3c6028a664b7650ef74343b20af34ae2ec55c56
joogab.yun [Fri, 11 Feb 2022 06:14:17 +0000 (15:14 +0900)]
Changed from Adaptor api to Window api about FeedEvents
Change-Id: I3915a9b2a08dfc87b2b85e554e0a448dcee20d5e
joogab.yun [Fri, 11 Feb 2022 02:14:55 +0000 (11:14 +0900)]
Add FeedTouchPoint and FeedWheelEvent api binding
Change-Id: I82b947086e17fec100cb84f2b54d662044dd8c7b
Artur Świgoń [Fri, 21 Jan 2022 17:25:26 +0000 (18:25 +0100)]
[AT-SPI] Singleton AccessibilityDelegate
The AccessibilityDelegate structure contains function pointers
(initialized in NUI) which allow to redirect virtual C++ Accessible
method calls to virtual C# View method calls (NUI does not have the
concept of Accessible objects, but customizes Accessibility behaviour by
overriding virtual methods in View instead). These function pointers
were initialized from anonymous functions in C# that implicitly captured
'this', which meant that every View / NUIViewAccessible had to have its
own copy of AccessibilityDelegate.
However, if all methods from AccessibilityDelegate had an extra
parameter (an Actor handle or a RefObject* to a View) which would allow
to redirect the virtual method call to the right C# object, then having
only one copy of AccessibilityDelegate would be enough. This patch does
exactly that (together with the complementary TizenFX change).
Since there is no need to increase the reference count for the duration
of the method call, RefObject* was selected as the type of the 'self'
parameter. Passing other objects (specifically, the 'child' parameter of
ScrollToChild) still employs creating a new Actor handle (i.e.
increasing the reference count).
Change-Id: Ie51f0ea204f9d1a08723adbd2c1d7b4bf1bcbb43
Artur Świgoń [Mon, 24 Jan 2022 12:16:55 +0000 (13:16 +0100)]
[AT-SPI] Clean up interops for Accessibility::States
This patch:
* Removes legacy interops for Accessibility::States.
* Removes the '2' suffix from
CSharp_Dali_Toolkit_DevelControl_NotifyAccessibilityStateChange and
CSharp_Dali_Accessibility_EmitAccessibilityStateChangedEvent.
* Adds a missing 's' to the end of
CSharp_Dali_Toolkit_DevelControl_GetAccessibilityStates.
* Makes AccessibilityDelegate::calculateStates return the bitset
directly as an std::uint64_t instead of a heap-allocated object (in sync
with the complementary NUI change) to avoid an unnecessary memory
allocation.
* Changes the second parameter of
CSharp_Dali_Accessibility_EmitAccessibilityStateChangedEvent to a single
integer (single State value) instead of a bitmask (potentially multiple
States) and removes ugly conversion code (in sync with a modified
parameter type in NUI).
* Leverages the new BitSet(std::uint64_t) constructor and GetRawData64()
method from Accessibility::BitSet to avoid having to perform bit
operations when serializing Accessibility::States.
Change-Id: I166cf63c70260bea9e3a19d1e3dd08d3990e5097
dongsug song [Mon, 7 Feb 2022 02:35:09 +0000 (02:35 +0000)]
Merge "Set http response body in binary format." into devel/master
Adeel Kazmi [Fri, 4 Feb 2022 15:36:10 +0000 (15:36 +0000)]
Merge "DALi Version 2.1.8" into devel/master
Adeel Kazmi [Fri, 4 Feb 2022 13:15:17 +0000 (13:15 +0000)]
DALi Version 2.1.8
Change-Id: I77dc34a18c0d951f52480fb0b805a339c47233d1
Bowon Ryu [Fri, 4 Feb 2022 06:02:05 +0000 (06:02 +0000)]
Merge "Add SelectionStarted Signal" into devel/master
Eunki, Hong [Mon, 24 Jan 2022 06:21:54 +0000 (15:21 +0900)]
Make NUI View/ImageView/TextLabel always DISABLE_STYLE_CNAHGED
Change-Id: Ia74dea0c6e10c17f43a5f614c7d9f460ae5bb3fc
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
David Steele [Fri, 28 Jan 2022 13:19:34 +0000 (13:19 +0000)]
Merge "DALi Version 2.1.7" into devel/master
Adam Bialogonski [Fri, 28 Jan 2022 12:10:56 +0000 (12:10 +0000)]
DALi Version 2.1.7
Change-Id: I9f4d4a227b65d6e3f0876b6c59b4bac2aed362cc
Eunki, Hong [Fri, 28 Jan 2022 10:29:36 +0000 (19:29 +0900)]
nullptr check of mHandler and mPostHandler
Same as above
Change-Id: Ic0dbbf7616dd5fc0a116ab7a7fda9808892da756
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Eunki, Hong [Fri, 28 Jan 2022 08:10:20 +0000 (17:10 +0900)]
Make ProcessorController can use PostProcess
Make ProcessorController::Process also be called in PostProcess time.
Also, make Awake function didn't have effort during ProcessEvent running.
Change-Id: I47638bc605f513be01f9c38d8faf1c5eccb377d1
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
abdullah [Wed, 19 Jan 2022 11:45:34 +0000 (13:45 +0200)]
Add SelectionStarted Signal
https://review.tizen.org/gerrit/c/platform/core/uifw/dali-toolkit/+/269516
Change-Id: I8f453456379e7f2506a7633f7a87905fa664b264
Shrouq Sabah [Mon, 9 Aug 2021 16:29:30 +0000 (19:29 +0300)]
[NUI] Add CharacterSpacing Property
The spaces between characters.
A positive value will make the characters far apart (expanded) and a negative value will bring them closer (condensed).
Change-Id: Ia07461744ffec48af66d46154eecda47e1a2075a
huayong.xu [Wed, 19 Jan 2022 10:30:35 +0000 (18:30 +0800)]
Set http response body in binary format.
Change-Id: I9265054da0e9e2437c097d4214534c7354a49331
Artur Świgoń [Fri, 21 Jan 2022 10:03:50 +0000 (11:03 +0100)]
[AT-SPI] Remove GetBoundAccessibilityObject
It is unclear what purpose this function meant to serve, but its
documentation is misleading, because it does exactly the same thing
as Accessible::Get.
Change-Id: I4e61606303a2a77333e7ebc42cfe280dd29c34e0
Richard Huang [Fri, 21 Jan 2022 11:45:01 +0000 (11:45 +0000)]
DALi Version 2.1.6
Change-Id: I5f5237d5189282f1cf7deff2b0834da25ba9bd9b
Seoyeon Kim [Tue, 18 Jan 2022 08:09:09 +0000 (08:09 +0000)]
Merge "[AT-SPI] Add DoGetChildren() override to NUIViewAccessible" into devel/master
Daekwang Ryu [Tue, 28 Dec 2021 05:41:17 +0000 (14:41 +0900)]
Change method names of GlWindow
It copies from GlView.
Change-Id: I4db90e37da3e11e6b7ec9ea1fd70cc7e12f2df27
David Steele [Fri, 14 Jan 2022 15:40:42 +0000 (15:40 +0000)]
DALi Version 2.1.5
Change-Id: I513eba8b631bf70e2707067ba3536a73efae5766
Artur Świgoń [Wed, 29 Dec 2021 07:59:35 +0000 (08:59 +0100)]
[AT-SPI] Add DoGetChildren() override to NUIViewAccessible
ActorAccessible now offers a simpler mechanism to customize children.
Change-Id: I67db9cf95790bc974e802d2c4a09b3b2ca44dc32
Bowon Ryu [Tue, 11 Jan 2022 13:10:55 +0000 (13:10 +0000)]
Merge "Add Strikethrough Property" into devel/master
Shrouq Sabah [Wed, 1 Sep 2021 15:30:25 +0000 (18:30 +0300)]
Add Strikethrough Property
Add Strikethrough Property to TextEditor, TextField and TextLabel
Add InputStrikethrough Property to TextEditor and TextField
The strikethrough map contains the following keys:
| %Property Name | Type | Required | Description |
|----------------------|----------|----------|--------------------------------------------------------------------------------------------------------------------|
| enable | BOOLEAN | No | True to enable the strikethrough or false to disable (the default value is false) |
| color | VECTOR4 | No | The color of the strikethrough (the default value is Color::BLACK) |
| height | FLOAT | No | The height of the strikethrough (the default value is 0)
Change-Id: I3098a64aba95f4b795c3307852e8aea766445c64
Seoyeon Kim [Tue, 11 Jan 2022 06:45:26 +0000 (06:45 +0000)]
Merge "Add a callback for navigation policy in csharp binder." into devel/master
David Steele [Fri, 7 Jan 2022 10:19:23 +0000 (10:19 +0000)]
Merge "DALi Version 2.1.4" into devel/master
Adam Bialogonski [Fri, 7 Jan 2022 10:06:01 +0000 (10:06 +0000)]
DALi Version 2.1.4
Change-Id: I55541b80c2d3f3b014e33ac515f9d0e8f8f21b9f
Bowon Ryu [Fri, 7 Jan 2022 02:45:46 +0000 (02:45 +0000)]
Merge "Add ENABLE_FONT_SIZE_SCALE property to text components" into devel/master
Bowon Ryu [Thu, 6 Jan 2022 05:43:50 +0000 (14:43 +0900)]
Add ENABLE_FONT_SIZE_SCALE property to text components
Change-Id: Ida7c56c367cec56707c892a49ece7424e22a1545
Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
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>
huayong.xu [Thu, 23 Dec 2021 10:30:44 +0000 (18:30 +0800)]
Add a callback for navigation policy in csharp binder.
Change-Id: I4344686986d3d47b3745fb4d026ef3a14b0aac3d
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