ed4d17bb4418bdffc5cfed3262b2e3547c62ebf2
[platform/core/uifw/dali-demo.git] / examples / contact-cards / contact-card-layouter.h
1 #ifndef CONTACT_CARD_LAYOUTER_H
2 #define CONTACT_CARD_LAYOUTER_H
3
4 /*
5  * Copyright (c) 2016 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 <vector>
23 #include <string>
24 #include <dali/public-api/common/intrusive-ptr.h>
25 #include <dali/public-api/math/vector2.h>
26
27 // INTERNAL INCLUDES
28 #include "contact-card-layout-info.h"
29
30 class ContactCard;
31
32 /**
33  * @brief This class lays out contact cards on the screen appropriately.
34  *
35  * The contact cards are added to the stage directly and it uses the stage size to figure out exactly how to layout them.
36  * It supports a minimum of 3 items on each row or column.
37  *
38  * Relayouting is not supported.
39  */
40 class ContactCardLayouter
41 {
42 public:
43
44   /**
45    * @brief Constructor.
46    */
47   ContactCardLayouter();
48
49   /**
50    * @brief Destructor.
51    */
52   ~ContactCardLayouter();
53
54   /**
55    * @brief Creates a contact card with the given information.
56    * @param[in]  contactName     The name of the contact to display.
57    * @param[in]  contactAddress  The address of the contact to display.
58    * @param[in]  imagePath       The path to the image to display.
59    */
60   void AddContact( const std::string& contactName, const std::string& contactAddress, const std::string& imagePath );
61
62 private:
63
64   /**
65    * @brief Calculates the next position of the contact card that's about to be added to our container.
66    * @return A reference to the next position.
67    */
68   const Dali::Vector2& NextCardPosition();
69
70   ContactCardLayoutInfo mContactCardLayoutInfo; ///< The common layouting information used by all contact cards. Set up when AddContact is first called.
71
72   typedef Dali::IntrusivePtr< ContactCard > ContactCardPtr; ///< Better than raw pointers as these are ref counted and the memory is released when the count reduces to 0.
73   typedef std::vector< ContactCardPtr > ContactCardContainer;
74   ContactCardContainer mContactCards; ///< Contains all the contact cards.
75
76   Dali::Vector2 mLastPosition; ///< The last position a contact card was added.
77   Dali::Vector2 mPositionIncrementer; ///< Calculated once when AddContact is first called.
78   size_t mItemsPerRow; ///< Calculated once when AddContact is first called and stores the number of items we have in a row.
79
80   bool mInitialized; ///< Whether initialization has taken place or not.
81 };
82
83
84
85 #endif // CONTACT_CARD_LAYOUTER_H