Added more TextLabels
[platform/core/uifw/dali-demo.git] / shared / view.h
1 #ifndef __DALI_DEMO_HELPER_VIEW_H__
2 #define __DALI_DEMO_HELPER_VIEW_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/dali-toolkit.h>
22
23 namespace DemoHelper
24 {
25
26 /**
27  * Provide a style for the view and its tool bar.
28  */
29 struct ViewStyle
30 {
31   ViewStyle( float toolBarButtonPercentage, float toolBarTitlePercentage, float toolBarHeight, float toolBarPadding )
32   : mToolBarButtonPercentage( toolBarButtonPercentage ),
33     mToolBarTitlePercentage( toolBarTitlePercentage ),
34     mToolBarHeight( toolBarHeight ),
35     mToolBarPadding( toolBarPadding )
36   {}
37
38   float mToolBarButtonPercentage; ///< The tool bar button width is a percentage of the tool bar width.
39   float mToolBarTitlePercentage;  ///< The tool bar title width is a percentage of the tool bar width.
40   float mToolBarHeight;           ///< The tool bar height (in pixels).
41   float mToolBarPadding;          ///< The tool bar padding (in pixels)..
42 };
43
44 const ViewStyle DEFAULT_VIEW_STYLE( 0.1f, 0.7f, 80.f, 4.f );
45
46 const char*                   DEFAULT_TEXT_STYLE_FONT_FAMILY("HelveticaNue");
47 const char*                   DEFAULT_TEXT_STYLE_FONT_STYLE("Regular");
48 const float                   DEFAULT_TEXT_STYLE_POINT_SIZE( 16.0f );
49 const Dali::Vector4           DEFAULT_TEXT_STYLE_COLOR(0.0f, 0.0f, 0.0f, 1.0f);
50
51 const Dali::Toolkit::Alignment::Padding DEFAULT_PLAY_PADDING(12.0f, 12.0f, 12.0f, 12.0f);
52 const Dali::Toolkit::Alignment::Padding DEFAULT_MODE_SWITCH_PADDING(8.0f, 8.0f, 8.0f, 8.0f);
53
54 float ScalePointSize(int pointSize)
55 {
56   Dali::Vector2 dpi = Dali::Stage::GetCurrent().GetDpi();
57   float meanDpi = (dpi.height + dpi.width) * 0.5f;
58   return pointSize * 220.0f / meanDpi;        // 220 is the default horizontal DPI defined in adaptor Application
59 }
60
61 Dali::Layer CreateToolbar( Dali::Toolkit::ToolBar& toolBar,
62                            const std::string& toolbarImagePath,
63                            const std::string& title,
64                            const ViewStyle& style )
65 {
66   Dali::Stage stage = Dali::Stage::GetCurrent();
67
68   Dali::Layer toolBarLayer = Dali::Layer::New();
69   toolBarLayer.SetAnchorPoint( Dali::AnchorPoint::TOP_CENTER );
70   toolBarLayer.SetParentOrigin( Dali::ParentOrigin::TOP_CENTER );
71   toolBarLayer.ApplyConstraint( Dali::Constraint::New<Dali::Vector3>( Dali::Actor::Property::SIZE, Dali::ParentSource( Dali::Actor::Property::SIZE ), Dali::SourceWidthFixedHeight( style.mToolBarHeight  ) ) );
72   toolBarLayer.SetSize( 0.0f, style.mToolBarHeight );
73
74   // Raise tool bar layer to the top.
75   toolBarLayer.RaiseToTop();
76
77   // Tool bar
78   Dali::Image image = Dali::ResourceImage::New( toolbarImagePath );
79   Dali::ImageActor toolBarBackground = Dali::ImageActor::New( image );
80   toolBar = Dali::Toolkit::ToolBar::New();
81   toolBar.SetBackground( toolBarBackground );
82   toolBar.SetParentOrigin( Dali::ParentOrigin::TOP_CENTER );
83   toolBar.SetAnchorPoint( Dali::AnchorPoint::TOP_CENTER );
84   toolBar.SetSize( 0.0f, style.mToolBarHeight );
85   toolBar.SetSizeMode( Dali::SIZE_EQUAL_TO_PARENT );
86   toolBarBackground.SetSortModifier(1.0f);
87
88   // Add the tool bar to the too bar layer.
89   toolBarLayer.Add( toolBar );
90
91   // Tool bar text.
92   if( !title.empty() )
93   {
94     Dali::Toolkit::TextLabel label = Dali::Toolkit::TextLabel::New();
95     label.SetAnchorPoint( Dali::AnchorPoint::TOP_LEFT );
96     label.SetSize( stage.GetSize().width, style.mToolBarHeight );
97     label.SetDrawMode( Dali::DrawMode::OVERLAY );
98     label.SetProperty( Dali::Toolkit::TextLabel::Property::TEXT, title );
99     label.SetProperty( Dali::Toolkit::TextLabel::Property::ALIGNMENT, "CENTER" );
100     label.SetProperty( Dali::Toolkit::TextLabel::Property::FONT_FAMILY, DEFAULT_TEXT_STYLE_FONT_FAMILY );
101     label.SetProperty( Dali::Toolkit::TextLabel::Property::FONT_STYLE, DEFAULT_TEXT_STYLE_FONT_STYLE );
102     label.SetProperty( Dali::Toolkit::TextLabel::Property::POINT_SIZE, DEFAULT_TEXT_STYLE_POINT_SIZE );
103     label.SetColor( DEFAULT_TEXT_STYLE_COLOR );
104     toolBarLayer.Add( label );
105   }
106
107   return toolBarLayer;
108 }
109
110 Dali::Layer CreateView( Dali::Application& application,
111                         Dali::Toolkit::View& view,
112                         Dali::Toolkit::ToolBar& toolBar,
113                         const std::string& backgroundImagePath,
114                         const std::string& toolbarImagePath,
115                         const std::string& title,
116                         const ViewStyle& style = DEFAULT_VIEW_STYLE )
117 {
118   Dali::Stage stage = Dali::Stage::GetCurrent();
119
120   // Create default View.
121   view = Dali::Toolkit::View::New();
122
123   // Add the view to the stage before setting the background.
124   stage.Add( view );
125
126   // Set background image, loading it at screen resolution:
127   if ( !backgroundImagePath.empty() )
128   {
129     Dali::ImageAttributes backgroundAttributes;
130     backgroundAttributes.SetSize( stage.GetSize() );
131     backgroundAttributes.SetFilterMode( Dali::ImageAttributes::BoxThenLinear );
132     backgroundAttributes.SetScalingMode( Dali::ImageAttributes::ScaleToFill );
133     Dali::Image backgroundImage = Dali::ResourceImage::New( backgroundImagePath, backgroundAttributes );
134     Dali::ImageActor backgroundImageActor = Dali::ImageActor::New( backgroundImage );
135     view.SetBackground( backgroundImageActor );
136   }
137
138   // FIXME
139   // Connects the orientation signal with the View::OrientationChanged method.
140   //application.GetOrientation().ChangedSignal().Connect( &view, &Dali::Toolkit::View::OrientationChanged );
141
142   // Create default ToolBar
143   Dali::Layer toolBarLayer = CreateToolbar( toolBar, toolbarImagePath, title, style );
144
145   // Add tool bar layer to the view.
146   view.AddContentLayer( toolBarLayer );
147
148
149
150   // Create a content layer.
151   Dali::Layer contentLayer = Dali::Layer::New();
152   contentLayer.SetAnchorPoint( Dali::AnchorPoint::CENTER );
153   contentLayer.SetParentOrigin( Dali::ParentOrigin::CENTER );
154   contentLayer.SetSizeMode( Dali::SIZE_EQUAL_TO_PARENT );
155   view.AddContentLayer( contentLayer );
156   contentLayer.LowerBelow( toolBarLayer );
157
158   return contentLayer;
159 }
160
161 } // DemoHelper
162
163 #endif // __DALI_DEMO_HELPER_VIEW_H__