platform/core/uifw/dali-toolkit.git
3 years agoEnsure AnimatedVectorImageVisual doesn't hang app 62/246462/1
David Steele [Thu, 29 Oct 2020 16:58:41 +0000 (16:58 +0000)]
Ensure AnimatedVectorImageVisual doesn't hang app

Currently, if the AnimatedVectorImageVisual is not destroyed
on Application::Terminate, e.g. if it's actor is kept alive,
then the shutdown order is undefined, and may end up
trying to pend on a mutex which has already been destroyed,
in the dali-extension plugin.

(TizenVectorAnimationManager, which creates the mutex, is a
singleton that is created when first needed, but stays alive
until main() completes)

Prevented the destructor from finalizing in the plugin if
core has already been shutdown.

Change-Id: I9fe547eab4dc3f3e5a4655f5c8dcf96bf664d7e3

3 years agoMerge "Dali-Text: Keyboard Shortcut (language layout independent)" into devel/master
joogab yun [Thu, 29 Oct 2020 03:30:49 +0000 (03:30 +0000)]
Merge "Dali-Text: Keyboard Shortcut (language layout independent)" into devel/master

3 years agoDali-Text: Keyboard Shortcut (language layout independent) 39/244639/9
Ali Alzyod [Tue, 22 Sep 2020 16:37:38 +0000 (19:37 +0300)]
Dali-Text: Keyboard Shortcut (language layout independent)

Keyboard shortcuts like (CTRL+A) to select all text, will work regardless of keyboard language layout.

Before Change:
If keyboard language layout is Arabic, (CTRL+A) will not work.

After Change:
(CTRL+A) will work, regardless of language layout for keyboard.

Change-Id: I44708a85c9499dc54e0d36758f039c0907ee70a2

3 years agoUpdated patch-coverage.pl script 26/246126/1
David Steele [Fri, 23 Oct 2020 14:36:24 +0000 (15:36 +0100)]
Updated patch-coverage.pl script

Change-Id: If8394b2ababc4d6769b3ce04420c855778e0c4b5

3 years agoDALi Version 1.9.35 05/246105/1 dali_1.9.35
adam.b [Fri, 23 Oct 2020 10:45:12 +0000 (11:45 +0100)]
DALi Version 1.9.35

Change-Id: Iabc8524442885da5491f1d1d57de887698ae9aca

3 years agoMerge "(Text Controller Impl) Moved event handling related methods into a separate...
Adeel Kazmi [Thu, 22 Oct 2020 19:09:20 +0000 (19:09 +0000)]
Merge "(Text Controller Impl) Moved event handling related methods into a separate struct" into devel/master

3 years ago(Text Controller Impl) Moved event handling related methods into a separate struct 51/245751/5
Adeel Kazmi [Thu, 15 Oct 2020 08:57:27 +0000 (09:57 +0100)]
(Text Controller Impl) Moved event handling related methods into a separate struct

Change-Id: I0e9f942f7dce110467dd283c08859f6c97e2b4e6

3 years agoAdding new patch-coverage script 47/246047/1
David Steele [Thu, 22 Oct 2020 17:05:44 +0000 (18:05 +0100)]
Adding new patch-coverage script

Change-Id: I5e83b4d480f247247ae4348717b01cac2459ee9c

3 years agoReduce Cyclomatic Complexity of some methods in text-typesetter, transtion-data ... 52/245852/6
Adeel Kazmi [Fri, 16 Oct 2020 11:06:40 +0000 (12:06 +0100)]
Reduce Cyclomatic Complexity of some methods in text-typesetter, transtion-data & text-label

Change-Id: I7c9a5b8c2ffc59837b0e8bcf85f78fe96df1bf9c

3 years agoMerge "dali-toolkit: update text selection UI handles with selection properties"...
Adeel Kazmi [Wed, 21 Oct 2020 10:55:04 +0000 (10:55 +0000)]
Merge "dali-toolkit: update text selection UI handles with selection properties" into devel/master

