Merge remote-tracking branch 'origin/tizen' into devel/new_mesh
[platform/core/uifw/dali-demo.git] / examples / text-field / text-field-example.cpp
1 /*
2  * Copyright (c) 2015 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 /**
19  * @file text-field-example.cpp
20  * @brief Basic usage of TextField control
21  */
22
23 // EXTERNAL INCLUDES
24 #include <dali-toolkit/dali-toolkit.h>
25 #include <dali-toolkit/devel-api/controls/popup/popup.h>
26 #include <iostream>
27 #include <dali/public-api/events/touch-point.h>
28
29 // INTERNAL INCLUDES
30 #include "shared/multi-language-strings.h"
31 #include "shared/view.h"
32
33 using namespace Dali;
34 using namespace Dali::Toolkit;
35 using namespace MultiLanguageStrings;
36
37 namespace
38 {
39
40   const char* const FOLDER_ICON_IMAGE = DALI_IMAGE_DIR "folder_appicon_empty_bg.png";
41
42   const float BORDER_WIDTH = 4.0f;
43
44   const Vector3 POPUP_SIZE_FACTOR_TO_PARENT = Vector3( 0.0, 0.25, 0.0 );
45
46 } // unnamed namespace
47
48 /**
49  * @brief The main class of the demo.
50  */
51 class TextFieldExample : public ConnectionTracker
52 {
53 public:
54
55   TextFieldExample( Application& application )
56   : mApplication( application )
57   {
58     // Connect to the Application's Init signal
59     mApplication.InitSignal().Connect( this, &TextFieldExample::Create );
60   }
61
62   ~TextFieldExample()
63   {
64     // Nothing to do here.
65   }
66
67   /**
68    * One-time setup in response to Application InitSignal.
69    */
70   void Create( Application& application )
71   {
72     Stage stage = Stage::GetCurrent();
73
74     stage.SetBackgroundColor( Vector4( 0.04f, 0.345f, 0.392f, 1.0f ) );
75     stage.KeyEventSignal().Connect(this, &TextFieldExample::OnKeyEvent);
76
77     mButton = CreateFolderButton();
78     mButton.ClickedSignal().Connect( this, &TextFieldExample::OnButtonClicked );
79     stage.Add( mButton );
80   }
81
82   PushButton CreateFolderButton()
83   {
84     PushButton button = PushButton::New();
85     ResourceImage image = ResourceImage::New( FOLDER_ICON_IMAGE );
86     ImageActor folderButton = ImageActor::New( image );
87     folderButton.SetColor( Color::WHITE );
88     button.SetButtonImage( folderButton );
89     button.SetAnchorPoint( AnchorPoint::TOP_LEFT );
90     button.SetResizePolicy( ResizePolicy::FIXED, Dimension::ALL_DIMENSIONS );
91     button.SetSize( image.GetWidth(), image.GetHeight() );
92
93     return button;
94   }
95
96   bool OnButtonClicked( Toolkit::Button button )
97   {
98     Stage stage = Stage::GetCurrent();
99     Vector2 stageSize = stage.GetSize();
100
101     // Launch a pop-up containing TextField
102     mField = CreateTextField( stageSize, mButtonLabel );
103     mPopup = CreatePopup( stageSize.width * 0.8f );
104     mPopup.Add( mField );
105     mPopup.OutsideTouchedSignal().Connect( this, &TextFieldExample::OnPopupOutsideTouched );
106     mPopup.Show();
107
108     return true;
109   }
110
111   TextField CreateTextField( const Vector2& stageSize, const std::string& text )
112   {
113     TextField field = TextField::New();
114     field.SetAnchorPoint( AnchorPoint::TOP_LEFT );
115     field.SetResizePolicy( ResizePolicy::FILL_TO_PARENT, Dimension::WIDTH );
116     field.SetResizePolicy( ResizePolicy::DIMENSION_DEPENDENCY, Dimension::HEIGHT );
117     field.SetProperty( TextField::Property::TEXT, text );
118     field.SetProperty( TextField::Property::TEXT_COLOR, Vector4( 0.0f, 1.0f, 1.0f, 1.0f ) ); // CYAN
119     field.SetProperty( TextField::Property::PLACEHOLDER_TEXT, "Unnamed folder" );
120     field.SetProperty( TextField::Property::PLACEHOLDER_TEXT_FOCUSED, "Enter folder name." );
121     field.SetProperty( TextField::Property::DECORATION_BOUNDING_BOX, Rect<int>( BORDER_WIDTH, BORDER_WIDTH, stageSize.width - BORDER_WIDTH*2, stageSize.height - BORDER_WIDTH*2 ) );
122
123     return field;
124   }
125
126   Popup CreatePopup( float width )
127   {
128     Popup popup = Popup::New();
129     popup.SetParentOrigin( ParentOrigin::CENTER );
130     popup.SetAnchorPoint( AnchorPoint::CENTER );
131     popup.SetSize( width, 0.0f );
132     popup.HideTail();
133     popup.SetResizePolicy( ResizePolicy::SIZE_RELATIVE_TO_PARENT, Dimension::HEIGHT );
134     popup.SetSizeModeFactor( POPUP_SIZE_FACTOR_TO_PARENT );
135     popup.TouchedSignal().Connect( this, &TextFieldExample::OnPopupTouched );
136
137     return popup;
138   }
139
140   void OnPopupOutsideTouched()
141   {
142     // Update the folder text
143     if( mButton && mField )
144     {
145       Property::Value text = mField.GetProperty( TextField::Property::TEXT );
146       mButtonLabel = text.Get< std::string >();
147       mButton.SetLabel( mButtonLabel );
148     }
149
150     // Hide & discard the pop-up
151     if( mPopup )
152     {
153       mPopup.Hide();
154     }
155     mField.Reset();
156     mPopup.Reset();
157   }
158
159   bool OnPopupTouched( Actor actor, const TouchEvent& event )
160   {
161     // End edit mode for TextField if parent Popup touched.
162     if(event.GetPointCount() > 0)
163     {
164       const TouchPoint& point = event.GetPoint(0);
165       switch(point.state)
166       {
167         case TouchPoint::Down:
168         {
169           // Update the folder text and lose focus for Key events
170           if( mButton && mField )
171           {
172             Property::Value text = mField.GetProperty( TextField::Property::TEXT );
173             mButtonLabel = text.Get< std::string >();
174             mButton.SetLabel( mButtonLabel );
175             mField.ClearKeyInputFocus();
176           }
177           break;
178         }
179         default:
180         {
181           break;
182         }
183       } // end switch
184     }
185
186     return true;
187   }
188
189   /**
190    * Main key event handler
191    */
192   void OnKeyEvent(const KeyEvent& event)
193   {
194     if(event.state == KeyEvent::Down)
195     {
196       if( IsKey( event, DALI_KEY_ESCAPE) || IsKey( event, DALI_KEY_BACK ) )
197       {
198         mApplication.Quit();
199       }
200     }
201   }
202
203 private:
204
205   Application& mApplication;
206
207   // This button launches a pop-up containing TextField
208   PushButton mButton;
209   std::string mButtonLabel;
210
211   // Pop-up contents
212   TextField mField;
213   Popup mPopup;
214 };
215
216 void RunTest( Application& application )
217 {
218   TextFieldExample test( application );
219
220   application.MainLoop();
221 }
222
223 /** Entry point for Linux & Tizen applications */
224 int main( int argc, char **argv )
225 {
226   Application application = Application::New( &argc, &argv, DALI_DEMO_THEME_PATH );
227
228   RunTest( application );
229
230   return 0;
231 }