[WRTjs] Refactor popup
[platform/framework/web/chromium-efl.git] / wrt / src / browser / splash_screen.h
1 /*
2  * Copyright (c) 2015 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 #ifndef BROWSER_SPLASH_SCREEN_H_
18 #define BROWSER_SPLASH_SCREEN_H_
19
20 #include "electron/shell/browser/native_window_observer.h"
21 #include "wrt/src/common/application_data.h"
22
23 namespace wrt {
24
25 enum HideReason {
26   RENDERED,
27   LOADFINISHED,
28   CUSTOM,
29   VIDEOFINISHED,
30   UNDECIDED,
31 };
32
33 class SplashScreen : public electron::NativeWindowObserver {
34  public:
35   static bool ShowSplashScreen();
36   static bool HideSplashScreen(HideReason reason);
37   static bool IsShowing();
38   static HideReason GetHiddenReason();
39
40   virtual ~SplashScreen();
41
42  protected:
43   SplashScreen();
44
45   virtual void Init() = 0;
46   virtual void BeforeHide() = 0;
47   virtual void Hide() = 0;
48   virtual wgt::parse::ReadyWhen GetReadyWhen() = 0;
49
50   // electron::NativeWindowObserver
51   void OnWindowShow() override;
52 };
53
54 }  // namespace wrt
55
56 #endif  // BROWSER_SPLASH_SCREEN_H_