3 years agoEnsure not to emit the resource ready signal during the callback 54/245354/4
Heeyong Song [Wed, 7 Oct 2020 11:58:26 +0000 (20:58 +0900)]
Ensure not to emit the resource ready signal during the callback

Change-Id: Icc496c34a11df14aae8b99affe846c14bca308fa

3 years agodali-toolkit: update text selection UI handles with selection properties 09/245709/2
Ali Alzyod [Wed, 14 Oct 2020 12:28:58 +0000 (15:28 +0300)]
dali-toolkit: update text selection UI handles with selection properties

sample code to produce the issue :

```
#include <dali-toolkit/dali-toolkit.h>
#include <dali-toolkit/devel-api/controls/text-controls/text-editor-devel.h>
#include <dali-toolkit/devel-api/controls/text-controls/text-field-devel.h>
#include <iostream>

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 = application.GetWindow();
    window.SetBackgroundColor(Vector4(0.04f, 0.345f, 0.392f, 1.0f));

    mTextEditor = TextEditor::New();
    mTextEditor.SetProperty(TextEditor::Property::TEXT, "Tex1\nTex2");
    mTextEditor.SetProperty(Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_CENTER);
    mTextEditor.SetProperty(Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_CENTER);
    mTextEditor.SetProperty(Actor::Property::SIZE, Vector2(60.0f, 60.0f));
    mTextEditor.SetProperty(Actor::Property::POSITION, Vector3(0.f, 0.f, 0.f));
    window.Add(mTextEditor);

    mBtnEditable = PushButton::New();
    mTextEditor.SetProperty(Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_CENTER);
    mTextEditor.SetProperty(Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_CENTER);
    mBtnEditable.SetProperty(Actor::Property::SIZE, Vector2(120.f, 80.f));
    mBtnEditable.SetProperty(Actor::Property::POSITION, Vector2(100, 220.f));
    mBtnEditable.SetBackgroundColor(Color::RED);
    mBtnEditable.SetProperty(Button::Property::LABEL, "select");
    mBtnEditable.ClickedSignal().Connect(this, &SimpleApp::OnButtonClicked);
    window.Add(mBtnEditable);
  }

  bool OnButtonClicked(Button button)
  {
    mTextEditor.SetProperty(DevelTextField::Property::SELECTED_TEXT_START, 0);
    mTextEditor.SetProperty(DevelTextField::Property::SELECTED_TEXT_END, 10);
    return true;
  }

private:
  Application& mApplication;
  TextEditor mTextEditor;
  PushButton mBtnEditable;
  Window window;
};

int DALI_EXPORT_API main(int argc, char** argv)
{
  Application application = Application::New(&argc, &argv);
  SimpleApp test(application);
  application.MainLoop();

  return 0;
}
```

Change-Id: I9f29db01d60a53e578ee2b584caceb9c94b2e0ea

3 years agoDALi Version 1.9.34 38/245838/1 dali_1.9.34
Richard Huang [Fri, 16 Oct 2020 10:31:32 +0000 (11:31 +0100)]
DALi Version 1.9.34

Change-Id: I3b2a4aedddd0748b69634aa1a84759c0c7f675ac

3 years ago(Text Controller) Moved event handling, InputFont & Placeholder related methods into... 21/245221/4
Adeel Kazmi [Mon, 5 Oct 2020 10:41:15 +0000 (11:41 +0100)]
(Text Controller) Moved event handling, InputFont & Placeholder related methods into separate structs

Change-Id: If7b2eb2bde0bbb9a9bf04bd37d1d679c7038f5e0

3 years agoMerge "Text selection refactoring" into devel/master
Adeel Kazmi [Tue, 13 Oct 2020 15:12:40 +0000 (15:12 +0000)]
Merge "Text selection refactoring" into devel/master

