Fixed DGEUF-1841.
[platform/core/uifw/dali-demo.git] / examples / clipping / clipping-item-factory.h
1 #ifndef CLIPPING_ITEM_FACTORY_H
2 #define CLIPPING_ITEM_FACTORY_H
3
4 /*
5  * Copyright (c) 2017 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 #include <dali-toolkit/public-api/controls/scrollable/item-view/item-factory.h>
22
23 /**
24  * @brief Factory used to create the items required in the item-view used by this example.
25  */
26 class ClippingItemFactory : public Dali::Toolkit::ItemFactory
27 {
28 public:
29
30   /**
31    * @brief Constructor
32    */
33   ClippingItemFactory();
34
35 private: // From ItemFactory
36
37   /**
38    * Query the number of items available from the factory.
39    * The maximum available item has an ID of GetNumberOfItems() - 1.
40    */
41   virtual unsigned int GetNumberOfItems();
42
43   /**
44    * Create an Actor to represent a visible item.
45    * @param itemId
46    * @return the created actor.
47    */
48   virtual Dali::Actor NewItem( unsigned int itemId );
49
50 private:
51
52   ClippingItemFactory( const ClippingItemFactory& ); ///< Undefined
53   ClippingItemFactory& operator=( const ClippingItemFactory& ); ///< Undefined
54 };
55
56 #endif // CLIPPING_ITEM_FACTORY_H