Changed some demo examples to use ImageView.
[platform/core/uifw/dali-demo.git] / examples / text-message-field / text-message-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 message-field-example.cpp
20  * @brief Basic usage of TextField control
21  */
22
23 // EXTERNAL INCLUDES
24 #include <dali-toolkit/dali-toolkit.h>
25
26 using namespace Dali;
27 using namespace Dali::Toolkit;
28
29 namespace
30 {
31   const char* DESKTOP_IMAGE( DALI_IMAGE_DIR "woodEffect.jpg" );
32   const Vector2 DESKTOP_SIZE( Vector2( 1440, 1600 ) );
33   const Vector2 PHOTOBOX_SIZE( Vector2(330.0f, 80.0f ) );
34   const float MAX_OFFSCREEN_RENDERING_SIZE = 2048.f;
35   const float SCREEN_BORDER = 5.0f; // Border around screen that Popups and handles will not exceed
36 }
37 /**
38  * @brief The main class of the demo.
39  */
40 class TextMessageFieldExample : public ConnectionTracker
41 {
42 public:
43
44   TextMessageFieldExample( Application& application )
45   : mApplication( application ),
46     mTargetActorPosition(),
47     mTargetActorSize()
48   {
49     // Connect to the Application's Init signal
50     mApplication.InitSignal().Connect( this, &TextMessageFieldExample::Create );
51   }
52
53   ~TextMessageFieldExample()
54   {
55     // Nothing to do here.
56   }
57
58   /**
59    * One-time setup in response to Application InitSignal.
60    */
61   void Create( Application& application )
62   {
63     Stage stage = Stage::GetCurrent();
64     mStageSize = stage.GetSize();
65
66     stage.KeyEventSignal().Connect(this, &TextMessageFieldExample::OnKeyEvent);
67
68     // Create Root actor
69     Actor rootActor = Actor::New();
70     rootActor.SetName("rootActor");
71     rootActor.SetResizePolicy( ResizePolicy::FIXED,  Dimension::ALL_DIMENSIONS );
72     rootActor.SetSize( mStageSize );
73     rootActor.SetAnchorPoint( AnchorPoint::TOP_LEFT );
74
75     stage.Add( rootActor );
76
77     const Size mTargetActorSize( mStageSize.width, DESKTOP_SIZE.height );
78
79     // Create Desktop
80     ImageView desktop = ImageView::New( DESKTOP_IMAGE );
81     desktop.SetName("desktopActor");
82     desktop.SetAnchorPoint( AnchorPoint::TOP_LEFT );
83     desktop.SetResizePolicy( ResizePolicy::FIXED, Dimension::ALL_DIMENSIONS );
84     desktop.SetSize( mTargetActorSize );
85
86     rootActor.Add( desktop ); // Add desktop (content) to offscreen actor
87
88     // Create Photo Box A
89     ImageActor photoBoxA = CreateSolidColorActor( Vector4(0,0,0,0), true, Color::WHITE, 1 );
90     photoBoxA.SetName("photoBoxA");
91     photoBoxA.SetAnchorPoint( AnchorPoint::CENTER );
92     photoBoxA.SetParentOrigin( ParentOrigin::CENTER );
93     photoBoxA.SetResizePolicy( ResizePolicy::FIXED, Dimension::ALL_DIMENSIONS );
94     photoBoxA.SetSize( PHOTOBOX_SIZE );
95     photoBoxA.SetPosition( 0.0f, -500.0f, 1.0f );
96     desktop.Add( photoBoxA );
97
98     // Create TextField
99     TextField field = TextField::New();
100     field.SetResizePolicy( ResizePolicy::FIXED, Dimension::ALL_DIMENSIONS );
101     field.SetResizePolicy( ResizePolicy::FILL_TO_PARENT, Dimension::ALL_DIMENSIONS );
102     field.SetPadding( Padding( 1.0f, 1.0f, 1.0f, 1.0f ) );
103     field.SetAnchorPoint( AnchorPoint::TOP_LEFT );
104     field.SetZ( 1.0f );
105     field.SetProperty( TextField::Property::TEXT, "Enter Title name"  );
106     field.SetProperty( TextField::Property::DECORATION_BOUNDING_BOX, Rect<int>( SCREEN_BORDER, SCREEN_BORDER, mStageSize.width - SCREEN_BORDER*2, mStageSize.height - SCREEN_BORDER*2 ) );
107     photoBoxA.Add( field );
108
109     mPanGestureDetector = PanGestureDetector::New();
110     mPanGestureDetector.DetectedSignal().Connect(this, &TextMessageFieldExample::OnPanGesture );
111     mPanGestureDetector.Attach( desktop );
112   }
113
114   /**
115    * Main key event handler
116    */
117   void OnKeyEvent(const KeyEvent& event)
118   {
119     if(event.state == KeyEvent::Down)
120     {
121       if( IsKey( event, DALI_KEY_ESCAPE) || IsKey( event, DALI_KEY_BACK ) )
122       {
123         mApplication.Quit();
124       }
125     }
126   }
127
128   void OnPanGesture( Actor actor, const PanGesture& gesture )
129   {
130     if( gesture.state == Gesture::Continuing )
131     {
132       Vector2 position = Vector2( gesture.displacement );
133       mTargetActorPosition.y = mTargetActorPosition.y + position.y;
134       mTargetActorPosition.y = std::min( mTargetActorPosition.y, -mTargetActorSize.height );
135       mTargetActorPosition.y = std::max( mTargetActorPosition.y, ( mTargetActorSize.height - mStageSize.height*0.25f ) );
136       actor.SetPosition( 0.0f, mTargetActorPosition.y );
137     }
138   }
139
140 private:
141
142   Application& mApplication;
143   PanGestureDetector mPanGestureDetector;
144
145   Vector2 mTargetActorPosition;
146   Vector2 mTargetActorSize;
147   Vector2 mStageSize;
148 };
149
150 void RunTest( Application& application )
151 {
152   TextMessageFieldExample test( application );
153
154   application.MainLoop();
155 }
156
157 /** Entry point for Linux & Tizen applications */
158 int main( int argc, char **argv )
159 {
160   Application application = Application::New( &argc, &argv, DALI_DEMO_THEME_PATH );
161
162   RunTest( application );
163
164   return 0;
165 }