Fix build error.
[platform/core/uifw/dali-adaptor.git] / adaptors / wayland / wayland-window.h
1 #ifndef __DALI_WAYLAND_WINDOW_H__
2 #define __DALI_WAYLAND_WINDOW_H__
3 /*
4  * Copyright (c) 2015 Samsung Electronics Co., Ltd.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  */
19
20
21 // EXTERNAL INCLUDES
22 #include <dali/public-api/math/rect.h>
23 #include <string>
24
25 namespace Dali
26 {
27
28 typedef Dali::Rect<int> PositionSize;
29
30 namespace Wayland
31 {
32
33 /**
34  * @brief Ecapsulates data for a wayland window.
35  */
36 class Window
37 {
38   public:
39
40   /**
41    * @brief constructor
42    */
43   Window();
44
45   /**
46    * @brief destructor. Non-virtual not intended as a base class.
47    */
48   ~Window();
49
50 private:
51
52   // @brief Undefined copy constructor.
53   Window( const Window& );
54
55   // @brief Undefined assignment operator.
56   Window& operator=( const Window& );
57
58 public:
59
60   std::string mTitle;                   ///< Window title
61   PositionSize mPosition;               ///< Position
62   int mSurfaceId;                       ///< wayland surface id
63
64 };
65
66
67 } // namespace Wayland
68
69 } // namespace Dali
70
71 #endif // __DALI_WAYLAND_WINDOW_H__