Changed demos to use unselected button images.
[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.SetSelectedImage( Actor() );
90     button.SetAnchorPoint( AnchorPoint::TOP_LEFT );
91     button.SetResizePolicy( ResizePolicy::FIXED, Dimension::ALL_DIMENSIONS );
92     button.SetSize( image.GetWidth(), image.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     // Launch a pop-up containing TextField
103     mField = CreateTextField( stageSize, mButtonLabel );
104     mPopup = CreatePopup( stageSize.width * 0.8f );
105     mPopup.Add( mField );
106     mPopup.OutsideTouchedSignal().Connect( this, &TextFieldExample::OnPopupOutsideTouched );
107     mPopup.Show();
108
109     return true;
110   }
111
112   TextField CreateTextField( const Vector2& stageSize, const std::string& text )
113   {
114     TextField field = TextField::New();
115     field.SetAnchorPoint( AnchorPoint::TOP_LEFT );
116     field.SetResizePolicy( ResizePolicy::FILL_TO_PARENT, Dimension::WIDTH );
117     field.SetResizePolicy( ResizePolicy::DIMENSION_DEPENDENCY, Dimension::HEIGHT );
118     field.SetProperty( TextField::Property::TEXT, text );
119     field.SetProperty( TextField::Property::TEXT_COLOR, Vector4( 0.0f, 1.0f, 1.0f, 1.0f ) ); // CYAN
120     field.SetProperty( TextField::Property::PLACEHOLDER_TEXT, "Unnamed folder" );
121     field.SetProperty( TextField::Property::PLACEHOLDER_TEXT_FOCUSED, "Enter folder name." );
122     field.SetProperty( TextField::Property::DECORATION_BOUNDING_BOX, Rect<int>( BORDER_WIDTH, BORDER_WIDTH, stageSize.width - BORDER_WIDTH*2, stageSize.height - BORDER_WIDTH*2 ) );
123
124     return field;
125   }
126
127   Popup CreatePopup( float width )
128   {
129     Popup popup = Popup::New();
130     popup.SetParentOrigin( ParentOrigin::CENTER );
131     popup.SetAnchorPoint( AnchorPoint::CENTER );
132     popup.SetSize( width, 0.0f );
133     popup.HideTail();
134     popup.SetResizePolicy( ResizePolicy::SIZE_RELATIVE_TO_PARENT, Dimension::HEIGHT );
135     popup.SetSizeModeFactor( POPUP_SIZE_FACTOR_TO_PARENT );
136     popup.TouchedSignal().Connect( this, &TextFieldExample::OnPopupTouched );
137
138     return popup;
139   }
140
141   void OnPopupOutsideTouched()
142   {
143     // Update the folder text
144     if( mButton && mField )
145     {
146       Property::Value text = mField.GetProperty( TextField::Property::TEXT );
147       mButtonLabel = text.Get< std::string >();
148       mButton.SetLabel( mButtonLabel );
149     }
150
151     // Hide & discard the pop-up
152     if( mPopup )
153     {
154       mPopup.Hide();
155     }
156     mField.Reset();
157     mPopup.Reset();
158   }
159
160   bool OnPopupTouched( Actor actor, const TouchEvent& event )
161   {
162     // End edit mode for TextField if parent Popup touched.
163     if(event.GetPointCount() > 0)
164     {
165       const TouchPoint& point = event.GetPoint(0);
166       switch(point.state)
167       {
168         case TouchPoint::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.SetLabel( 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 main( int argc, char **argv )
226 {
227   Application application = Application::New( &argc, &argv, DALI_DEMO_THEME_PATH );
228
229   RunTest( application );
230
231   return 0;
232 }