[Release] wrt_0.8.235
[platform/framework/web/wrt.git] / src / wrt-client / splash_screen_support.h
1 /*
2  * Copyright (c) 2012 Samsung Electronics Co., Ltd All Rights Reserved
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  * @file        splash_screen_support.h
18  * @author      Andrzej Surdej (a.surdej@samsung.com)
19  * @brief       Header file for supporting splash screen handling
20  */
21
22 #ifndef WRT_SPLASH_SCREEN_SUPPORT_H
23 #define WRT_SPLASH_SCREEN_SUPPORT_H
24
25 #include <Evas.h>
26 #include <Elementary.h>
27
28 class SplashScreenSupport
29 {
30   public:
31     SplashScreenSupport(Evas_Object* parent, const char* image_path, bool indicator = true, bool landscape = false);
32     ~SplashScreenSupport();
33
34     void startSplashScreen();
35     void stopSplashScreen();
36     void stopSplashScreenBuffered();
37     bool isShowing();
38     void resizeSplashScreen();
39     static Eina_Bool timerCallback(void *data);
40
41   private:
42     Evas_Object* m_parent;
43     Evas_Object* m_splashScreen;
44     Evas_Object* m_splashScreenBg;
45     Ecore_Timer* m_timer;
46
47     int m_deviceWidth;
48     int m_deviceHeight;
49     int m_imageWidth;
50     int m_imageHeight;
51
52     bool m_initialized;
53     bool m_isShowing;
54     bool m_indicator;
55 };
56
57 #endif /* WRT_SPLASH_SCREEN_SUPPORT_H */