Seperate the API macros
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / controls / page-turn-view / page-factory.h
1 #ifndef __DALI_TOOLKIT_PAGE_FACTORY_H__
2 #define __DALI_TOOLKIT_PAGE_FACTORY_H__
3
4 /*
5  * Copyright (c) 2018 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22 #include <dali/public-api/rendering/texture.h>
23
24 // INTERNAL INCLUDES
25 #include <dali-toolkit/public-api/dali-toolkit-common.h>
26
27 namespace Dali
28 {
29
30 namespace Toolkit
31 {
32
33 /**
34  * @brief PageFactory is an abstract interface for providing textures to PageTurnView
35  * Each page is identified by a unique ID, and has a linear order from 0 to GetNumberOfPages()-1
36  *
37  * @SINCE_1_1.4
38  */
39 class DALI_TOOLKIT_API PageFactory
40 {
41 public:
42
43   class Extension; ///< Forward declare future extension interface
44
45   /**
46    * @brief Virtual destructor
47    */
48   virtual ~PageFactory(){};
49
50   /**
51    * @brief Query the number of pages available from the factory.
52    *
53    * The maximum available page has an ID of GetNumberOfPages()-1.
54    * @return The page count.
55    */
56   virtual unsigned int GetNumberOfPages() = 0;
57
58   /**
59    * @brief Return the texture for the page
60    *
61    * For double-sided page( PageTurnLandscapeView ), the left half of texture is used as page front side, and the right half as page back side.
62    *
63    * @note Must return a valid texture handle!
64    *
65    * @param[in] pageId The ID of the page to create.
66    * @return An actor, or an uninitialized pointer if the ID is out of range.
67    */
68   virtual Texture NewPage( unsigned int pageId ) = 0;
69
70   /**
71    * @brief Retrieve the extension for this factory
72    *
73    * @return The extension if available, NULL otherwise.
74    */
75   virtual Extension* GetExtension()
76   {
77     return NULL;
78   }
79 };
80
81 } // namespace Toolkit
82
83 } // namespace Dali
84 #endif /* __DALI_TOOLKIT_PAGE_FACTORY_H__ */