Merge remote-tracking branch 'origin/tizen' into new_text
[platform/core/uifw/dali-demo.git] / examples / hello-world / hello-world-example.cpp
1 /*
2  * Copyright (c) 2014 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 #include <dali/dali.h>
19
20 using namespace Dali;
21
22 // This example shows how to create and display Hello World! using a simple TextActor
23 //
24 class HelloWorldController : public ConnectionTracker
25 {
26 public:
27
28   HelloWorldController( Application& application )
29   : mApplication( application )
30   {
31     std::cout << "HelloWorldController::HelloWorldController" << std::endl;
32
33     // Connect to the Application's Init signal
34     mApplication.InitSignal().Connect( this, &HelloWorldController::Create );
35   }
36
37   ~HelloWorldController()
38   {
39     // Nothing to do here;
40   }
41
42   // The Init signal is received once (only) during the Application lifetime
43   void Create( Application& application )
44   {
45     // TODO
46   }
47
48   bool OnTouch( Actor actor, const TouchEvent& touch )
49   {
50     // quit the application
51     mApplication.Quit();
52     return true;
53   }
54
55 private:
56   Application&  mApplication;
57 };
58
59 void RunTest( Application& application )
60 {
61   HelloWorldController test( application );
62
63   application.MainLoop();
64 }
65
66 // Entry point for Linux & SLP applications
67 //
68 int main( int argc, char **argv )
69 {
70   Application application = Application::New( &argc, &argv );
71
72   RunTest( application );
73
74   return 0;
75 }