[dali_1.2.29] Merge branch 'devel/master'
[platform/core/uifw/dali-demo.git] / examples / text-field / text-field-example.cpp
1 /*
2  * Copyright (c) 2017 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/buttons/button-devel.h>
26 #include <dali-toolkit/devel-api/controls/popup/popup.h>
27 #include <iostream>
28 #include <dali/public-api/events/touch-point.h>
29
30 // INTERNAL INCLUDES
31 #include "shared/multi-language-strings.h"
32 #include "shared/view.h"
33
34 using namespace Dali;
35 using namespace Dali::Toolkit;
36 using namespace MultiLanguageStrings;
37
38 namespace
39 {
40
41   const char* const FOLDER_ICON_IMAGE = DEMO_IMAGE_DIR "folder_appicon_empty_bg.png";
42   const char* const FOLDER_OPEN_ICON_IMAGE = DEMO_IMAGE_DIR "folder_appicon_empty_open_bg.png";
43
44   const float BORDER_WIDTH = 4.0f;
45
46   const Vector3 POPUP_SIZE_FACTOR_TO_PARENT = Vector3( 0.8, 0.25, 0.0 );
47
48 } // unnamed namespace
49
50 /**
51  * @brief The main class of the demo.
52  */
53 class TextFieldExample : public ConnectionTracker
54 {
55 public:
56
57   TextFieldExample( Application& application )
58   : mApplication( application )
59   {
60     // Connect to the Application's Init signal
61     mApplication.InitSignal().Connect( this, &TextFieldExample::Create );
62   }
63
64   ~TextFieldExample()
65   {
66     // Nothing to do here.
67   }
68
69   /**
70    * One-time setup in response to Application InitSignal.
71    */
72   void Create( Application& application )
73   {
74     Stage stage = Stage::GetCurrent();
75
76     stage.SetBackgroundColor( Vector4( 0.04f, 0.345f, 0.392f, 1.0f ) );
77     stage.KeyEventSignal().Connect(this, &TextFieldExample::OnKeyEvent);
78
79     // Hide the indicator bar
80     application.GetWindow().ShowIndicator( Dali::Window::INVISIBLE );
81
82     mButton = CreateFolderButton();
83     mButton.ClickedSignal().Connect( this, &TextFieldExample::OnButtonClicked );
84     stage.Add( mButton );
85   }
86
87   PushButton CreateFolderButton()
88   {
89     PushButton button = PushButton::New();
90     button.SetProperty( Toolkit::DevelButton::Property::UNSELECTED_BACKGROUND_VISUAL, FOLDER_ICON_IMAGE );
91     button.SetProperty( Toolkit::DevelButton::Property::SELECTED_BACKGROUND_VISUAL, FOLDER_OPEN_ICON_IMAGE );
92     button.SetAnchorPoint( AnchorPoint::TOP_LEFT );
93     return button;
94   }
95
96   bool OnButtonClicked( Toolkit::Button button )
97   {
98     Stage stage = Stage::GetCurrent();
99     Vector2 stageSize = stage.GetSize();
100
101     // Remove previously hidden pop-up
102     UnparentAndReset(mPopup);
103
104     // Launch a pop-up containing TextField
105     mField = CreateTextField( stageSize, mButtonLabel );
106     mPopup = CreatePopup();
107     mPopup.Add( mField );
108     mPopup.OutsideTouchedSignal().Connect( this, &TextFieldExample::OnPopupOutsideTouched );
109     stage.Add( mPopup );
110     mPopup.SetDisplayState( Popup::SHOWN );
111
112     return true;
113   }
114
115   TextField CreateTextField( const Vector2& stageSize, const std::string& text )
116   {
117     TextField field = TextField::New();
118     field.SetName("textField");
119     field.SetAnchorPoint( AnchorPoint::TOP_LEFT );
120     field.SetResizePolicy( ResizePolicy::FILL_TO_PARENT, Dimension::WIDTH );
121     field.SetResizePolicy( ResizePolicy::DIMENSION_DEPENDENCY, Dimension::HEIGHT );
122     field.SetProperty( TextField::Property::TEXT, text );
123     field.SetProperty( TextField::Property::TEXT_COLOR, Vector4( 0.0f, 1.0f, 1.0f, 1.0f ) ); // CYAN
124     field.SetProperty( TextField::Property::PLACEHOLDER_TEXT, "Unnamed folder" );
125     field.SetProperty( TextField::Property::PLACEHOLDER_TEXT_FOCUSED, "Enter folder name." );
126     field.SetProperty( TextField::Property::DECORATION_BOUNDING_BOX, Rect<int>( BORDER_WIDTH, BORDER_WIDTH, stageSize.width - BORDER_WIDTH*2, stageSize.height - BORDER_WIDTH*2 ) );
127
128     return field;
129   }
130
131   Popup CreatePopup()
132   {
133     Popup popup = Popup::New();
134     popup.SetParentOrigin( ParentOrigin::CENTER );
135     popup.SetAnchorPoint( AnchorPoint::CENTER );
136     popup.SetResizePolicy( ResizePolicy::SIZE_RELATIVE_TO_PARENT, Dimension::ALL_DIMENSIONS );
137     popup.SetSizeModeFactor( POPUP_SIZE_FACTOR_TO_PARENT );
138     popup.TouchSignal().Connect( this, &TextFieldExample::OnPopupTouched );
139
140     return popup;
141   }
142
143   void OnPopupOutsideTouched()
144   {
145     // Update the folder text
146     if( mButton && mField )
147     {
148       Property::Value text = mField.GetProperty( TextField::Property::TEXT );
149       mButtonLabel = text.Get< std::string >();
150       mButton.SetProperty( Toolkit::Button::Property::LABEL, mButtonLabel );
151     }
152
153     // Hide & discard the pop-up
154     if( mPopup )
155     {
156       mPopup.SetDisplayState( Popup::HIDDEN );
157     }
158     mField.Reset();
159   }
160
161   bool OnPopupTouched( Actor actor, const TouchData& event )
162   {
163     // End edit mode for TextField if parent Popup touched.
164     if(event.GetPointCount() > 0)
165     {
166       switch( event.GetState( 0 ) )
167       {
168         case PointState::DOWN:
169         {
170           // Update the folder text and lose focus for Key events
171           if( mButton && mField )
172           {
173             Property::Value text = mField.GetProperty( TextField::Property::TEXT );
174             mButtonLabel = text.Get< std::string >();
175             mButton.SetProperty( Toolkit::Button::Property::LABEL, mButtonLabel );
176             mField.ClearKeyInputFocus();
177           }
178           break;
179         }
180         default:
181         {
182           break;
183         }
184       } // end switch
185     }
186
187     return true;
188   }
189
190   /**
191    * Main key event handler
192    */
193   void OnKeyEvent(const KeyEvent& event)
194   {
195     if(event.state == KeyEvent::Down)
196     {
197       if( IsKey( event, DALI_KEY_ESCAPE) || IsKey( event, DALI_KEY_BACK ) )
198       {
199         mApplication.Quit();
200       }
201     }
202   }
203
204 private:
205
206   Application& mApplication;
207
208   // This button launches a pop-up containing TextField
209   PushButton mButton;
210   std::string mButtonLabel;
211
212   // Pop-up contents
213   TextField mField;
214   Popup mPopup;
215 };
216
217 void RunTest( Application& application )
218 {
219   TextFieldExample test( application );
220
221   application.MainLoop();
222 }
223
224 /** Entry point for Linux & Tizen applications */
225 int DALI_EXPORT_API main( int argc, char **argv )
226 {
227   // DALI_DEMO_THEME_PATH not passed to Application so TextField example uses default Toolkit style sheet.
228   Application application = Application::New( &argc, &argv );
229
230   RunTest( application );
231
232   return 0;
233 }