2011-08-28 15:17:58 +02:00
|
|
|
/*
|
2013-01-08 19:21:54 +01:00
|
|
|
* Copyright (c) 2010-2013 OTClient <https://github.com/edubart/otclient>
|
2011-08-28 15:17:58 +02:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
#ifndef UIMANAGER_H
|
|
|
|
#define UIMANAGER_H
|
|
|
|
|
2011-08-15 16:06:15 +02:00
|
|
|
#include "declarations.h"
|
2012-07-29 05:34:40 +02:00
|
|
|
#include "uiwidget.h"
|
2011-12-03 22:41:37 +01:00
|
|
|
#include <framework/core/inputevent.h>
|
2011-08-15 16:06:15 +02:00
|
|
|
#include <framework/otml/declarations.h>
|
2011-08-14 04:09:11 +02:00
|
|
|
|
2012-06-22 05:14:13 +02:00
|
|
|
//@bindsingleton g_ui
|
2011-08-14 04:09:11 +02:00
|
|
|
class UIManager
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void init();
|
|
|
|
void terminate();
|
|
|
|
|
2012-06-08 18:58:08 +02:00
|
|
|
void render(Fw::DrawPane drawPane);
|
2011-08-14 04:09:11 +02:00
|
|
|
void resize(const Size& size);
|
2011-12-03 22:41:37 +01:00
|
|
|
void inputEvent(const InputEvent& event);
|
2011-08-14 04:09:11 +02:00
|
|
|
|
2013-01-16 18:41:12 +01:00
|
|
|
void updatePressedWidget(const UIWidgetPtr& newPressedWidget, const Point& clickedPos = Point(), bool fireClicks = true);
|
2012-03-23 23:48:18 +01:00
|
|
|
bool updateDraggingWidget(const UIWidgetPtr& draggingWidget, const Point& clickedPos = Point());
|
2012-07-31 11:34:45 +02:00
|
|
|
void updateHoveredWidget(bool now = false);
|
2012-02-07 20:21:53 +01:00
|
|
|
|
2012-06-15 02:30:46 +02:00
|
|
|
void clearStyles();
|
2013-01-08 21:01:47 +01:00
|
|
|
bool importStyle(std::string file);
|
2011-08-14 04:09:11 +02:00
|
|
|
void importStyleFromOTML(const OTMLNodePtr& styleNode);
|
|
|
|
OTMLNodePtr getStyle(const std::string& styleName);
|
2012-01-03 01:42:53 +01:00
|
|
|
std::string getStyleClass(const std::string& styleName);
|
2011-08-14 04:09:11 +02:00
|
|
|
|
2013-01-08 21:01:47 +01:00
|
|
|
UIWidgetPtr loadUI(std::string file, const UIWidgetPtr& parent);
|
2012-06-26 00:13:30 +02:00
|
|
|
UIWidgetPtr displayUI(const std::string& file) { return loadUI(file, m_rootWidget); }
|
|
|
|
UIWidgetPtr createWidget(const std::string& styleName, const UIWidgetPtr& parent);
|
2012-03-24 16:22:40 +01:00
|
|
|
UIWidgetPtr createWidgetFromOTML(const OTMLNodePtr& widgetNode, const UIWidgetPtr& parent);
|
2011-08-14 04:09:11 +02:00
|
|
|
|
2012-01-02 23:09:49 +01:00
|
|
|
void setMouseReceiver(const UIWidgetPtr& widget) { m_mouseReceiver = widget; }
|
|
|
|
void setKeyboardReceiver(const UIWidgetPtr& widget) { m_keyboardReceiver = widget; }
|
2012-01-09 19:45:28 +01:00
|
|
|
void setDebugBoxesDrawing(bool enabled) { m_drawDebugBoxes = enabled; }
|
2012-01-02 23:09:49 +01:00
|
|
|
void resetMouseReceiver() { m_mouseReceiver = m_rootWidget; }
|
|
|
|
void resetKeyboardReceiver() { m_keyboardReceiver = m_rootWidget; }
|
|
|
|
UIWidgetPtr getMouseReceiver() { return m_mouseReceiver; }
|
|
|
|
UIWidgetPtr getKeyboardReceiver() { return m_keyboardReceiver; }
|
2012-01-20 02:16:10 +01:00
|
|
|
UIWidgetPtr getDraggingWidget() { return m_draggingWidget; }
|
2012-02-07 20:21:53 +01:00
|
|
|
UIWidgetPtr getHoveredWidget() { return m_hoveredWidget; }
|
|
|
|
UIWidgetPtr getPressedWidget() { return m_pressedWidget; }
|
2011-08-14 04:09:11 +02:00
|
|
|
UIWidgetPtr getRootWidget() { return m_rootWidget; }
|
2013-01-30 21:23:26 +01:00
|
|
|
bool isMouseGrabbed() { return m_mouseReceiver != m_rootWidget; }
|
|
|
|
bool isKeyboardGrabbed() { return m_keyboardReceiver != m_rootWidget; }
|
2011-08-14 04:09:11 +02:00
|
|
|
|
2012-01-09 19:45:28 +01:00
|
|
|
bool isDrawingDebugBoxes() { return m_drawDebugBoxes; }
|
2012-01-05 02:28:29 +01:00
|
|
|
|
2012-02-07 20:21:53 +01:00
|
|
|
protected:
|
|
|
|
void onWidgetAppear(const UIWidgetPtr& widget);
|
|
|
|
void onWidgetDisappear(const UIWidgetPtr& widget);
|
|
|
|
void onWidgetDestroy(const UIWidgetPtr& widget);
|
|
|
|
|
|
|
|
friend class UIWidget;
|
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
private:
|
|
|
|
UIWidgetPtr m_rootWidget;
|
2012-01-02 23:09:49 +01:00
|
|
|
UIWidgetPtr m_mouseReceiver;
|
|
|
|
UIWidgetPtr m_keyboardReceiver;
|
2012-01-20 02:16:10 +01:00
|
|
|
UIWidgetPtr m_draggingWidget;
|
2012-02-07 20:21:53 +01:00
|
|
|
UIWidgetPtr m_hoveredWidget;
|
|
|
|
UIWidgetPtr m_pressedWidget;
|
2012-07-31 02:47:21 +02:00
|
|
|
stdext::boolean<false> m_hoverUpdateScheduled;
|
|
|
|
stdext::boolean<false> m_drawDebugBoxes;
|
2012-05-01 04:00:07 +02:00
|
|
|
std::unordered_map<std::string, OTMLNodePtr> m_styles;
|
2012-06-18 10:13:52 +02:00
|
|
|
UIWidgetList m_destroyedWidgets;
|
|
|
|
ScheduledEventPtr m_checkEvent;
|
2012-07-30 14:29:13 +02:00
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
extern UIManager g_ui;
|
|
|
|
|
|
|
|
#endif
|