124906ba6c3a82c218f9a6bd3cc8604a6e8e0524
[platform/core/uifw/dali-extension.git] / dali-extension / internal / evas-plugin / evas-plugin-visibility-interface.h
1 #ifndef __DALI_EXTENSION_INTERNAL_EVAS_PLUGIN_VISIBILITY_INTERFACE__
2 #define __DALI_EXTENSION_INTERNAL_EVAS_PLUGIN_VISIBILITY_INTERFACE__
3
4 /*
5  * Copyright (c) 2019 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 Extension
25 {
26
27 namespace Internal
28 {
29
30 class EvasPluginVisibilityInterface
31 {
32 public:
33   /**
34    * @brief Process the ecore wayland visibility.
35    *
36    * @param[in] visibility True is that ecore wayland window is show up and false is not
37    */
38   virtual void OnEcoreWlVisibility(bool visibility) = 0;
39 };
40
41 }  // namespace Internal
42
43 }  // namespace Extension
44
45 }  // namespace Dali
46 #endif