Merge "Add GetBrightness()" into devel/master
[platform/core/uifw/dali-adaptor.git] / dali / internal / window-system / 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) 2021 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 namespace Internal
24 {
25 namespace Adaptor
26 {
27 /**
28  * An interface used to observe when the application's window is shown/hidden.
29  */
30 class WindowVisibilityObserver
31 {
32 public:
33   /**
34    * Called when the window becomes fully or partially visible.
35    */
36   virtual void OnWindowShown() = 0;
37
38   /**
39    * Called when the window is fully hidden.
40    */
41   virtual void OnWindowHidden() = 0;
42
43 protected:
44   /**
45    * Protected Constructor.
46    */
47   WindowVisibilityObserver()
48   {
49   }
50
51   /**
52    * Protected virtual destructor.
53    */
54   virtual ~WindowVisibilityObserver()
55   {
56   }
57 };
58
59 } // namespace Adaptor
60
61 } // namespace Internal
62
63 } // namespace Dali
64
65 #endif // DALI_INTERNAL_WINDOW_VISIBILITY_OBSERVER_H