3 years agoFix doxygen comments 87/245587/1
Adeel Kazmi [Mon, 12 Oct 2020 19:47:34 +0000 (20:47 +0100)]
Fix doxygen comments

Change-Id: I465620e3dcce309ccd6aa4e00895dac81fcf9c05

3 years agoText selection refactoring 77/244477/13
ali198724 [Fri, 18 Sep 2020 16:16:53 +0000 (19:16 +0300)]
Text selection refactoring

1- Move all of selection text functionality into SelectableControlInterface
2- Support (SelectWholeText, SelectNone, GetSelectedText) in TextEditor

Change-Id: I4da66433a09e99be09f6bd027761c3ea49cfc9f5

3 years agoMerge "Dali-toolkit: Text controls crash fix" into devel/master
joogab yun [Mon, 12 Oct 2020 09:47:17 +0000 (09:47 +0000)]
Merge "Dali-toolkit: Text controls crash fix" into devel/master

3 years agoDALi Version 1.9.33 65/245465/1 dali_1.9.33
György Straub [Fri, 9 Oct 2020 13:06:01 +0000 (14:06 +0100)]
DALi Version 1.9.33

Change-Id: I7b3f6ebb89cfbf8ffe8bf20899af8f81df8dbc55

3 years agoMerge "Fix documentation for Text::EditableControlInterface interface override functi...
joogab yun [Thu, 8 Oct 2020 02:57:17 +0000 (02:57 +0000)]
Merge "Fix documentation for Text::EditableControlInterface interface override functions" into devel/master

3 years agoDali-toolkit: Text controls crash fix 50/245350/1
ali198724 [Wed, 7 Oct 2020 11:42:41 +0000 (14:42 +0300)]
Dali-toolkit: Text controls crash fix

Fix crash when delete characters after change text color

Run demo, then press backspace
```
//g++ -g -O0 main.cpp -o app `pkg-config --cflags --libs dali2-core dali2-adaptor dali2-adaptor-integration  dali2-toolkit`

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();
    window.SetBackgroundColor(Vector4(0.04f, 0.345f, 0.392f, 1.0f));

    TextField field = TextField::New();
    field.SetProperty(TextField::Property::TEXT, "Erase");
    field.SetProperty(TextField::Property::TEXT_COLOR, Vector4(0.0f, 1.0f, 1.0f, 1.0f)); // CYAN
    field.SetProperty(Actor::Property::PARENT_ORIGIN, ParentOrigin::CENTER);
    field.SetProperty(Actor::Property::SIZE, Vector2(300.f, 60.f));
    window.Add(field);
    field.SetKeyInputFocus();
  }

private:
  Application& mApplication;
};

int DALI_EXPORT_API main(int argc, char** argv)
{
  Application application = Application::New(&argc, &argv);
  SimpleApp test(application);
  application.MainLoop();

  return 0;
}

```

Change-Id: I2c13330f92746c73d32da71cced15c3b297126dc

3 years agoMerge "Refactor SvgVisual" into devel/master
Heeyong Song [Wed, 7 Oct 2020 06:48:50 +0000 (06:48 +0000)]
Merge "Refactor SvgVisual" into devel/master

3 years agoRefactor SvgVisual 28/244728/6
Heeyong Song [Wed, 23 Sep 2020 15:05:06 +0000 (00:05 +0900)]
Refactor SvgVisual

Change-Id: I34399172bbb20220cbca031004f3e3bd805d006c

3 years agoMerge "use string_view to avoid temporary string allocation." into devel/master
Adeel Kazmi [Tue, 6 Oct 2020 09:04:45 +0000 (09:04 +0000)]
Merge "use string_view to avoid temporary string allocation." into devel/master

3 years agoDALi Version 1.9.32 12/245112/1 dali_1.9.32
Cheng-Shiun Tsai [Fri, 2 Oct 2020 09:46:42 +0000 (10:46 +0100)]
DALi Version 1.9.32

