X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=docs%2Fcontent%2Fshared-javascript-and-cpp-documentation%2Fpopup.md;h=02b7e59d7d230f696cc4a77a83084f1f26618e07;hb=3c33de90842271fcc3808f2d9bd0cdfd54494bba;hp=a86442f287ac37f41f144c1681c67a3b567837a6;hpb=a073ebfd862b49692c8e6d7dff2b128e62a4f6df;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/docs/content/shared-javascript-and-cpp-documentation/popup.md b/docs/content/shared-javascript-and-cpp-documentation/popup.md index a86442f..02b7e59 100644 --- a/docs/content/shared-javascript-and-cpp-documentation/popup.md +++ b/docs/content/shared-javascript-and-cpp-documentation/popup.md @@ -44,7 +44,7 @@ Example: Image only popup (using the content field): ### Example content: {#popupfieldexample} - Title: TextLabel -- Content: ImageActor or TextLabel +- Content: ImageView or TextLabel - Footer: PushButton or Actor containing two PushButtons ## Setting and getting the display state {#popupdisplaystate} @@ -216,7 +216,7 @@ This example creates a Popup with: - Title: TextLabel - Content: TextLabel -- Footer: ImageActor (an image border around the buttons) +- Footer: ImageView (an image border around the buttons) - PushButton (OK control) - PushButton (Cancel control) @@ -237,7 +237,7 @@ contentActor.SetProperty( Toolkit::TextLabel::Property::HORIZONTAL_ALIGNMENT, "C popup.SetContent( contentActor ); // Create the footer: Two buttons surrounded by an image. -ImageActor footer = ImageActor::New( ResourceImage::New( DEFAULT_CONTROL_AREA_IMAGE_PATH ) ); +ImageView footer = ImageView::New( DEFAULT_CONTROL_AREA_IMAGE_PATH ); footer.SetResizePolicy( ResizePolicy::FILL_TO_PARENT, Dimension::WIDTH ); footer.SetResizePolicy( ResizePolicy::FIXED, Dimension::HEIGHT ); footer.SetSize( 0.0f, 80.0f );