Fix the broken popup layout in text field example
[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 } // unnamed namespace
46
47 /**
48  * @brief The main class of the demo.
49  */
50 class TextFieldExample : public ConnectionTracker
51 {
52 public:
53
54   TextFieldExample( Application& application )
55   : mApplication( application )
56   {
57     // Connect to the Application's Init signal
58     mApplication.InitSignal().Connect( this, &TextFieldExample::Create );
59   }
60
61   ~TextFieldExample()
62   {
63     // Nothing to do here.
64   }
65
66   /**
67    * One-time setup in response to Application InitSignal.
68    */
69   void Create( Application& application )
70   {
71     Stage stage = Stage::GetCurrent();
72
73     stage.SetBackgroundColor( Vector4( 0.04f, 0.345f, 0.392f, 1.0f ) );
74     stage.KeyEventSignal().Connect(this, &TextFieldExample::OnKeyEvent);
75
76     // Hide the indicator bar
77     application.GetWindow().ShowIndicator( Dali::Window::INVISIBLE );
78
79     mButton = CreateFolderButton();
80     mButton.ClickedSignal().Connect( this, &TextFieldExample::OnButtonClicked );
81     stage.Add( mButton );
82   }
83
84   PushButton CreateFolderButton()
85   {
86     PushButton button = PushButton::New();
87     button.SetUnselectedImage( FOLDER_ICON_IMAGE );
88     button.SetSelectedImage( FOLDER_OPEN_ICON_IMAGE );
89     button.SetAnchorPoint( AnchorPoint::TOP_LEFT );
90     button.SetResizePolicy( ResizePolicy::FIXED, Dimension::ALL_DIMENSIONS );
91     ImageDimensions imageSize = ResourceImage::GetImageSize( FOLDER_ICON_IMAGE );
92     button.SetSize( imageSize.GetWidth(), imageSize.GetHeight() );
93
94     return button;
95   }
96
97   bool OnButtonClicked( Toolkit::Button button )
98   {
99     Stage stage = Stage::GetCurrent();
100     Vector2 stageSize = stage.GetSize();
101
102     // Remove previously hidden pop-up
103     UnparentAndReset(mPopup);
104
105     // Launch a pop-up containing TextField
106     mField = CreateTextField( stageSize, mButtonLabel );
107     mPopup = CreatePopup();
108     mPopup.Add( mField );
109     mPopup.OutsideTouchedSignal().Connect( this, &TextFieldExample::OnPopupOutsideTouched );
110     stage.Add( mPopup );
111     mPopup.SetDisplayState( Popup::SHOWN );
112
113     return true;
114   }
115
116   TextField CreateTextField( const Vector2& stageSize, const std::string& text )
117   {
118     TextField field = TextField::New();
119     field.SetName("textField");
120     field.SetAnchorPoint( AnchorPoint::TOP_LEFT );
121     field.SetResizePolicy( ResizePolicy::FILL_TO_PARENT, Dimension::WIDTH );
122     field.SetResizePolicy( ResizePolicy::DIMENSION_DEPENDENCY, Dimension::HEIGHT );
123     field.SetProperty( TextField::Property::TEXT, text );
124     field.SetProperty( TextField::Property::TEXT_COLOR, Vector4( 0.0f, 1.0f, 1.0f, 1.0f ) ); // CYAN
125     field.SetProperty( TextField::Property::PLACEHOLDER_TEXT, "Unnamed folder" );
126     field.SetProperty( TextField::Property::PLACEHOLDER_TEXT_FOCUSED, "Enter folder name." );
127     field.SetProperty( TextField::Property::DECORATION_BOUNDING_BOX, Rect<int>( BORDER_WIDTH, BORDER_WIDTH, stageSize.width - BORDER_WIDTH*2, stageSize.height - BORDER_WIDTH*2 ) );
128
129     return field;
130   }
131
132   Popup CreatePopup()
133   {
134     Popup popup = Popup::New();
135     popup.SetParentOrigin( ParentOrigin::CENTER );
136     popup.SetAnchorPoint( AnchorPoint::CENTER );
137     popup.SetResizePolicy( ResizePolicy::FIT_TO_CHILDREN, Dimension::WIDTH );
138     popup.SetResizePolicy( ResizePolicy::FIT_TO_CHILDREN, Dimension::HEIGHT );
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 }