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