Change-Id: I65304e6e46868ad3e34994dde80e74970ddbbd31

3 years ago(JSON Parser State) Reduce Cyclomatic Complexity of ParseJson 70/245070/4
Adeel Kazmi [Wed, 30 Sep 2020 10:47:46 +0000 (11:47 +0100)]
(JSON Parser State) Reduce Cyclomatic Complexity of ParseJson

Change-Id: Iba20de994253d3dfaac8f92b9381c18aaeb76861

3 years agoMerge "Const correctness improvements for Property::Value." into devel/master
Adeel Kazmi [Tue, 29 Sep 2020 10:35:03 +0000 (10:35 +0000)]
Merge "Const correctness improvements for Property::Value." into devel/master

3 years agoThere is no need to call mOverlayRenderer's AddRenderer() in play(). 19/245019/1
Joogab Yun [Tue, 29 Sep 2020 06:41:10 +0000 (15:41 +0900)]
There is no need to call mOverlayRenderer's AddRenderer() in play().

Change-Id: I37c2709e45d9e5a97f5801258e6ebee377e1337a

3 years agoMerge "Text Editing (enable) property in text controls" into devel/master
Adeel Kazmi [Mon, 28 Sep 2020 15:53:38 +0000 (15:53 +0000)]
Merge "Text Editing (enable) property in text controls" into devel/master

3 years agoConst correctness improvements for Property::Value. 75/244975/2
György Straub [Mon, 28 Sep 2020 12:28:53 +0000 (13:28 +0100)]
Const correctness improvements for Property::Value.

- instead of using its parameter as in-out (and perhaps erroneously
  modifying the original), TextVisual returns the new map, which is then
  merged with the existing properties in ButtonImpl::SetProperty();

Change-Id: I974535fd017416dc60225a1f511e71d81a2a86de
Signed-off-by: György Straub <g.straub@partner.samsung.com>
3 years agoEnsuring Control behaviour flags retain their original values 06/244906/2
David Steele [Fri, 25 Sep 2020 15:17:46 +0000 (16:17 +0100)]
Ensuring Control behaviour flags retain their original values

Change-Id: Iafa9a7450a093fad0719c0ac51bbf2c04970948b

3 years agoText Editing (enable) property in text controls 60/243760/14
ali198724 [Wed, 9 Sep 2020 18:48:01 +0000 (21:48 +0300)]
Text Editing (enable) property in text controls

- Add support for enable/disable editing for TextField,TextEditor
- this effect keyboard, clipboard
- hide primary cursors and grap on non-edit mode
- hide virtual keyboard on non-editable mode
Change-Id: I4991e8bdffd0988e43c86d9be1b5b734e8e681cd

3 years agoDALi Version 1.9.31 83/244883/1 dali_1.9.31
Adeel Kazmi [Fri, 25 Sep 2020 10:58:15 +0000 (11:58 +0100)]
DALi Version 1.9.31

Change-Id: Id53d7de9f259c6cfa553037810fc6ef105241687

3 years agoMerge "Change the precision of size and uSize from mediumP to highP" into devel/master
sunghyun kim [Wed, 23 Sep 2020 02:20:26 +0000 (02:20 +0000)]
Merge "Change the precision of size and uSize from mediumP to highP" into devel/master

3 years agoMerge "Make MeasureCallback signature .NET friendly" into devel/master
Adeel Kazmi [Tue, 22 Sep 2020 18:12:06 +0000 (18:12 +0000)]
Merge "Make MeasureCallback signature .NET friendly" into devel/master

3 years agoMake MeasureCallback signature .NET friendly 65/242665/4
Wander Lairson Costa [Tue, 4 Aug 2020 15:11:03 +0000 (12:11 -0300)]
Make MeasureCallback signature .NET friendly

