X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;ds=sidebyside;f=examples%2Fimage-view-pixel-area%2Fimage-view-pixel-area-example.cpp;h=fdbe0a636b0a18705f6826a9f17afdc8adf4cbec;hb=c70446e9b125ae8bb236b4cbc3fd3f8b548459cd;hp=5b69e13de910c0ccaccce2141990fddcf4cef6e7;hpb=2d809107e588c9046358e3f1c1d5cb51455d5365;p=platform%2Fcore%2Fuifw%2Fdali-demo.git diff --git a/examples/image-view-pixel-area/image-view-pixel-area-example.cpp b/examples/image-view-pixel-area/image-view-pixel-area-example.cpp index 5b69e13..fdbe0a6 100644 --- a/examples/image-view-pixel-area/image-view-pixel-area-example.cpp +++ b/examples/image-view-pixel-area/image-view-pixel-area-example.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 Samsung Electronics Co., Ltd. + * Copyright (c) 2020 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,9 +54,9 @@ private: // The Init signal is received once (only) during the Application lifetime void Create( Application& application ) { - // Get a handle to the stage - Stage stage = Stage::GetCurrent(); - stage.KeyEventSignal().Connect(this, &ImageViewPixelAreaApp::OnKeyEvent); + // Get a handle to the window + Window window = application.GetWindow(); + window.KeyEventSignal().Connect(this, &ImageViewPixelAreaApp::OnKeyEvent); Toolkit::ToolBar toolBar; Toolkit::Control background; @@ -98,16 +98,16 @@ private: CreateScene( visualPropertyMap[0] ); mWrapLabel = Toolkit::TextLabel::New(" Automatic atlasing\n WrapMode: CLAMP_TO_EDGE, MIRRORED_REPEAT"); - mWrapLabel.SetParentOrigin( ParentOrigin::BOTTOM_CENTER ); - mWrapLabel.SetAnchorPoint(AnchorPoint::BOTTOM_CENTER ); + mWrapLabel.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::BOTTOM_CENTER ); + mWrapLabel.SetProperty( Actor::Property::ANCHOR_POINT,AnchorPoint::BOTTOM_CENTER ); mWrapLabel.SetResizePolicy( ResizePolicy::FILL_TO_PARENT, Dimension::WIDTH ); mWrapLabel.SetProperty( Toolkit::TextLabel::Property::MULTI_LINE, true ); mWrapLabel.SetProperty( Toolkit::TextLabel::Property::TEXT_COLOR, Color::WHITE ); mContent.Add( mWrapLabel ); mPixelAreaLabel = Toolkit::TextLabel::New( " Use ImageVisual::Property::PIXEL_AREA\n " ); - mPixelAreaLabel.SetParentOrigin( ParentOrigin::TOP_CENTER ); - mPixelAreaLabel.SetAnchorPoint(AnchorPoint::BOTTOM_CENTER ); + mPixelAreaLabel.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_CENTER ); + mPixelAreaLabel.SetProperty( Actor::Property::ANCHOR_POINT,AnchorPoint::BOTTOM_CENTER ); mPixelAreaLabel.SetResizePolicy( ResizePolicy::FILL_TO_PARENT, Dimension::WIDTH ); mPixelAreaLabel.SetProperty( Toolkit::TextLabel::Property::MULTI_LINE, true ); mPixelAreaLabel.SetProperty( Toolkit::TextLabel::Property::TEXT_COLOR, Color::WHITE ); @@ -121,45 +121,45 @@ private: { mImageView[i][j] = Toolkit::ImageView::New(); mImageView[i][j].SetProperty( Toolkit::ImageView::Property::IMAGE, propertyMap ); - mImageView[i][j].SetPosition( 50.f*(i-1), 50.f*(j-1) ); + mImageView[i][j].SetProperty( Actor::Property::POSITION, Vector2( 50.f*(i-1), 50.f*(j-1) )); } - mImageView[1][1].SetParentOrigin( ParentOrigin::CENTER ); - mImageView[1][1].SetAnchorPoint(AnchorPoint::CENTER ); - mImageView[1][1].SetScale( 1.f/3.f ); + mImageView[1][1].SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::CENTER ); + mImageView[1][1].SetProperty( Actor::Property::ANCHOR_POINT,AnchorPoint::CENTER ); + mImageView[1][1].SetProperty( Actor::Property::SCALE, 1.f/3.f ); mContent.Add( mImageView[1][1] ); - mImageView[0][0].SetParentOrigin( ParentOrigin::TOP_LEFT ); - mImageView[0][0].SetAnchorPoint(AnchorPoint::BOTTOM_RIGHT ); - mImageView[0][0].SetPosition( -50.f, -50.f ); + mImageView[0][0].SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT ); + mImageView[0][0].SetProperty( Actor::Property::ANCHOR_POINT,AnchorPoint::BOTTOM_RIGHT ); + mImageView[0][0].SetProperty( Actor::Property::POSITION, Vector2( -50.f, -50.f )); mImageView[1][1].Add( mImageView[0][0] ); - mImageView[1][0].SetParentOrigin( ParentOrigin::TOP_CENTER ); - mImageView[1][0].SetAnchorPoint(AnchorPoint::BOTTOM_CENTER ); + mImageView[1][0].SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_CENTER ); + mImageView[1][0].SetProperty( Actor::Property::ANCHOR_POINT,AnchorPoint::BOTTOM_CENTER ); mImageView[1][1].Add( mImageView[1][0] ); - mImageView[2][0].SetParentOrigin( ParentOrigin::TOP_RIGHT ); - mImageView[2][0].SetAnchorPoint(AnchorPoint::BOTTOM_LEFT ); + mImageView[2][0].SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_RIGHT ); + mImageView[2][0].SetProperty( Actor::Property::ANCHOR_POINT,AnchorPoint::BOTTOM_LEFT ); mImageView[1][1].Add( mImageView[2][0] ); - mImageView[0][1].SetParentOrigin( ParentOrigin::CENTER_LEFT ); - mImageView[0][1].SetAnchorPoint(AnchorPoint::CENTER_RIGHT ); + mImageView[0][1].SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::CENTER_LEFT ); + mImageView[0][1].SetProperty( Actor::Property::ANCHOR_POINT,AnchorPoint::CENTER_RIGHT ); mImageView[1][1].Add( mImageView[0][1] ); - mImageView[2][1].SetParentOrigin( ParentOrigin::CENTER_RIGHT ); - mImageView[2][1].SetAnchorPoint(AnchorPoint::CENTER_LEFT ); + mImageView[2][1].SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::CENTER_RIGHT ); + mImageView[2][1].SetProperty( Actor::Property::ANCHOR_POINT,AnchorPoint::CENTER_LEFT ); mImageView[1][1].Add( mImageView[2][1] ); - mImageView[0][2].SetParentOrigin( ParentOrigin::BOTTOM_LEFT ); - mImageView[0][2].SetAnchorPoint(AnchorPoint::TOP_RIGHT ); + mImageView[0][2].SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::BOTTOM_LEFT ); + mImageView[0][2].SetProperty( Actor::Property::ANCHOR_POINT,AnchorPoint::TOP_RIGHT ); mImageView[1][1].Add( mImageView[0][2] ); - mImageView[1][2].SetParentOrigin( ParentOrigin::BOTTOM_CENTER ); - mImageView[1][2].SetAnchorPoint(AnchorPoint::TOP_CENTER ); + mImageView[1][2].SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::BOTTOM_CENTER ); + mImageView[1][2].SetProperty( Actor::Property::ANCHOR_POINT,AnchorPoint::TOP_CENTER ); mImageView[1][1].Add( mImageView[1][2] ); - mImageView[2][2].SetParentOrigin( ParentOrigin::BOTTOM_RIGHT ); - mImageView[2][2].SetAnchorPoint(AnchorPoint::TOP_LEFT ); + mImageView[2][2].SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::BOTTOM_RIGHT ); + mImageView[2][2].SetProperty( Actor::Property::ANCHOR_POINT,AnchorPoint::TOP_LEFT ); mImageView[1][1].Add( mImageView[2][2] ); } @@ -213,7 +213,7 @@ private: void OnKeyEvent(const KeyEvent& event) { - if(event.state == KeyEvent::Down) + if(event.GetState() == KeyEvent::DOWN) { if( IsKey( event, Dali::DALI_KEY_ESCAPE) || IsKey( event, Dali::DALI_KEY_BACK) ) {