X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Fpublic-api%2Fcontrols%2Fpage-turn-view%2Fpage-factory.h;h=99d036abeb900477510ae5dc3be4931acdcb1a28;hp=0c6e18df3d7bb7b97eb27f56dd2d3d02a426cdb0;hb=2eb0f016cf4d8a8282681283ae0e842c0c67bded;hpb=70337c87eb5b0d5678117b6ab7e41099b62614e1 diff --git a/dali-toolkit/public-api/controls/page-turn-view/page-factory.h b/dali-toolkit/public-api/controls/page-turn-view/page-factory.h index 0c6e18d..99d036a 100644 --- a/dali-toolkit/public-api/controls/page-turn-view/page-factory.h +++ b/dali-toolkit/public-api/controls/page-turn-view/page-factory.h @@ -28,26 +28,31 @@ namespace Toolkit { /** - * PageFactory is an abstract interface for providing image actors to PageTurnView + * @brief PageFactory is an abstract interface for providing image actors to PageTurnView * Each image actor is identified by a unique ID, and has a linear order from 0 to GetNumberOfPages()-1 + * + * @SINCE_1_1.4 */ class DALI_IMPORT_API PageFactory { public: /** - * Virtual destructor + * @brief Virtual destructor + * @SINCE_1_1.4 */ virtual ~PageFactory(){}; /** - * Query the number of pages available from the factory. + * @brief Query the number of pages available from the factory. * The maximum available page has an ID of GetNumberOfPages()-1. + * @SINCE_1_1.4 */ virtual unsigned int GetNumberOfPages() = 0; /** - * Create an actor to represent the page content. + * @brief Create an actor to represent the page content. + * @SINCE_1_1.4 * @param[in] pageId The ID of the page to create. * @return An actor, or an uninitialized pointer if the ID is out of range. */