platform/core/uifw/dali-toolkit-legacy.git
3 years agoTextfield: remove duplicated functionality 82/233782/1
ali198724 [Mon, 11 May 2020 16:17:46 +0000 (19:17 +0300)]
Textfield: remove duplicated functionality
Getting selected text is done using property no need for special get function

Change-Id: I8b0cbcce414d4ac229eef20860929a394ab40126

3 years agoDALi Version 1.5.12 51/233751/1 dali_1.5.12
Heeyong Song [Tue, 19 May 2020 02:35:07 +0000 (11:35 +0900)]
DALi Version 1.5.12

Change-Id: I0a2237606b86b946d483bc3c1dad4183abb62ee7

3 years agoAdd MIN_LINE_SIZE property 38/233738/1
Joogab Yun [Tue, 12 May 2020 05:55:59 +0000 (14:55 +0900)]
Add MIN_LINE_SIZE property

Users want to set the line size in multi-line.
We have a lineSpacing property which allows us to set the spacing of the lines.

However, the user wants to achieve a similar effect by setting the size of the line, not lineSpacing.

Change-Id: Ia96e1875e90454a3269d2ad853d3c4e20ce66ae9

3 years agoSupport rounded corners for GradientVisual 55/233455/1
Heeyong Song [Thu, 16 Apr 2020 05:41:52 +0000 (14:41 +0900)]
Support rounded corners for GradientVisual

Change-Id: Ibb63224756ad34359f84a7c620231a0cfa61ae3e

3 years agoMerge "DALi Version 1.5.11" into devel/master
Heeyong Song [Wed, 13 May 2020 03:47:40 +0000 (03:47 +0000)]
Merge "DALi Version 1.5.11" into devel/master

3 years agoDALi Version 1.5.11 83/233183/1 dali_1.5.11
Heeyong Song [Wed, 13 May 2020 01:57:27 +0000 (10:57 +0900)]
DALi Version 1.5.11

Change-Id: I3f871a321b667198f4b8e7dcce82f8bece25efb4

3 years agoUpdate a font description run only in Selecting state for input font 57/233057/1
Seoyeon Kim [Wed, 6 May 2020 11:06:45 +0000 (20:06 +0900)]
Update a font description run only in Selecting state for input font

- When setting input font properties, its font description run has been
updated in InsertText().
- UpdateSelectionFontStyleRun() resets the FontDescriptionRun value already set.
- So, only in EventData::SELECTING state, updated a new font description run.

Change-Id: I5c6643f919e077b2870d04c8a881ab9a1d125811
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
4 years agoDALi Version 1.5.10 45/232545/1 dali_1.5.10
Heeyong Song [Wed, 6 May 2020 07:50:31 +0000 (16:50 +0900)]
DALi Version 1.5.10

Change-Id: I5adb8febacf31f6465e3202a6d73229281ea0395

4 years agoAdd support to unselect text And Get_SelectedText 44/232544/1
Ali [Mon, 20 Apr 2020 07:51:54 +0000 (10:51 +0300)]
Add support to unselect text And Get_SelectedText

This patch add two kind of support for TextField
1- SelectNone function: this will unselect text in textfield Programmatically by user.
2- Selected_Text property: this is readonly to return string for selected text.

After this patch approve, I will create other one for dali-csharp-bindings

Change-Id: If93ed6df44a41ff00f772a0abcfc9e2401c41480

4 years agoDoxy patch for Capture ACR 85/232085/3
Seungho, Baek [Fri, 10 Apr 2020 09:00:40 +0000 (18:00 +0900)]
Doxy patch for Capture ACR

Change-Id: I62bacba01a73244489ff3286b598a229522694b6
Signed-off-by: Seungho, Baek <sbsh.baek@samsung.com>
4 years agoDALi Version 1.5.9 53/231953/1 dali_1.5.9
Heeyong Song [Mon, 27 Apr 2020 04:01:56 +0000 (13:01 +0900)]
DALi Version 1.5.9

Change-Id: If4e38ff47911ea83435fde244fccedbbe28be255

