Seungho Baek [Wed, 13 Jan 2021 05:58:54 +0000 (14:58 +0900)]
[Tizen] Adds transition effect
Change-Id: Ie32632d0d8d0b91fe840de56f7bab4a4fed1557f
Signed-off-by: Seungho Baek <sbsh.baek@samsung.com>
Eunki, Hong [Fri, 22 Jan 2021 09:20:05 +0000 (18:20 +0900)]
[Tizen] ColorVisual can use both BLUR_RADIUS and CORNER_RADIUS and vector4 corner radius
modify shader to use blur_radius and corner_radius both of them
Change-Id: I65315709a7dff4e574f645b370c950e03d00fcfe
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
JunsuChoi [Wed, 31 Mar 2021 04:23:53 +0000 (13:23 +0900)]
[Tizen] svg-visual: Add info log message for debug
In Svg-Visual, When loading a file, add a log message to check which file was loaded.
Change-Id: Ib45f5efcf848f9c12d12119a9488f485003c29ab
Bowon Ryu [Tue, 30 Mar 2021 04:31:46 +0000 (13:31 +0900)]
[Tizen] Implements CanvasView control
This reverts commit
25826b349f7abc8c0b2e87f850ef4ed49d0c6987.
Bowon Ryu [Tue, 30 Mar 2021 04:31:22 +0000 (13:31 +0900)]
[Tizen] Add AutofillContainer class and autofill implementation
This reverts commit
197c25365e56cb2f3f7f89012765b26824043597.
Change-Id: Ia16778c31fccde75eafefb04e3b252364a6ada22
Bowon Ryu [Tue, 30 Mar 2021 04:30:29 +0000 (13:30 +0900)]
Merge branch 'devel/master' into tizen
Bowon Ryu [Tue, 30 Mar 2021 04:30:11 +0000 (13:30 +0900)]
Revert "[Tizen] Add AutofillContainer class and autofill implementation"
This reverts commit
a9bc922494989e2faf70249335d32e24d1e95126.
Bowon Ryu [Tue, 30 Mar 2021 04:30:03 +0000 (13:30 +0900)]
Revert "[Tizen] Implements CanvasView control"
This reverts commit
e9d1989e2c4c97a7c20cfaa1e99942dd52924c33.
Bowon Ryu [Tue, 30 Mar 2021 04:29:57 +0000 (13:29 +0900)]
Revert "[Tizen] Add parameter (bool immediate) to TextChanged signal in interface"
This reverts commit
0250415b791ea823d1f63d32644b194396ca500e.
Adeel Kazmi [Mon, 29 Mar 2021 16:39:49 +0000 (17:39 +0100)]
(Automated Tests) Sync
Change-Id: Ia6db5a3375117c53050ec07d156e4d574b307a79
Heeyong Song [Wed, 24 Mar 2021 04:41:36 +0000 (13:41 +0900)]
Fix Coverity issues
Change-Id: I5a1bad11baf88116810fdd976fb882047f01f0da
JIYUN YANG [Mon, 29 Mar 2021 07:14:51 +0000 (07:14 +0000)]
Merge "Add callbacks for form repost decision and frame rendering." into devel/master
Bowon Ryu [Wed, 24 Mar 2021 10:17:05 +0000 (19:17 +0900)]
[Tizen] Add parameter (bool immediate) to TextChanged signal in interface
virtual void TextChanged(bool immediate) = 0;
using immediate, can decide whether we only emit the signal when OnRelayout() is called next time,
otherwise emits it immediately.
* there is a issue that the timing of callback calls has been delayed
due to a recent patch that limits unnecessary callbacks.
(
33ccee79d16a90d5f7ab427de1503ccc5bee4324)
Because of this, there is a problem that the TC like example below fails.
This patch can prevents the following issues.
/* example */
bool textChanged;
...
static void OnTextChanged(TextField control)
{
textChanged = true;
}
...
field.TextChangedSignal().Connect(&OnTextChanged);
textChanged = false;
field.SetProperty(TextField::Property::TEXT, "hello");
DALI_TEST_CHECK(textChanged); // At this point, textChanged is false, so TC Fail occurs.
/* example */
Change-Id: If0a331c56f35eae931b34d128b4fe4282fc686b6
Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
JunsuChoi [Mon, 29 Mar 2021 06:19:19 +0000 (15:19 +0900)]
[Tizen] Implements CanvasView control
This reverts commit
e16c5f0c01a40b17bb560e0ff0d2db77e110dc5e.
JunsuChoi [Mon, 29 Mar 2021 06:19:01 +0000 (15:19 +0900)]
[Tizen] Add AutofillContainer class and autofill implementation
This reverts commit
3b30585b93df0cbeff66bdd3805c9da6844812b8.
JunsuChoi [Mon, 29 Mar 2021 06:18:00 +0000 (15:18 +0900)]
Merge branch 'devel/master' into tizen
Change-Id: Ic734625f01c66f9e581c2eae340eadc3742b2a3d
JunsuChoi [Mon, 29 Mar 2021 06:17:53 +0000 (15:17 +0900)]
Revert "[Tizen] Change BuildRequires of dali2-toolkit to Requires"
This reverts commit
1919b30263c3af08bcd7897806125ceabd0c8874.
JunsuChoi [Mon, 29 Mar 2021 06:17:48 +0000 (15:17 +0900)]
Revert "[Tizen] Add AutofillContainer class and autofill implementation"
This reverts commit
468bd324f4d7528b32125ff77526087690e1d45b.
JunsuChoi [Mon, 29 Mar 2021 06:17:43 +0000 (15:17 +0900)]
Revert "[Tizen] Implements CanvasView control"
This reverts commit
3e88aa65cf13297023495345b7f51bd1afedeb07.
JunsuChoi [Thu, 24 Dec 2020 06:59:30 +0000 (15:59 +0900)]
[Tizen] Implements CanvasView control
Control for drawing Vector Primitives.
CanvasView can draw a shape in its internal buffer
by adding a Dali::CanvasRenderer::Shape object and calling Commit().
Dali::CanvasRenderer::Shape is a command list based on Path.
Fill and Stroke properties can be set using setters and getters.
Dali::CanvasRenderer::Drawable is a parent class of Dali::CanvasRenderer::Shape and
it has common class of classes to be added later (Scene, etc.).
Note:
Currently, the CanvasView's buffer is using PixelData.
This buffer strategy will be changed to tbmBuffer in the future.
[API List]
class CanvasView : public control
New
AddDrawable
Change-Id: Id06d2c48b735b3ff0028c45cfd0db81e3a6182ec
Bowon Ryu [Mon, 29 Mar 2021 04:05:52 +0000 (04:05 +0000)]
Merge "Add OPTION_DIVIDER_PADDING property to TextSelectionPopup" into devel/master
huayong.xu [Wed, 24 Feb 2021 09:43:46 +0000 (17:43 +0800)]
Add callbacks for form repost decision and frame rendering.
This patch is to add callbacks for form repost decision and frame
rendering in web view.
Change-Id: I801b5dddcceae2e68f43c5883f576ef988adb112
JIYUN YANG [Mon, 29 Mar 2021 02:32:26 +0000 (02:32 +0000)]
Merge "Add some properties into web view" into devel/master
joogab yun [Mon, 29 Mar 2021 00:57:30 +0000 (00:57 +0000)]
Merge "Add parameter (bool immediate) to TextChanged signal in interface" into devel/master
Adeel Kazmi [Fri, 26 Mar 2021 20:19:16 +0000 (20:19 +0000)]
Merge branch 'devel/graphics' into devel/master
Change-Id: Idbe114ce2fd0960111679c58730f34a15f8b4b32
Adeel Kazmi [Fri, 26 Mar 2021 19:41:52 +0000 (19:41 +0000)]
(Automated Tests) Sync Tests
Change-Id: Ibf4b75ba259dee161fef22fb45477e2753c527b7
Adeel Kazmi [Fri, 26 Mar 2021 16:22:52 +0000 (16:22 +0000)]
Merge branch 'devel/master' into devel/graphics
Change-Id: I1c4d2148118bf84173c014185deb423f0df2916e
Adeel Kazmi [Fri, 26 Mar 2021 12:56:16 +0000 (12:56 +0000)]
Merge "DALi Version 2.0.19" into devel/master
Adeel Kazmi [Fri, 26 Mar 2021 11:00:46 +0000 (11:00 +0000)]
DALi Version 2.0.19
Change-Id: I2ef220ec75e8aa520f9c7229f8686debfd3a6215
Fang Xiaohui [Wed, 3 Mar 2021 06:57:33 +0000 (14:57 +0800)]
Add some properties into web view
ewk_view_bg_color_set
ewk_view_clear_tiles_on_hide_enabled_set
ewk_view_tile_cover_area_multiplier_set
ewk_view_set_cursor_by_client
ewk_view_text_selection_text_get
Change-Id: I353c858caf82034c4f95c283057bdb8fbc8f2132
Bowon Ryu [Wed, 24 Mar 2021 10:17:05 +0000 (19:17 +0900)]
Add parameter (bool immediate) to TextChanged signal in interface
virtual void TextChanged(bool immediate) = 0;
using immediate, can decide whether we only emit the signal when OnRelayout() is called next time,
otherwise emits it immediately.
* there is a issue that the timing of callback calls has been delayed
due to a recent patch that limits unnecessary callbacks.
(
33ccee79d16a90d5f7ab427de1503ccc5bee4324)
Because of this, there is a problem that the TC like example below fails.
This patch can prevents the following issues.
/* example */
bool textChanged;
...
static void OnTextChanged(TextField control)
{
textChanged = true;
}
...
field.TextChangedSignal().Connect(&OnTextChanged);
textChanged = false;
field.SetProperty(TextField::Property::TEXT, "hello");
DALI_TEST_CHECK(textChanged); // At this point, textChanged is false, so TC Fail occurs.
/* example */
Change-Id: If0a331c56f35eae931b34d128b4fe4282fc686b6
Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
JIYUN YANG [Fri, 26 Mar 2021 06:48:14 +0000 (06:48 +0000)]
Merge "Support mouse & wheel events in web view." into devel/master
huayong.xu [Tue, 29 Dec 2020 06:20:19 +0000 (14:20 +0800)]
Support mouse & wheel events in web view.
Mouse and wheel events support are added in web view.
Change-Id: I89bf564cf49a1448fccfd9df90bc95076448b4e8
Wonsik Jung [Thu, 25 Mar 2021 05:00:11 +0000 (05:00 +0000)]
Merge "Add automated-test for grabHandleColor property" into devel/master
Bowon Ryu [Wed, 24 Mar 2021 12:51:32 +0000 (21:51 +0900)]
Add OPTION_DIVIDER_PADDING property to TextSelectionPopup
Change-Id: I684cc8192d1bddaa162ea41870e1f162c8ff2832
Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
Seoyeon Kim [Thu, 25 Mar 2021 01:30:52 +0000 (01:30 +0000)]
Merge "[AT-SPI] EmitStateChanged is called only when the button is highlighted" into devel/master
Bowon Ryu [Wed, 24 Mar 2021 07:51:22 +0000 (16:51 +0900)]
Add automated-test for grabHandleColor property
Change-Id: I86258dc73353e99a52872eaeca1de678139ac5e8
Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
Bowon Ryu [Wed, 24 Mar 2021 04:24:32 +0000 (04:24 +0000)]
Merge "support grabHandleColor property to TextField/TextEditor" into devel/master
Wonsik Jung [Sat, 27 Feb 2021 13:25:11 +0000 (22:25 +0900)]
Support the synchronization of changing the video player's z-order
If one video view moves the other above or below,
video player's z-order should be changed.
This patch is for supporting that.
Change-Id: I38009d93616d2ef225366d88864e9742b5846e6f
Wonsik Jung [Wed, 24 Mar 2021 01:44:56 +0000 (01:44 +0000)]
Merge "Support the synchronization of window/screen rotation in Video Player." into devel/master
Adeel Kazmi [Tue, 23 Mar 2021 17:11:51 +0000 (17:11 +0000)]
(NPatchVisual) Ensure we're still running when removing in the destructor
Change-Id: I039bcd2e7630a2b3782ad88693b24176aeedbf0b
Adeel Kazmi [Tue, 23 Mar 2021 17:11:51 +0000 (17:11 +0000)]
(NPatchVisual) Ensure we're still running when removing in the destructor
Change-Id: I039bcd2e7630a2b3782ad88693b24176aeedbf0b
Wonsik Jung [Sun, 7 Mar 2021 21:55:22 +0000 (06:55 +0900)]
Support the synchronization of window/screen rotation in Video Player.
If video player works with underlay mode and window rotation occurs,
video player should be rotated with same window rotation angle.
Screen rotation is same case, too.
This patch is to support that.
Change-Id: I6aec7625e3663a5ebdfb6273df3b92cfb60560ed
Bowon Ryu [Tue, 23 Mar 2021 04:52:56 +0000 (13:52 +0900)]
support grabHandleColor property to TextField/TextEditor
Change-Id: I4ae47e2abd2cb1200eaed7fb404aaa58e48ecc55
Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
Sara Samara [Sun, 25 Oct 2020 11:27:27 +0000 (14:27 +0300)]
[Dali-toolkit] Restrict text ui handles to prevent going outside Text Controls
Steps to generate the issue:
1- Highlight the text in the TextEditor and grab the selection handle. Or you can drag the single handle without selecting the text.
2- Drag it to the right, left, up or down.
3- Notice how it goes outside of the TextEditor bounds.
//Demo Code:
***********
using namespace Dali;
using namespace Dali::Toolkit;
class SimpleApp : public ConnectionTracker
{
public:
SimpleApp(Application& application)
: mApplication(application)
{
mApplication.InitSignal().Connect(this, &SimpleApp::Create);
}
void Create(Application& application)
{
Window window = application.GetWindow();
const float TOOLBAR_HEIGHT_PERCENTAGE = 0.05f;
window.SetBackgroundColor(Vector4(0.04f, 0.345f, 0.392f, 1.0f));
const Vector2 windowSize = window.GetSize();
const float toolBarHeight = TOOLBAR_HEIGHT_PERCENTAGE * windowSize.height;
const Vector3 TEXT_EDITOR_RELATIVE_SIZE(0.9f, 0.5f, 1.0f);
const Vector4 TEXT_EDITOR_BACKGROUND_COLOR(1.f, 1.f, 1.f, 0.15f);
mEditor = TextEditor::New();
mEditor.SetProperty(Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_CENTER);
mEditor.SetProperty(Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_CENTER);
mEditor.SetProperty(Actor::Property::POSITION, Vector3(0.f, toolBarHeight * 2.0f, 0.f));
mEditor.SetResizePolicy(ResizePolicy::SIZE_RELATIVE_TO_PARENT, Dimension::ALL_DIMENSIONS);
mEditor.SetProperty(Actor::Property::SIZE_MODE_FACTOR, TEXT_EDITOR_RELATIVE_SIZE);
mEditor.SetBackgroundColor(TEXT_EDITOR_BACKGROUND_COLOR);
const Size boundingBoxSize(windowSize * TEXT_EDITOR_RELATIVE_SIZE.GetVectorXY());
Rect<int> boundingBox(0,
static_cast<int>(toolBarHeight),
static_cast<int>(boundingBoxSize.width),
static_cast<int>(boundingBoxSize.height - toolBarHeight));
mEditor.SetProperty(TextEditor::Property::DECORATION_BOUNDING_BOX, boundingBox);
mEditor.SetProperty(TextEditor::Property::TEXT_COLOR, Color::BLACK);
mEditor.SetProperty(TextEditor::Property::TEXT,
"Lorem ipsum dolor sit amet, aeque definiebas ea mei, posse iracundia ne cum.\n"
"Usu ne nisl maiorum iudicabit, veniam epicurei oporteat eos an.\n"
"Ne nec nulla regione albucius, mea doctus delenit ad!\n"
"Et everti blandit adversarium mei, eam porro neglegentur suscipiantur an.\n"
"Quidam corpora at duo. An eos possim scripserit?\n\n"
"Aťqui dicant sěnťenťíae aň vel!\n"
"Vis viris médiocrem elaboraret ét, verear civibus moderatius ex duo!\n"
"Án veri laborě iňtěgré quó, mei aď poššit lobortis, mei prompťa čonsťitůťó eů.\n"
"Aliquip sanctůs delicáta quí ěá, et natum aliquam est?\n"
"Asšúm sapěret usu ůť.\n"
"Síť ut apeirián laboramúš percipitur, sůas hařum ín éos?\n");
window.Add(mEditor);
}
private:
Application& mApplication;
TextEditor mEditor;
};
int DALI_EXPORT_API main(int argc, char** argv)
{
Application application = Application::New(&argc, &argv);
SimpleApp test(application);
application.MainLoop();
return 0;
}
***********
[Dali-toolkit] Restrict text ui handles to prevent going outside Text Controls
Change-Id: Iaf4d7daed106a2404e6d4ea5953e7a132dd1905f
joogab yun [Mon, 22 Mar 2021 05:09:27 +0000 (05:09 +0000)]
Merge "Implement CameraView." into devel/master
Seoyeon Kim [Mon, 22 Mar 2021 00:54:23 +0000 (00:54 +0000)]
Merge "Fix ClearHighlight() for custom highlight frames" into devel/master
Seoyeon Kim [Mon, 22 Mar 2021 00:54:03 +0000 (00:54 +0000)]
Merge "Make AccessibilityManager::SetCurrentFocusActor more usable" into devel/master
David Steele [Fri, 19 Mar 2021 10:45:40 +0000 (10:45 +0000)]
Merge "DALi Version 2.0.18" into devel/master
David Steele [Fri, 19 Mar 2021 10:34:09 +0000 (10:34 +0000)]
DALi Version 2.0.18
Change-Id: I4e3f30379ed8b49dfb3b59b124d236c4554d8183
David Steele [Fri, 19 Mar 2021 09:57:16 +0000 (09:57 +0000)]
Merge "Use broken image when animated image loading is failed." into devel/master
David Steele [Fri, 19 Mar 2021 09:12:36 +0000 (09:12 +0000)]
Merge "Change BuildRequires of dali2-toolkit to Requires" into devel/master
Joogab Yun [Tue, 9 Mar 2021 07:38:09 +0000 (16:38 +0900)]
Implement CameraView.
Change-Id: I94e99034374c224238d66a05579e733a5c3b8209
Artur Świgoń [Tue, 16 Mar 2021 13:52:48 +0000 (14:52 +0100)]
Fix ClearHighlight() for custom highlight frames
ClearHighlight() used GetHighlightActor() to retrieve the currently
displayed highlight frame in order to determine which actor to remove
from the scene graph. However, it is perfectly legal to
SetHighlightActor() while a highlight frame is displayed (takes effect
on the next GrabHighlight()), so the currently visible highlight frame
handle needs to be saved separately in order to be properly cleared.
Change-Id: Ibf41574bac66f9375b72b31d061195d0235621aa
Joogab Yun [Mon, 15 Mar 2021 10:17:04 +0000 (19:17 +0900)]
Unnecessary TextChanged callbacks are being called.
Change it to be called only once at the end.
example)
Typing "호두" on the keyboard
Whenever COMMIT/PREEDIT in OnInputMethodContextEvent(), TextChanged callback is called
OnTextFieldTextChanged(159) > [ㅎ] // PRE_EDIT
OnTextFieldTextChanged(159) > [호] // PRE_EDIT
OnTextFieldTextChanged(159) > [혿] // PRE_EDIT
OnTextFieldTextChanged(159) > [] // PRE_EDIT
OnTextFieldTextChanged(159) > [호] // COMMIT
OnTextFieldTextChanged(159) > [호두] // PRE_EDIT
If you change the text to call the TextChanged callback only once at the end of the change,
OnTextFieldTextChanged(159) > [ㅎ]
OnTextFieldTextChanged(159) > [호]
OnTextFieldTextChanged(159) > [혿]
OnTextFieldTextChanged(159) > [호두]
Change-Id: I039263bc156f0be161f37eeb1d0e6ecf39f9536c
David Steele [Mon, 15 Mar 2021 17:52:18 +0000 (17:52 +0000)]
Syncing Test harness for Scissor/Viewport
Change-Id: I66ef88eef4db358e319f8907c133252b73854e15
Eunki, Hong [Tue, 16 Mar 2021 09:15:04 +0000 (18:15 +0900)]
[Tizen] Add AutofillContainer class and autofill implementation
This reverts commit
18a61efd4d79d4b97c49a36a538772c114bbc75f.
Eunki, Hong [Tue, 16 Mar 2021 09:14:51 +0000 (18:14 +0900)]
[Tizen] Change BuildRequires of dali2-toolkit to Requires
This reverts commit
a949fd3b7913e070daefcca014ed03b42f0b7890.
Eunki, Hong [Tue, 16 Mar 2021 09:14:19 +0000 (18:14 +0900)]
Merge branch 'devel/master' into tizen
Eunki, Hong [Tue, 16 Mar 2021 09:14:03 +0000 (18:14 +0900)]
Revert "[Tizen] Change BuildRequires of dali2-toolkit to Requires"
This reverts commit
91a7dd3f236c0c4efe5c98735bd8db1884c36542.
Eunki, Hong [Tue, 16 Mar 2021 09:13:52 +0000 (18:13 +0900)]
Revert "[Tizen] Add AutofillContainer class and autofill implementation"
This reverts commit
b9f04e3cdacef3867471bf2f6c00c35ea94a4430.
David Steele [Fri, 12 Mar 2021 13:06:45 +0000 (13:06 +0000)]
Merge branch 'devel/master' into devel/graphics
Change-Id: I66582959adf92cfba582bc9fc660779a0ac37a54
Adam Bialogonski [Fri, 12 Mar 2021 10:51:10 +0000 (10:51 +0000)]
DALi Version 2.0.17
Change-Id: I9226d4ac45f7b062915bcad4201b70f6eb20a1f0
Maria Bialota [Thu, 11 Mar 2021 18:29:21 +0000 (19:29 +0100)]
[AT-SPI] EmitStateChanged is called only when the button is highlighted
Change-Id: I56de010792dc32cf011d27cd5a179fda680b62ba
David Steele [Tue, 9 Mar 2021 15:52:25 +0000 (15:52 +0000)]
Protecting test cases from memory scribbling
Modified 3 tcs which have scribbling on shutdown (VisualFactory
Singleton destroyed before visuals, due to scene still owning
actors with visuals).
Change-Id: I02c200d0094d6eb9803e617effc125ddb78faf46
JIYUN YANG [Thu, 11 Mar 2021 05:25:43 +0000 (05:25 +0000)]
Merge "Add APIs of webview settings." into devel/master
YoungGun Chun [Tue, 9 Mar 2021 08:04:55 +0000 (17:04 +0900)]
[Tizen] Add AutofillContainer class and autofill implementation
This reverts commit
51701703a3ebd0a1663949fef1b50597234c15de.
Change-Id: I122968e692ee70dcf215d2cf6cd8898939b5bf11
YoungGun Chun [Tue, 9 Mar 2021 08:04:07 +0000 (17:04 +0900)]
[Tizen] Change BuildRequires of dali2-toolkit to Requires
This reverts commit
aadee99eeaa480dbba8b127527044946daba6e93.
Change-Id: I070ade21300e41857ea3ef0ea95321e70a30e373
YoungGun Chun [Tue, 9 Mar 2021 08:03:25 +0000 (17:03 +0900)]
Merge branch 'devel/master' into tizen
YoungGun Chun [Tue, 9 Mar 2021 08:00:09 +0000 (17:00 +0900)]
Revert "[Tizen] Change BuildRequires of dali2-toolkit to Requires"
This reverts commit
9a7e7f792f8f74e717f0bddd84c3624ab32e562f.
Change-Id: Ief479220d55652887a7df75f3b3f8bc333627767
YoungGun Chun [Tue, 9 Mar 2021 07:59:07 +0000 (16:59 +0900)]
Revert "[Tizen] Add AutofillContainer class and autofill implementation"
This reverts commit
8e3222e5d9109e700476f2299f2a8e380fd09c2c.
Change-Id: I8e64cf459c49119a4b2faa2570ca0b32dacfda19
Richard Huang [Mon, 8 Mar 2021 14:18:09 +0000 (14:18 +0000)]
Test harness for UBO
Change-Id: Iff3b9687f8389015aefc24e9b64007a8a3f29252
Artur Świgoń [Mon, 8 Mar 2021 13:00:14 +0000 (14:00 +0100)]
Make AccessibilityManager::SetCurrentFocusActor more usable
Dali::Accessibility::Accessible::SetCurrentlyHighlightedActor() only
sets a private field in the AT-SPI bridge in dali-adaptor, whereas
Dali::Toolkit::DevelControl::GrabAccessibilityHighlight() calls
Dali::Accessibility::Component::GrabHighlight() which actually attaches
a highlight frame to an actor.
Change-Id: I8898ff96fdd97898c2bd476e4faa75cbc0574986
seungho [Mon, 15 Feb 2021 06:47:14 +0000 (15:47 +0900)]
Use broken image when animated image loading is failed.
Change-Id: I7b2e10ec89e4eeff2eacf5823691ff11874dc43e
Signed-off-by: seungho <sbsh.baek@samsung.com>
David Steele [Fri, 5 Mar 2021 13:51:27 +0000 (13:51 +0000)]
Syncing Test harness update for Sampler
Change-Id: I8b3e9b4d8a8642fe145bc5639a547f12ae26abf6
guowei.wang [Mon, 1 Mar 2021 03:01:39 +0000 (11:01 +0800)]
Add APIs of webview settings.
API added list:
ewk_settings_cache_builder_enabled_set
ewk_settings_uses_scrollbar_thumb_focus_notifications_set
ewk_settings_do_not_track_set
ewk_settings_auto_fitting_get
ewk_settings_auto_fitting_set
ewk_settings_plugins_enabled_get
ewk_settings_plugins_enabled_set
ewk_settings_private_browsing_enabled_get
ewk_settings_private_browsing_enabled_set
ewk_settings_link_magnifier_enabled_get
ewk_settings_link_magnifier_enabled_set
ewk_settings_uses_keypad_without_user_action_get
ewk_settings_uses_keypad_without_user_action_set
ewk_settings_autofill_password_form_enabled_get
ewk_settings_autofill_password_form_enabled_set
ewk_settings_form_candidate_data_enabled_get
ewk_settings_form_candidate_data_enabled_set
ewk_settings_text_selection_enabled_get
ewk_settings_text_selection_enabled_set
ewk_settings_text_autosizing_enabled_get
ewk_settings_text_autosizing_enabled_set
ewk_settings_uses_arrow_scroll_get
ewk_settings_uses_arrow_scroll_set
ewk_settings_clipboard_enabled_get
ewk_settings_clipboard_enabled_set
ewk_settings_ime_panel_enabled_get
ewk_settings_ime_panel_enabled_set
Change-Id: I12b0dc4e362e7605e709941175a83397096c6ca6
Richard Huang [Fri, 5 Mar 2021 11:52:05 +0000 (11:52 +0000)]
DALi Version 2.0.16
Change-Id: Ida2550e9db4dfb62aacf9dae5335bdbdecb22a5a
joogab yun [Thu, 4 Mar 2021 06:53:55 +0000 (06:53 +0000)]
Merge "Prevent height adjustment of TextLabel" into devel/master
Bowon Ryu [Thu, 4 Mar 2021 05:40:00 +0000 (14:40 +0900)]
Prevent height adjustment of TextLabel
Cursor position issue occurs when the text control is editable.
isEditable flag prevents wrong resizing in TextLabel.
Change-Id: I15eb8ec37bead595caaf600f9a1f7163c3c98bcd
Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
David Steele [Wed, 3 Mar 2021 17:21:23 +0000 (17:21 +0000)]
Syncing Test harness updates for Native Image
Change-Id: I7103c24f187f1b18fc37ad2f3595446d9ef53134
Artur Świgoń [Fri, 5 Feb 2021 16:07:34 +0000 (17:07 +0100)]
Promote Control::Impl::AccessibleImpl to DevelControl
Change-Id: I171cf49ea494791435a4849970ea0ec0c3952ec3
joogab yun [Wed, 3 Mar 2021 01:05:13 +0000 (01:05 +0000)]
Merge "Fixed scroll issue when use padding of TextField/TextEditor" into devel/master
joogab yun [Wed, 3 Mar 2021 01:04:40 +0000 (01:04 +0000)]
Merge "fix wrong cursor position in TextField" into devel/master
Wonsik Jung [Wed, 3 Mar 2021 00:42:19 +0000 (09:42 +0900)]
[Tizen] Add AutofillContainer class and autofill implementation
This reverts commit
fec6096b6ace8c65fd7e67b2705b4609dda9dec1.
Wonsik Jung [Wed, 3 Mar 2021 00:41:50 +0000 (09:41 +0900)]
[Tizen] Change BuildRequires of dali2-toolkit to Requires
This reverts commit
164bffe101f298f8fc985d3eedcc28c30fd45bfe.
Wonsik Jung [Wed, 3 Mar 2021 00:41:39 +0000 (09:41 +0900)]
Merge branch 'devel/master' into tizen
Wonsik Jung [Wed, 3 Mar 2021 00:41:25 +0000 (09:41 +0900)]
Revert "[Tizen] Change BuildRequires of dali2-toolkit to Requires"
This reverts commit
73816e5bb2d32f55765760478e0cf357841ee02a.
Wonsik Jung [Wed, 3 Mar 2021 00:41:20 +0000 (09:41 +0900)]
Revert "[Tizen] Add AutofillContainer class and autofill implementation"
This reverts commit
13ec9363f0703c890bee8fec95f33e9e22f430a6.
David Steele [Tue, 2 Mar 2021 12:26:40 +0000 (12:26 +0000)]
Syncing Test harness updates
Change-Id: If7f9dc0a05eb8c7cafd4aff594ad336097bb7a5e
Adeel Kazmi [Mon, 1 Mar 2021 19:11:32 +0000 (19:11 +0000)]
Merge branch 'devel/master' into devel/graphics
Change-Id: Ie75ba5871fbfe21c539f14167d20518ef12b7921
David Steele [Fri, 26 Feb 2021 17:27:49 +0000 (17:27 +0000)]
Test harness updates
Change-Id: I512d0933dacdfbd4f21085e7495d3bc0dd906c68
Adam Bialogonski [Fri, 26 Feb 2021 16:29:57 +0000 (16:29 +0000)]
Shaders, Pipeline, Program test harness update
Change-Id: Id5fadf14b543fe09d9e175e8660c7b2192a1f597
David Steele [Fri, 26 Feb 2021 12:43:34 +0000 (12:43 +0000)]
DALi Version 2.0.15
Change-Id: I55fe7a105f367f566779479ef4d03e572a645942
David Steele [Thu, 25 Feb 2021 13:36:54 +0000 (13:36 +0000)]
Changed build dependency order
Previously, doc_doxygen was building in parallel with
dali2-scene-loader and occasionally picking up a temporary file from
the latter.
Made doc_doxygen dependent on dali2-scene-loader so that it no longer
builds in parallel, and instead, builds afterwards.
Removed obsolete tags from doxygen config files.
Change-Id: If429a202c6611dd287c0cbc45e1720444b80eee0
Signed-off-by: David Steele <david.steele@samsung.com>
Bowon Ryu [Thu, 25 Feb 2021 05:21:03 +0000 (05:21 +0000)]
Merge "dali-toolkit: fix wrong TextChanged() signal" into devel/master
hosangKim [Wed, 24 Feb 2021 08:31:25 +0000 (17:31 +0900)]
[Tizen] Add AutofillContainer class and autofill implementation
This reverts commit
5b305f460713361cf5c0ab533d003b2f812e7551.
hosangKim [Wed, 24 Feb 2021 08:31:03 +0000 (17:31 +0900)]
[Tizen] Change BuildRequires of dali2-toolkit to Requires
This reverts commit
f4946bd128aa9554dc873d767fd19fe35afb75d5.
hosangKim [Wed, 24 Feb 2021 08:30:49 +0000 (17:30 +0900)]
Merge branch 'devel/master' into tizen
hosangKim [Wed, 24 Feb 2021 08:30:44 +0000 (17:30 +0900)]
Revert "[Tizen] Change BuildRequires of dali2-toolkit to Requires"
This reverts commit
de84baa682d9c19fc2b86076d6df023e75f215cc.
hosangKim [Wed, 24 Feb 2021 08:30:36 +0000 (17:30 +0900)]
Revert "[Tizen] Add AutofillContainer class and autofill implementation"
This reverts commit
aa1fca5c85f39bdc470963afcb7b453c13ad8b42.