X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=docs%2Fcontent%2Fshared-javascript-and-cpp-documentation%2Ffundamentals.md;h=2442180fb1c9827e4884cf14788cde52a84ccac7;hb=169d62e3130aaf007ee2a23ac5ee5961c0c65bb4;hp=8ea1257e8028115e69940dcf4f8874fe55aeb73e;hpb=7118f6784ab97ba8eb1dd1a5792bbe472d99b3c6;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/docs/content/shared-javascript-and-cpp-documentation/fundamentals.md b/docs/content/shared-javascript-and-cpp-documentation/fundamentals.md index 8ea1257..2442180 100644 --- a/docs/content/shared-javascript-and-cpp-documentation/fundamentals.md +++ b/docs/content/shared-javascript-and-cpp-documentation/fundamentals.md @@ -5,10 +5,14 @@ ## Actors and the Stage {#actors-and-stage} -A DALi application uses a hierachy of Dali::Actor objects to position visible content. An actor inherits a position relative to its parent, and can be moved relative to this point. UI controls can be built by combining multiple actors. - -To display the contents of an actor, it must be connected to the Dali::Stage. This provides an invisible root (top-level) actor, to which all other actors are added. A direct or indirect child of the root actor is considered "on-stage". Multi-touch events are received through signals emitted by on-stage actors. - +Actor is the primary object with which DALi applications interact. +A DALi application uses a hierachy of Dali::Actor objects to position visible content. +An actor inherits a position relative to its parent, and can be moved relative to this point. +UI controls can be built by combining multiple actors. + +The Stage is a top-level object used for displaying a tree of Actors. +To display the contents of an actor, it must be added to the Dali::Stage, + The following example shows how to connect a new actor to the stage: ~~~{.cpp}