4 years agotext tiling 32/231932/1
Joogab Yun [Mon, 13 Apr 2020 01:04:47 +0000 (10:04 +0900)]
text tiling

If the length of text is very long and exceeds maxTextureSize,
it cannot be displayed on the screen.

So tiling is required.
I implement tiling by attaching multiple renderers.

And the MAX_TEXT_LENGTH limit is removed.

sample)

    std::ifstream file;
    file.open(PATH[0]);
    std::stringstream ss;
    ss << file.rdbuf();
    file.close();

    ScrollView scroller = ScrollView::New();
    scroller.SetPosition( 100.f, 100.f);
    scroller.SetSize(500.f, 1000.f);
    scroller.SetAnchorPoint(AnchorPoint::TOP_LEFT);
    scroller.SetParentOrigin(ParentOrigin::TOP_LEFT);
    scroller.SetAxisAutoLock(true);

    TextLabel textLabel = TextLabel::New( );
    textLabel.SetProperty( TextLabel::Property::TEXT,  ss.str() );
    textLabel.SetAnchorPoint( AnchorPoint::TOP_LEFT );
    textLabel.SetParentOrigin(ParentOrigin::TOP_LEFT);
    textLabel.SetProperty( TextLabel::Property::VERTICAL_ALIGNMENT, "TOP" );
    textLabel.SetProperty( TextLabel::Property::MULTI_LINE, true );
    textLabel.SetProperty( TextLabel::Property::ELLIPSIS, false );
    textLabel.SetProperty( TextLabel::Property::ENABLE_MARKUP, true );
    textLabel.SetProperty( TextLabel::Property::POINT_SIZE, 16);
    textLabel.SetProperty( Toolkit::TextLabel::Property::TEXT_COLOR, Color::BLUE );

    scroller.Add( textLabel );
    stage.Add( scroller );

Change-Id: I65082244a801ba697fd9ab0b598c82e702c2a948

4 years agoFix corner radius shader of the ImageVisual 82/231782/1
Heeyong Song [Tue, 14 Apr 2020 06:31:07 +0000 (15:31 +0900)]
Fix corner radius shader of the ImageVisual

It didn't work for premultiplied-alpha images.

Change-Id: I69d612112cb0f1ef132979ce830c8466a639c6f7

4 years agoAdd Pixel format for depth and stencil 73/231773/1
Seungho, Baek [Thu, 16 Apr 2020 03:47:47 +0000 (12:47 +0900)]
Add Pixel format for depth and stencil

 - add cases on the switch to control pixel enum

Change-Id: Ib9c88d92926263e24fbd18c9bbed17ee76559a71
Signed-off-by: Seungho, Baek <sbsh.baek@samsung.com>
4 years agoAdd missing files 51/231751/1
Heeyong Song [Fri, 24 Apr 2020 05:26:59 +0000 (14:26 +0900)]
Add missing files

Change-Id: Iff4378f5fbc81bfd2820695839fb98f97c43d71a

4 years agoAdd missing files 50/231750/1
Heeyong Song [Fri, 24 Apr 2020 05:15:29 +0000 (14:15 +0900)]
Add missing files

Change-Id: I7c59ca2446bf0807c234caf9aa08720f00484538

4 years agoAdd missing files 28/231728/1
Heeyong Song [Fri, 24 Apr 2020 03:29:17 +0000 (12:29 +0900)]
Add missing files

Change-Id: I7731bd3121749a023fa35e2d8f5e840142e3366b

4 years agoAdd a missing file 03/231603/1
Heeyong Song [Thu, 23 Apr 2020 03:30:12 +0000 (12:30 +0900)]
Add a missing file

Change-Id: I8716d5933e7bf0ef2dd68a795ad9cead0a4f87df

4 years agoInitial copy from dali-toolkit repository 37/231537/1
Heeyong Song [Wed, 22 Apr 2020 08:16:20 +0000 (17:16 +0900)]
Initial copy from dali-toolkit repository

Change-Id: I0c3ed238c86b24b9c24e30b172cd67306923db88

4 years agoInitial empty repository master
Tizen Infrastructure [Fri, 17 Apr 2020 08:51:41 +0000 (08:51 +0000)]
Initial empty repository