Added some TextField boilerplate code
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / navigation-frame / navigation-tool-bar.h
1 #ifndef __DALI_TOOLKIT_INTERNAL_NAVIGATION_TOOL_BAR_H__
2 #define __DALI_TOOLKIT_INTERNAL_NAVIGATION_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 #include <dali-toolkit/public-api/controls/table-view/table-view.h>
22 #include <dali-toolkit/internal/controls/navigation-frame/navigation-control-impl.h>
23 #include <dali-toolkit/internal/controls/navigation-frame/navigation-bar.h>
24 #include <dali-toolkit/public-api/controls/navigation-frame/page.h>
25
26 namespace Dali
27 {
28
29 namespace Toolkit
30 {
31
32 namespace Internal
33 {
34
35 /**
36  * The tool bar locates in the bottom of the frame where other controls (such as PushButton ) could be placed.
37  * Controls could be added into three groups: HorizontalLeft, HorizontalCenter or HorizontalRight.
38  * The left and right groups can only have one control maximum each, while the central group can have multiple controls.
39  * It is also fine to have no control in each group.
40  * If the current NavigationOtem provides no control for the bar at all, the bar is hidden.
41  *               +----------------------------------------+
42  *               | +-+        +-----+  +-----+        +-+ |
43  *               | +-+        +-----+  +-----+        +-+ |
44  *               +----------------------------------------+
45  */
46 class NavigationToolBar : public NavigationBar
47 {
48 public:
49
50   NavigationToolBar(NavigationControl& naviControl,
51                     Toolkit::NaviToolBarStyle toolBarStylePortrait,
52                     Toolkit::NaviToolBarStyle toolBarStyleLandscape );
53
54 protected:
55
56   /**
57    * @copydoc Toolkit::Internal::NavigationBar::Update
58    */
59   void Update( Toolkit::Page page );
60
61   /**
62    * @copydoc Toolkit::Internal::NavigationBar::OrientationUpdate
63    */
64   void OrientationUpdate( bool isPortrait );
65
66 private:
67
68   /**
69    * Set a control onto the navigation tool bar when the page is on the top.
70    * @param[in] control The control on the navigation tool bar.
71    * @param[in] alignment The position of the control, can be HorizontalLeft/HorizontalRight/HorizontalCenter.
72    */
73   void AddControl(Actor actor, Toolkit::Alignment::Type alignment);
74
75   /**
76    * Set the fixed width and height to the cells of the layout
77    * These sizes need to be updated when the orientation is changing.
78    */
79   void SetFixedSizes();
80
81 private:
82
83   Toolkit::NaviToolBarStyle         mStylePortrait;
84   Toolkit::NaviToolBarStyle         mStyleLandscape;
85   const Toolkit::NaviToolBarStyle*  mCurrentStyle;
86
87   Toolkit::TableView                mLeftLayout;
88   Toolkit::TableView                mRightLayout;
89   Toolkit::TableView                mCentralLayout;
90
91   int                               mNumCentralActor;
92 };
93
94 } // namespace Internal
95
96 } // namespace Toolkit
97
98 } // namespace Dali
99
100 #endif /* __DALI_TOOLKIT_INTERNAL_NAVIGATION_TOOL_BAR_H__ */