9a4d548fc17524b7c5ed7ac9f992d5855f532b8d
[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 <dpl/optional.h>
26 #include <dpl/optional_typedefs.h>
27 #include <Evas.h>
28 #include <memory>
29
30
31 class SplashScreenSupport
32 {
33   public:
34     SplashScreenSupport(Evas_Object* parent);
35     ~SplashScreenSupport();
36
37     bool createSplashScreen(const DPL::OptionalString imagePath);
38     void startSplashScreen();
39     void stopSplashScreen();
40   private:
41     void setSplashImagePath(const char * image_path);
42
43     Evas_Object* m_splashScreen;
44 };
45
46 typedef std::shared_ptr<SplashScreenSupport> SplashScreenSupportPtr;
47
48 #endif /* WRT_SPLASH_SCREEN_SUPPORT_H */