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