0c8a9c8a1a6195313b8138fec99cc5e1dd4ec16b
[platform/core/uifw/dali-adaptor.git] / adaptors / common / window-visibility-observer.h
1 #ifndef __DALI_INTERNAL_WINDOW_VISIBILITY_OBSERVER_H__
2 #define __DALI_INTERNAL_WINDOW_VISIBILITY_OBSERVER_H__
3
4 /*
5  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 namespace Dali
22 {
23
24 namespace Internal
25 {
26
27 namespace Adaptor
28 {
29
30 /**
31  * An interface used to observe when the application's window is shown/hidden.
32  */
33 class WindowVisibilityObserver
34 {
35 public:
36
37   /**
38    * Called when the window becomes fully or partially visible.
39    */
40   virtual void OnWindowShown() = 0;
41
42   /**
43    * Called when the window is fully hidden.
44    */
45   virtual void OnWindowHidden() = 0;
46
47 protected:
48
49   /**
50    * Protected Constructor.
51    */
52   WindowVisibilityObserver()
53   {
54   }
55
56   /**
57    * Protected virtual destructor.
58    */
59   virtual ~WindowVisibilityObserver()
60   {
61   }
62 };
63
64 } // namespace Adaptor
65
66 } // namespace Internal
67
68 } // namespace Dali
69
70 #endif // __DALI_INTERNAL_WINDOW_VISIBILITY_OBSERVER_H__