Currently, MeasureCallback signature has a return type of a POD 16 bytes
structure. Returning the structure by value is messing up when passing a
delegate from C# on Windows 10. The net effect is that arguments arrive
with random values. This happens because the C++ compiler may apply
optimization like RVO that the .NET runtime is not aware of.

This link [1] provides more details.

We fix the problem by making SizeTuple an out parameter and returning
void.

[1] https://www.tutorialsteacher.com/csharp/csharp-delegates

Change-Id: I71feef35908d139f60e6941b447a78b38053b89d

3 years agoSvgVisual: Using VectorImageRenderer 73/240173/36
JunsuChoi [Tue, 28 Jul 2020 06:32:37 +0000 (15:32 +0900)]
SvgVisual: Using VectorImageRenderer

Make SvgVisual use VectorImageRenderer which is using ThorVG.
You can use nanosvg or thorVG by NO_THORVG macro define.

[Note]
If you want to use THORVG, remove below from ./build/tizen/CMakeLists.txt
...
ADD_DEFINITIONS( "-DNO_THORVG" )
...

Change-Id: Ia9bf5c799084e841ff567245a8ff4688824277ee

3 years agoMerge "Reduce Cyclomatic Complexity of Text classes" into devel/master
Adeel Kazmi [Mon, 21 Sep 2020 08:29:47 +0000 (08:29 +0000)]
Merge "Reduce Cyclomatic Complexity of Text classes" into devel/master

3 years agoChange the precision of size and uSize from mediumP to highP 43/243243/5
Sunghyun Kim [Fri, 4 Sep 2020 07:14:04 +0000 (16:14 +0900)]
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

3 years agoMerge "DALi Version 1.9.30" into devel/master
David Steele [Fri, 18 Sep 2020 10:46:54 +0000 (10:46 +0000)]
Merge "DALi Version 1.9.30" into devel/master

3 years ago[dali_1.9.30] Merge branch 'devel/master' 46/244446/1
David Steele [Fri, 18 Sep 2020 10:35:44 +0000 (11:35 +0100)]
[dali_1.9.30] Merge branch 'devel/master'

Change-Id: I0e759f4ca26e9b635806a862cd043de839fb8b99

3 years agoDALi Version 1.9.30 40/244440/1 dali_1.9.30
David Steele [Fri, 18 Sep 2020 10:35:13 +0000 (11:35 +0100)]
DALi Version 1.9.30

Change-Id: I9ebc6f4c49010c6fc469d2abbc7cea327b9bc46f

3 years agoMerge "Add null check for mTextureSet. For empty text, text-visual doesn't create...
joogab yun [Fri, 18 Sep 2020 04:48:30 +0000 (04:48 +0000)]
Merge "Add null check for mTextureSet. For empty text, text-visual doesn't create a textureSet. So it happens that mTextureSet is null." into devel/master

3 years agoReduce Cyclomatic Complexity of Text classes 71/244371/2
Adeel Kazmi [Thu, 17 Sep 2020 23:00:21 +0000 (00:00 +0100)]
Reduce Cyclomatic Complexity of Text classes

Change-Id: I055f3fd585a9709ab99d23887f7ff02fcf454975

3 years agoMerge "Updated ImageVisual to handle native texture sampler" into devel/master
Adeel Kazmi [Thu, 17 Sep 2020 21:13:27 +0000 (21:13 +0000)]
Merge "Updated ImageVisual to handle native texture sampler" into devel/master

3 years agoMerge "Text selection refactoring" into devel/master
Adeel Kazmi [Thu, 17 Sep 2020 18:03:38 +0000 (18:03 +0000)]
Merge "Text selection refactoring" into devel/master

3 years agoAdd null check for mTextureSet. 22/244222/1
Joogab Yun [Wed, 16 Sep 2020 06:22:08 +0000 (15:22 +0900)]
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

3 years agoMerge "Fix VideoView test case" into devel/master
Adeel Kazmi [Mon, 14 Sep 2020 14:05:01 +0000 (14:05 +0000)]
Merge "Fix VideoView test case" into devel/master

