platform/core/uifw/dali-toolkit-legacy.git
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