/usr/include/MYGUI/MyGUI_Window.h is in libmygui-dev 3.2.2-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 | /*
* This source file is part of MyGUI. For the latest info, see http://mygui.info/
* Distributed under the MIT License
* (See accompanying file COPYING.MIT or copy at http://opensource.org/licenses/MIT)
*/
#ifndef MYGUI_WINDOW_H_
#define MYGUI_WINDOW_H_
#include "MyGUI_Prerequest.h"
#include "MyGUI_TextBox.h"
#include "MyGUI_EventPair.h"
#include "MyGUI_ControllerFadeAlpha.h"
namespace MyGUI
{
// OBSOLETE
typedef delegates::CMultiDelegate2<Widget*, const std::string&> EventHandle_WidgetString;
typedef delegates::CMultiDelegate2<Window*, const std::string&> EventHandle_WindowPtrCStringRef;
typedef delegates::CMultiDelegate1<Window*> EventHandle_WindowPtr;
/** \brief @wpage{Window}
Window widget description should be here.
*/
class MYGUI_EXPORT Window :
public TextBox, // FIXME пока для кэпшена вместо виджета текст (Bug #190)
public MemberObsolete<Window>
{
MYGUI_RTTI_DERIVED( Window )
public:
Window();
/** @copydoc Widget::setVisible */
virtual void setVisible(bool _value);
/** Hide or show window smooth */
void setVisibleSmooth(bool _value);
/** Hide window smooth and then destroy it */
void destroySmooth();
/** Enable or disable auto alpha mode */
void setAutoAlpha(bool _value);
/** Get auto alpha mode flag */
bool getAutoAlpha() const;
/** Set window caption */
virtual void setCaption(const UString& _value);
/** Get window caption */
virtual const UString& getCaption();
/** Get window caption widget */
TextBox* getCaptionWidget();
/** Set minimal possible window size */
void setMinSize(const IntSize& _value);
/** Set minimal possible window size */
void setMinSize(int _width, int _height);
/** Get minimal possible window size */
IntSize getMinSize();
/** Set maximal possible window size */
void setMaxSize(const IntSize& _value);
/** Set maximal possible window size */
void setMaxSize(int _width, int _height);
/** Get maximal possible window size */
IntSize getMaxSize();
//! @copydoc Widget::setPosition(const IntPoint& _value)
virtual void setPosition(const IntPoint& _value);
//! @copydoc Widget::setSize(const IntSize& _value)
virtual void setSize(const IntSize& _value);
//! @copydoc Widget::setCoord(const IntCoord& _value)
virtual void setCoord(const IntCoord& _value);
/** @copydoc Widget::setPosition(int _left, int _top) */
void setPosition(int _left, int _top);
/** @copydoc Widget::setSize(int _width, int _height) */
void setSize(int _width, int _height);
/** @copydoc Widget::setCoord(int _left, int _top, int _width, int _height) */
void setCoord(int _left, int _top, int _width, int _height);
/** Enable or disable snap to borders mode */
void setSnap(bool _value);
/** Get snap to borders mode flag */
bool getSnap() const;
/** Get current action applied to move/resize window. */
const IntCoord& getActionScale() const;
/** Enable or disable possibility to move window. */
void setMovable(bool _value);
/** Get possibility to move window. */
bool getMovable() const;
/*events:*/
/** Event : Window button pressed.\n
signature : void method(MyGUI::Window* _sender, const std::string& _name)
@param _sender widget that called this event
@param _name of pressed button
*/
EventPair<EventHandle_WidgetString, EventHandle_WindowPtrCStringRef> eventWindowButtonPressed;
/** Event : Window coordinate changed (window was resized or moved).\n
signature : void method(MyGUI::Window* _sender)
@param _sender widget that called this event
*/
EventPair<EventHandle_WidgetVoid, EventHandle_WindowPtr> eventWindowChangeCoord;
protected:
virtual void initialiseOverride();
virtual void shutdownOverride();
void onMouseChangeRootFocus(bool _focus);
void onKeyChangeRootFocus(bool _focus);
void onMouseDrag(int _left, int _top, MouseButton _id);
void onMouseButtonPressed(int _left, int _top, MouseButton _id);
void onMouseButtonReleased(int _left, int _top, MouseButton _id);
void notifyMousePressed(MyGUI::Widget* _sender, int _left, int _top, MouseButton _id);
void notifyMouseReleased(MyGUI::Widget* _sender, int _left, int _top, MouseButton _id);
void notifyPressedButtonEvent(MyGUI::Widget* _sender);
void notifyMouseDrag(MyGUI::Widget* _sender, int _left, int _top, MouseButton _id);
void notifyMouseWheel(MyGUI::Widget* _sender, int _rel);
// просто обновляет альфу взависимости от флагов
void updateAlpha();
void animateStop(Widget* _widget, ControllerItem* _controller);
virtual void setPropertyOverride(const std::string& _key, const std::string& _value);
private:
float getAlphaVisible() const;
void getSnappedCoord(IntCoord& _coord);
IntCoord _getActionScale(Widget* _widget);
ControllerFadeAlpha* createControllerFadeAlpha(float _alpha, float _coef, bool _enable);
private:
TextBox* mWidgetCaption;
// размеры окна перед началом его изменений
IntCoord mPreActionCoord;
// наши главные фокусы
bool mMouseRootFocus;
bool mKeyRootFocus;
// автоматическое или ручное управление альфой
bool mIsAutoAlpha;
// минимальные и максимальные размеры окна
IntRect mMinmax;
bool mSnap; // прилеплять ли к краям
IntCoord mCurrentActionScale;
bool mAnimateSmooth;
Widget* mClient;
bool mMovable;
};
} // namespace MyGUI
#endif // MYGUI_WINDOW_H_
|