Tizen 2.1 base
[sdk/ide/native-sample.git] / samples / native / partner / cpp / Sample / Tizen C++ / SceneManagement / SceneManagement / project / inc / SceneRegister.h
1 //
2 // Tizen C++ SDK
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Flora License, Version 1.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://www.tizenopensource.org/license
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an AS IS BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 #ifndef _SCENE_REGISTER_H_
19 #define _SCENE_REGISTER_H_
20
21 #include "SceneChangeLogger.h"
22
23
24 // Use 'extern' to eliminate duplicate data allocation.
25 extern const wchar_t* SCENE_MAIN_MENU;
26 extern const wchar_t* SCENE_INFORMATION;
27 extern const wchar_t* SCENE_LOG;
28 extern const wchar_t* SCENE_HELP;
29
30 extern const wchar_t* SCENE_SIMPLE_1;
31 extern const wchar_t* SCENE_SIMPLE_2;
32 extern const wchar_t* SCENE_SIMPLE_3;
33
34 extern const wchar_t* SCENE_COMPLEX_1;
35 extern const wchar_t* SCENE_COMPLEX_2;
36 extern const wchar_t* SCENE_COMPLEX_3;
37 extern const wchar_t* SCENE_COMPLEX_4;
38
39 extern const wchar_t* SCENE_CLOCK_TAB;
40 extern const wchar_t* SCENE_STOPWATCH_TAB;
41 extern const wchar_t* SCENE_TIMER_TAB;
42
43 extern const wchar_t* SCENE_RSRC_TAB_1;
44 extern const wchar_t* SCENE_RSRC_TAB_2;
45 extern const wchar_t* SCENE_RSRC_TAB_3;
46
47
48 class SceneChangeLogger;
49
50 class SceneRegister
51 {
52 public:
53         static void RegisterAllScenes(void);
54         static SceneChangeLogger changeLogger;
55
56 private:
57         SceneRegister(void);
58         ~SceneRegister(void);
59 };
60
61 #endif // _SCENE_REGISTER_H_