[SRUK] Initial copy from Tizen 2.2 version
[platform/core/uifw/dali-toolkit.git] / capi / dali-toolkit / public-api / controls / scrollable / item-view / item-factory.h
1 #ifndef __DALI_TOOLKIT_ITEM_FACTORY_H__
2 #define __DALI_TOOLKIT_ITEM_FACTORY_H__
3
4 //
5 // Copyright (c) 2014 Samsung Electronics Co., Ltd.
6 //
7 // Licensed under the Flora License, Version 1.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://floralicense.org/license/
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  * @addtogroup CAPI_DALI_FRAMEWORK
22  * @{
23  */
24
25 // INTERNAL INCLUDES
26 #include <dali/dali.h>
27
28 namespace Dali DALI_IMPORT_API
29 {
30
31 namespace Toolkit
32 {
33
34 /**
35  * ItemFactory is an abstract interface for providing actors to ItemView.
36  * Each actor is identified by a unique ID, and has a linear order from 0 to GetNumberOfItems()-1.
37  */
38 class ItemFactory
39 {
40 public:
41
42   /**
43    * Virtual destructor
44    */
45   virtual ~ItemFactory() = 0;
46
47   /**
48    * Query the number of items available from the factory.
49    * The maximum available item has an ID of GetNumberOfItems() - 1.
50    */
51   virtual unsigned int GetNumberOfItems() = 0;
52
53   /**
54    * Create an Actor to represent a visible item.
55    * @param[in] itemId The ID of the newly visible item.
56    * @return An actor, or an uninitialized pointer if the ID is out of range.
57    */
58   virtual Actor NewItem(unsigned int itemId) = 0;
59 };
60
61 } // namespace Toolkit
62
63 } // namespace Dali
64
65 /**
66  * @}
67  */
68 #endif // __DALI_TOOLKIT_ITEM_FACTORY_H__