You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
784 B
C++
34 lines
784 B
C++
#ifndef OPENMW_WIDGETS_WINDOWCAPTION_H
|
|
#define OPENMW_WIDGETS_WINDOWCAPTION_H
|
|
|
|
#include <MyGUI_EditBox.h>
|
|
|
|
namespace Gui
|
|
{
|
|
|
|
/// Window caption that automatically adjusts "Left" and "Right" widgets in its skin
|
|
/// based on the text size of the caption in the middle
|
|
class WindowCaption : public MyGUI::EditBox
|
|
{
|
|
MYGUI_RTTI_DERIVED(WindowCaption)
|
|
public:
|
|
WindowCaption();
|
|
|
|
virtual void setCaption(const MyGUI::UString &_value);
|
|
virtual void initialiseOverride();
|
|
|
|
virtual void setSize(const MyGUI::IntSize& _value);
|
|
virtual void setCoord(const MyGUI::IntCoord& _value);
|
|
|
|
private:
|
|
MyGUI::Widget* mLeft;
|
|
MyGUI::Widget* mRight;
|
|
MyGUI::Widget* mClient;
|
|
|
|
void align();
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|