3 years agoUpdated ImageVisual to handle native texture sampler 83/243983/1
David Steele [Fri, 11 Sep 2020 16:56:59 +0000 (17:56 +0100)]
Updated ImageVisual to handle native texture sampler

Change-Id: I62bf03bb413140f581fb72a46e6fdf049caa7e5d

3 years agoMerge "Dali-Text: Keyboard Shortcuts" into devel/master
Adeel Kazmi [Fri, 11 Sep 2020 16:51:12 +0000 (16:51 +0000)]
Merge "Dali-Text: Keyboard Shortcuts" into devel/master

3 years agoDali-Text: Keyboard Shortcuts 28/242728/5
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

3 years agoMerge "DALi Version 1.9.29" into devel/master
David Steele [Fri, 11 Sep 2020 12:01:22 +0000 (12:01 +0000)]
Merge "DALi Version 1.9.29" into devel/master

3 years ago[dali_1.9.29] Merge branch 'devel/master' 72/243972/1
adam.b [Fri, 11 Sep 2020 11:57:29 +0000 (12:57 +0100)]
[dali_1.9.29] Merge branch 'devel/master'

Change-Id: I2680076d964a2531c6743b6a8036002b3974cd36

3 years agoDALi Version 1.9.29 66/243966/1 dali_1.9.29
adam.b [Fri, 11 Sep 2020 11:56:33 +0000 (12:56 +0100)]
DALi Version 1.9.29

Change-Id: I48d6b2eb6b0da2cba0d67d1c5d5955f1d3ac9c6d

3 years agoFix VideoView test case 40/243940/1
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

3 years agoChange cursor parent from Layer to Actor 77/243577/3
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>
3 years agouse string_view to avoid temporary string allocation. 24/242424/5
Subhransu Mohanty [Thu, 27 Aug 2020 00:38:27 +0000 (09:38 +0900)]
use string_view to avoid temporary string allocation.

Change-Id: I234742fc0ad1337e54b56fcb916f435d487da2c5

3 years agoText selection refactoring 25/242725/10
ali [Mon, 31 Aug 2020 12:41:01 +0000 (15:41 +0300)]
Text selection refactoring

This Task contains two main parts:

1- Introduce internal interface Dali::Toolkit::Text::SelectableControlInterface which is inherited by TextEditor and TextField
Both Class needs to implement this interface methods, else developer will get compilation error

2- Introduce Properties to get/set Text Selection Ranges start and end positions in Devel namespace, SELECTED_TEXT_START (start position) SELECTED_TEXT_END (end position)
this allow programatical set for text selection, also get selection range programatically

Change-Id: I7ec96d4f1570218f0e945f21a03a6a10e5e8fe97

3 years agoUpdating test harness following format changes 50/243850/3
David Steele [Thu, 10 Sep 2020 11:31:23 +0000 (12:31 +0100)]
Updating test harness following format changes

Change-Id: I2e6afda4215e8d8f707331d3952a8c8eaff2b9bd

3 years agoFormatting API 49/243849/2
David Steele [Thu, 10 Sep 2020 10:26:49 +0000 (11:26 +0100)]
Formatting API

Change-Id: I8ee16601ef38967ed7eddc7645b2c11a6226adce

3 years agoAdding clang format 11/243611/2
David Steele [Mon, 7 Sep 2020 16:08:01 +0000 (17:08 +0100)]
Adding clang format

Closely follows new dali-style

Change-Id: I285743bf054dfbb04809ec995e47f00426134889

3 years agoAdding 'override', removing 'virtual' from overriding functions' declarations in... 54/243754/1
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>
3 years agoMerge "Changed 'virtual' function override declarations to 'override' in automated...
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

