Merge "Delete view from toolkit and move cluster into demo" into tizen
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / tool-bar / tool-bar-impl.h
1 #ifndef __DALI_TOOLKIT_INTERNAL_TOOL_BAR_H__
2 #define __DALI_TOOLKIT_INTERNAL_TOOL_BAR_H__
3
4 /*
5  * Copyright (c) 2014 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/common/map-wrapper.h>
23
24 // INTERNAL INCLUDES
25 #include <dali-toolkit/public-api/controls/control-impl.h>
26 #include <dali-toolkit/public-api/controls/tool-bar/tool-bar.h>
27 #include <dali-toolkit/public-api/controls/table-view/table-view.h>
28
29 namespace Dali
30 {
31
32 namespace Toolkit
33 {
34
35 class ToolBar;
36
37 namespace Internal
38 {
39
40 /**
41  * ToolBar is a control to create a tool bar.
42  * @see Dali::Toolkit::ToolBar for more details.
43  */
44 class ToolBar : public Control
45 {
46 public:
47
48   /**
49    * Create an initialized ToolBar.
50    * @return A handle to a newly allocated Dali resource.
51    */
52   static Toolkit::ToolBar New();
53
54   /**
55    * @copydoc Dali::Toolkit::ToolBar::SetBackground()
56    */
57   void SetBackground( Actor background );
58
59   /**
60    * @copydoc Dali::Toolkit::ToolBar::AddControl()
61    */
62   void AddControl( Dali::Actor control, float relativeSize, Toolkit::Alignment::Type alignment, const Toolkit::Alignment::Padding& padding );
63
64   /**
65    * @copydoc Dali::Toolkit::ToolBar::RemoveControl()
66    */
67   void RemoveControl( Dali::Actor control );
68
69 private: // From Control
70
71   /**
72    * @copydoc Toolkit::Control::OnInitialize()
73    */
74   virtual void OnInitialize();
75
76   /**
77    * Adds a control using some default values (the control uses 10% of the tool bar space and is placed on the left group).
78    * @param child The control to be added.
79    *
80    * @see Control::OnControlChildAdd()
81    */
82   virtual void OnControlChildAdd(Actor& child);
83
84   /**
85    *
86    * @copydoc Toolkit::Control::OnControlSizeSet( const Vector3& targetSize )
87    */
88   virtual void OnControlSizeSet( const Vector3& targetSize );
89
90 private:
91   /**
92    */
93   class Lock
94   {
95   public:
96     /**
97      * Constructor, sets the lock boolean
98      */
99     Lock( bool& lock )
100     : mLock( lock )
101     {
102       mLock = true;
103     }
104
105     /**
106      * Destructor, releases lock boolean
107      */
108     ~Lock()
109     {
110       mLock = false;
111     }
112   private:
113     bool& mLock;
114   };
115
116   /**
117    * Constructor.
118    * It initializes ToolBar members.
119    */
120   ToolBar();
121
122   /**
123    * A reference counted object may only be deleted by calling Unreference()
124    */
125   virtual ~ToolBar();
126
127 private:
128   Toolkit::TableView mLayout;                   ///< TableView used to place controls.
129   unsigned int       mLeftOffset;               ///< Offset index where the next control is going to be added in the left group.
130   unsigned int       mCenterBase;               ///< Base index where the first control of the center group is placed.
131   unsigned int       mCenterOffset;             ///< Offset index where the next control is going to be added in the center group.
132   unsigned int       mRightBase;                ///< Base index where the first control of the right group is placed.
133   unsigned int       mRightOffset;              ///< Offset index where the next control is going to be added in the right group.
134   float              mLeftRelativeSpace;        ///< Relative space between left and center groups of controls.
135   float              mRightRelativeSpace;       ///< Relative space between center and right groups of controls.
136   float              mAccumulatedRelativeSpace; ///< Stores the total percentage space used by controls.
137   bool               mInitializing;             ///< Allows the use of Actor's API to add controls.
138   Vector3            mToolBarSize;              ///< The size of tool bar
139   Actor              mBackground;               ///< The background of the tool bar
140
141   std::map<Actor/*control*/,Toolkit::Alignment> mControls; ///< Stores a relationship between controls and their alignments used to place them inside the table view.
142 };
143
144 } // namespace Internal
145
146
147 // Helpers for public-api forwarding methods
148
149 inline Toolkit::Internal::ToolBar& GetImpl( Toolkit::ToolBar& toolBar )
150 {
151   DALI_ASSERT_ALWAYS( toolBar );
152
153   Dali::RefObject& handle = toolBar.GetImplementation();
154
155   return static_cast<Toolkit::Internal::ToolBar&>( handle );
156 }
157
158 inline const Toolkit::Internal::ToolBar& GetImpl( const Toolkit::ToolBar& toolBar )
159 {
160   DALI_ASSERT_ALWAYS( toolBar );
161
162   const Dali::RefObject& handle = toolBar.GetImplementation();
163
164   return static_cast<const Toolkit::Internal::ToolBar&>( handle );
165 }
166
167 } // namespace Toolkit
168
169 } // namespace Dali
170
171 #endif // __DALI_TOOLKIT_INTERNAL_TOOL_BAR_H__