[3.0] Version downgrade (1.2.0 to 1.1.45)
[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 = DEMO_IMAGE_DIR "folder_appicon_empty_bg.png";
41   const char* const FOLDER_OPEN_ICON_IMAGE = DEMO_IMAGE_DIR "folder_appicon_empty_open_bg.png";
42
43   const float BORDER_WIDTH = 4.0f;
44
45   const Vector3 POPUP_SIZE_FACTOR_TO_PARENT = Vector3( 0.0, 0.25, 0.0 );
46
47 } // unnamed namespace
48
49 /**
50  * @brief The main class of the demo.
51  */
52 class TextFieldExample : public ConnectionTracker
53 {
54 public:
55
56   TextFieldExample( Application& application )
57   : mApplication( application )
58   {
59     // Connect to the Application's Init signal
60     mApplication.InitSignal().Connect( this, &TextFieldExample::Create );
61   }
62
63   ~TextFieldExample()
64   {
65     // Nothing to do here.
66   }
67
68   /**
69    * One-time setup in response to Application InitSignal.
70    */
71   void Create( Application& application )
72   {
73     Stage stage = Stage::GetCurrent();
74
75     stage.SetBackgroundColor( Vector4( 0.04f, 0.345f, 0.392f, 1.0f ) );
76     stage.KeyEventSignal().Connect(this, &TextFieldExample::OnKeyEvent);
77
78     mButton = CreateFolderButton();
79     mButton.ClickedSignal().Connect( this, &TextFieldExample::OnButtonClicked );
80     stage.Add( mButton );
81   }
82
83   PushButton CreateFolderButton()
84   {
85     PushButton button = PushButton::New();
86     button.SetUnselectedImage( FOLDER_ICON_IMAGE );
87     button.SetSelectedImage( FOLDER_OPEN_ICON_IMAGE );
88     button.SetAnchorPoint( AnchorPoint::TOP_LEFT );
89     button.SetResizePolicy( ResizePolicy::FIXED, Dimension::ALL_DIMENSIONS );
90     ImageDimensions imageSize = ResourceImage::GetImageSize( FOLDER_ICON_IMAGE );
91     button.SetSize( imageSize.GetWidth(), imageSize.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     // Remove previously hidden pop-up
102     UnparentAndReset(mPopup);
103
104     // Launch a pop-up containing TextField
105     mField = CreateTextField( stageSize, mButtonLabel );
106     mPopup = CreatePopup( stageSize.width * 0.8f );
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( float width )
132   {
133     Popup popup = Popup::New();
134     popup.SetParentOrigin( ParentOrigin::CENTER );
135     popup.SetAnchorPoint( AnchorPoint::CENTER );
136     popup.SetSize( width, 0.0f );
137     popup.SetResizePolicy( ResizePolicy::SIZE_RELATIVE_TO_PARENT, Dimension::HEIGHT );
138     popup.SetSizeModeFactor( POPUP_SIZE_FACTOR_TO_PARENT );
139     popup.TouchSignal().Connect( this, &TextFieldExample::OnPopupTouched );
140
141     return popup;
142   }
143
144   void OnPopupOutsideTouched()
145   {
146     // Update the folder text
147     if( mButton && mField )
148     {
149       Property::Value text = mField.GetProperty( TextField::Property::TEXT );
150       mButtonLabel = text.Get< std::string >();
151       mButton.SetLabelText( mButtonLabel );
152     }
153
154     // Hide & discard the pop-up
155     if( mPopup )
156     {
157       mPopup.SetDisplayState( Popup::HIDDEN );
158     }
159     mField.Reset();
160   }
161
162   bool OnPopupTouched( Actor actor, const TouchData& event )
163   {
164     // End edit mode for TextField if parent Popup touched.
165     if(event.GetPointCount() > 0)
166     {
167       switch( event.GetState( 0 ) )
168       {
169         case PointState::DOWN:
170         {
171           // Update the folder text and lose focus for Key events
172           if( mButton && mField )
173           {
174             Property::Value text = mField.GetProperty( TextField::Property::TEXT );
175             mButtonLabel = text.Get< std::string >();
176             mButton.SetLabelText( mButtonLabel );
177             mField.ClearKeyInputFocus();
178           }
179           break;
180         }
181         default:
182         {
183           break;
184         }
185       } // end switch
186     }
187
188     return true;
189   }
190
191   /**
192    * Main key event handler
193    */
194   void OnKeyEvent(const KeyEvent& event)
195   {
196     if(event.state == KeyEvent::Down)
197     {
198       if( IsKey( event, DALI_KEY_ESCAPE) || IsKey( event, DALI_KEY_BACK ) )
199       {
200         mApplication.Quit();
201       }
202     }
203   }
204
205 private:
206
207   Application& mApplication;
208
209   // This button launches a pop-up containing TextField
210   PushButton mButton;
211   std::string mButtonLabel;
212
213   // Pop-up contents
214   TextField mField;
215   Popup mPopup;
216 };
217
218 void RunTest( Application& application )
219 {
220   TextFieldExample test( application );
221
222   application.MainLoop();
223 }
224
225 /** Entry point for Linux & Tizen applications */
226 int DALI_EXPORT_API main( int argc, char **argv )
227 {
228   // DALI_DEMO_THEME_PATH not passed to Application so TextField example uses default Toolkit style sheet.
229   Application application = Application::New( &argc, &argv );
230
231   RunTest( application );
232
233   return 0;
234 }