3 years agoOverriding virtual destructors are marked as 'override'. 75/243575/2
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>
3 years agoChanged 'virtual' function override declarations to 'override' in automated-tests. 24/243324/3
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>
3 years agoChanged 'virtual' function override declarations to 'override' in dali-toolkit. 23/243323/3
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>
3 years ago[dali_1.9.28] Merge branch 'devel/master' 83/243283/1
Richard Huang [Fri, 4 Sep 2020 10:16:20 +0000 (11:16 +0100)]
[dali_1.9.28] Merge branch 'devel/master'

Change-Id: Ib01c1f6a36e560625f216fb067ee3a1110d86903

3 years agoDALi Version 1.9.28 76/243276/1 dali_1.9.28
Richard Huang [Fri, 4 Sep 2020 10:15:50 +0000 (11:15 +0100)]
DALi Version 1.9.28

Change-Id: Icb06c26e79f0468af263f67dd7363813226cccf0

3 years agoMerge "Removed REQUIRES_STYLE_CHANGE_SIGNALS" into devel/master
Adeel Kazmi [Thu, 3 Sep 2020 19:35:37 +0000 (19:35 +0000)]
Merge "Removed REQUIRES_STYLE_CHANGE_SIGNALS" into devel/master

3 years agoRemoved REQUIRES_STYLE_CHANGE_SIGNALS 75/243175/4
adam.b [Thu, 3 Sep 2020 15:38:51 +0000 (16:38 +0100)]
Removed REQUIRES_STYLE_CHANGE_SIGNALS

Change-Id: I8bacc71a58a052e68aa6f0af9e0ab8634fcd576e

3 years agoMerge "Removed On(...)Event()" into devel/master
Adeel Kazmi [Thu, 3 Sep 2020 17:23:34 +0000 (17:23 +0000)]
Merge "Removed On(...)Event()" into devel/master

3 years agoRemoved On(...)Event() 59/242359/9
adam.b [Thu, 3 Sep 2020 16:11:02 +0000 (17:11 +0100)]
Removed On(...)Event()

Change-Id: I09dcd36368f97c03cfda6d004e240df4dc13264b

3 years agoUpdate interface to sync with dali-core change. 28/242428/3
Subhransu Mohanty [Thu, 27 Aug 2020 01:28:01 +0000 (10:28 +0900)]
Update interface to sync with  dali-core change.

Change-Id: Ie70a029eabadebaffb7de7587d58328868b35b95

3 years agoMerge "NPatch rendering optimization" into devel/master
Adeel Kazmi [Thu, 3 Sep 2020 11:59:17 +0000 (11:59 +0000)]
Merge "NPatch rendering optimization" into devel/master

3 years agoNPatch rendering optimization 57/243057/3
adam.b [Wed, 2 Sep 2020 21:27:52 +0000 (22:27 +0100)]
NPatch rendering optimization

Change-Id: I6d2b95e8141c7e22d326e2f736c98f4783b829ab

3 years agoMoved Gesture::State and -::Type to gesture-enumerations.h. 26/243026/3
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>
3 years agoMerge "Deleted Move/Copy operators & constructors from Internal::Control" into devel...
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

3 years agoMerge "Changes after TouchedSignal changes" into devel/master
Adeel Kazmi [Wed, 2 Sep 2020 20:09:34 +0000 (20:09 +0000)]
Merge "Changes after TouchedSignal changes" into devel/master

3 years agoDeleted Move/Copy operators & constructors from Internal::Control 56/243056/4
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

3 years agoChanges after TouchedSignal changes 40/243040/4
Adeel Kazmi [Wed, 2 Sep 2020 13:53:37 +0000 (14:53 +0100)]
Changes after TouchedSignal changes

Change-Id: I439699c97723207d5ea1440e01c911c68a7c83c9

3 years agoFix compile error. Non initialized variable. 83/242983/1
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>
3 years agoRefactoring Gestures Class 85/236885/13
Joogab Yun [Tue, 23 Jun 2020 06:18:28 +0000 (15:18 +0900)]
Refactoring Gestures Class

