1 #ifndef __DALI_WINDOW_H__
2 #define __DALI_WINDOW_H__
5 * Copyright (c) 2015 Samsung Electronics Co., Ltd.
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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.
23 #include <dali/public-api/math/rect.h>
24 #include <dali/public-api/math/vector2.h>
25 #include <dali/public-api/object/base-handle.h>
26 #include <dali/public-api/object/any.h>
27 #include <dali/public-api/signals/dali-signal.h>
32 * @addtogroup dali_adaptor_framework
36 typedef Dali::Rect<int> PositionSize;
38 namespace Internal DALI_INTERNAL
46 class DragAndDropDetector;
50 * @brief The window class is used internally for drawing.
52 * It has an orientation
53 * and indicator properties.
56 class DALI_IMPORT_API Window : public BaseHandle
59 typedef Signal< void (bool) > IndicatorSignalType;
66 * @brief Orientation of the window.
69 enum WindowOrientation
73 PORTRAIT_INVERSE = 180,
74 LANDSCAPE_INVERSE = 270
78 * @brief Opacity of the indicator.
81 enum IndicatorBgOpacity
83 OPAQUE = 100, // Fully opaque indicator Bg
84 TRANSLUCENT = 50, // Semi translucent indicator Bg
85 TRANSPARENT = 0 // Fully transparent indicator Bg
89 * @brief Visible mode of the indicator.
92 enum IndicatorVisibleMode
94 INVISIBLE = 0, // hide indicator
95 VISIBLE = 1, // show indicator
96 AUTO = 2 // hide in default, will show when necessary
102 * @brief Create an initialized handle to a new Window.
104 * @param[in] windowPosition The position and size of the window
105 * @param[in] name The window title
106 * @param[in] isTransparent Whether window is transparent
107 * @return a new window
109 static Window New(PositionSize windowPosition, const std::string& name, bool isTransparent = false);
112 * @brief Create an initialized handle to a new Window.
114 * @param[in] windowPosition The position and size of the window
115 * @param[in] name The window title
116 * @param[in] className The window class name
117 * @param[in] isTransparent Whether window is transparent
118 * @return a new window
120 static Window New(PositionSize windowPosition, const std::string& name, const std::string& className, bool isTransparent = false);
123 * @brief Create an uninitalized handle.
125 * This can be initialized using Dali::Application::GetWindow() or
126 * Dali::Window::New()
134 * This is non-virtual since derived Handle types must not contain data or virtual methods.
140 * @brief This copy constructor is required for (smart) pointer semantics.
143 * @param [in] handle A reference to the copied handle
145 Window(const Window& handle);
148 * @brief This assignment operator is required for (smart) pointer semantics.
151 * @param [in] rhs A reference to the copied handle
152 * @return A reference to this
154 Window& operator=(const Window& rhs);
157 * @brief This sets whether the indicator bar should be shown or not.
159 * @param[in] visibleMode visible mode for indicator bar, VISIBLE in default
161 void ShowIndicator( IndicatorVisibleMode visibleMode );
164 * @brief This sets the opacity mode of indicator bar.
166 * @param[in] opacity - The opacity mode
168 void SetIndicatorBgOpacity( IndicatorBgOpacity opacity );
171 * @brief This sets the orientation of indicator bar.
173 * It does not implicitly show the indicator if it is currently
176 * @param[in] orientation The orientation
178 void RotateIndicator(WindowOrientation orientation);
181 * @brief Set the window name and class string.
183 * @param[in] name The name of the window
184 * @param[in] klass The class of the window
186 void SetClass(std::string name, std::string klass);
189 * @brief Raise window to top of window stack.
195 * @brief Lower window to bottom of window stack.
201 * @brief Activate window to top of window stack even it is iconified.
207 * @brief Add an orientation to the list of available orientations.
210 void AddAvailableOrientation( WindowOrientation orientation );
213 * @brief Remove an orientation from the list of available orientations.
216 void RemoveAvailableOrientation( WindowOrientation orientation );
219 * @brief Set a preferred orientation.
221 * @param[in] orientation The preferred orientation
222 * @pre orientation is in the list of available orientations
224 void SetPreferredOrientation( WindowOrientation orientation );
227 * @brief Get the preferred orientation.
229 * @return The preferred orientation if previously set, or none.
231 WindowOrientation GetPreferredOrientation();
234 * @brief Returns the Drag & drop detector which can be used to receive drag & drop events.
236 * @return A handle to the DragAndDropDetector.
238 DragAndDropDetector GetDragAndDropDetector() const;
241 * @brief Get the native handle of the window.
243 * @return The native handle of the window or an empty handle.
245 Any GetNativeHandle() const;
249 * @brief The user should connect to this signal to get a timing when indicator was shown / hidden.
252 IndicatorSignalType& IndicatorVisibilityChangedSignal();
254 public: // Not intended for application developers
256 * @brief This constructor is used by Dali::Application::GetWindow().
258 * @param[in] window A pointer to the window.
260 explicit DALI_INTERNAL Window( Internal::Adaptor::Window* window );
268 #endif // __DALI_WINDOW_H__