Updated demos to use DALi clang-format
[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) 2020 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    * @brief Constructor
31    */
32   ClippingItemFactory();
33
34 private: // From ItemFactory
35   /**
36    * Query the number of items available from the factory.
37    * The maximum available item has an ID of GetNumberOfItems() - 1.
38    */
39   virtual unsigned int GetNumberOfItems();
40
41   /**
42    * Create an Actor to represent a visible item.
43    * @param itemId
44    * @return the created actor.
45    */
46   virtual Dali::Actor NewItem(unsigned int itemId);
47
48 private:
49   ClippingItemFactory(const ClippingItemFactory&);            ///< Undefined
50   ClippingItemFactory& operator=(const ClippingItemFactory&); ///< Undefined
51 };
52
53 #endif // CLIPPING_ITEM_FACTORY_H