Change-Id: I945af40bbb1a62177fe6bcfeda3c6a85396b90f3

3 years agoRenaming of enum values for coding standards compliance. 70/242670/5
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>
3 years agoMove TouchPoint to Devel API 75/242675/1
Richard Huang [Fri, 28 Aug 2020 15:31:26 +0000 (16:31 +0100)]
Move TouchPoint to Devel API

Change-Id: I0117ed93c0fc2f89757c221ad048b90cc544ccef

3 years agoMerge "DALi Version 1.9.27" into devel/master
Adeel Kazmi [Fri, 28 Aug 2020 10:33:11 +0000 (10:33 +0000)]
Merge "DALi Version 1.9.27" into devel/master

3 years ago[dali_1.9.27] Merge branch 'devel/master' 33/242633/1
Victor Cebollada [Fri, 28 Aug 2020 10:12:27 +0000 (11:12 +0100)]
[dali_1.9.27] Merge branch 'devel/master'

Change-Id: Ie58831c3973710cacae8c3a61a2386ad1ae1bacd

3 years agoDALi Version 1.9.27 27/242627/1 dali_1.9.27
Victor Cebollada [Fri, 28 Aug 2020 10:11:42 +0000 (11:11 +0100)]
DALi Version 1.9.27

Change-Id: If09187322fc6d855413861c968f5a15065fd0fa3

3 years agoMerge "When matchSystemLanguageDirection is set, it should follow the direction setti...
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

3 years agoMerge "Updates for const->constexpr" into devel/master
Adeel Kazmi [Thu, 27 Aug 2020 20:11:27 +0000 (20:11 +0000)]
Merge "Updates for const->constexpr" into devel/master

3 years agoUpdates for const->constexpr 36/242536/1
David Steele [Thu, 27 Aug 2020 14:04:56 +0000 (15:04 +0100)]
Updates for const->constexpr

Change-Id: Ied6617817f73a03575b86e9fd9fa515b4a55f10b

3 years agoRenamed KeyEvent enum values to comply with coding standards. 86/242486/3
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>
3 years agoWhen matchSystemLanguageDirection is set, it should follow the direction setting... 42/242242/15
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

3 years agoMerge "If the size of the text is larger than the size of the control, setting it...
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

3 years agoMerge "Updates following rename of PropertyBuffer to VertexBuffer" 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

3 years agoMerge "KeyEvent class pimpling" into devel/master
Adeel Kazmi [Tue, 25 Aug 2020 17:24:46 +0000 (17:24 +0000)]
Merge "KeyEvent class pimpling" into devel/master

3 years agoUpdates following rename of PropertyBuffer to VertexBuffer 73/242173/3
David Steele [Mon, 24 Aug 2020 17:35:10 +0000 (18:35 +0100)]
Updates following rename of PropertyBuffer to VertexBuffer

Change-Id: I5989a8b4774feed2b4dcad68cfd8f2573523b983

3 years agoKeyEvent class pimpling 84/242284/1
Richard Huang [Tue, 25 Aug 2020 09:34:16 +0000 (10:34 +0100)]
KeyEvent class pimpling

Change-Id: Ic51e92d7a783f47890e6f842b1ed2cfc5b6f3077

3 years agoIf the size of the text is larger than the size of the control, 60/242260/1
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

3 years agoChanged Animation API enums to uppercase. 67/242167/2
adam.b [Mon, 24 Aug 2020 15:03:22 +0000 (16:03 +0100)]
Changed Animation API enums to uppercase.

Change-Id: I8e17ed6d04fbaf4c589c82358bd920ff8d51e680

3 years agoUpdates following publication of devel-handle APIs 54/242154/1
David Steele [Mon, 24 Aug 2020 12:49:01 +0000 (13:49 +0100)]
Updates following publication of devel-handle APIs

Change-Id: I070abe62055a6574fcf98a96ab3e1140113256d4