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.
42 lines
1.1 KiB
C++
42 lines
1.1 KiB
C++
#include "windowpinnablebase.hpp"
|
|
|
|
#include "exposedwindow.hpp"
|
|
|
|
namespace MWGui
|
|
{
|
|
WindowPinnableBase::WindowPinnableBase(const std::string& parLayout)
|
|
: WindowBase(parLayout), mPinned(false)
|
|
{
|
|
Window* window = mMainWidget->castType<Window>();
|
|
mPinButton = window->getSkinWidget ("Button");
|
|
|
|
mPinButton->eventMouseButtonPressed += MyGUI::newDelegate(this, &WindowPinnableBase::onPinButtonPressed);
|
|
}
|
|
|
|
void WindowPinnableBase::onPinButtonPressed(MyGUI::Widget* _sender, int left, int top, MyGUI::MouseButton id)
|
|
{
|
|
if (id != MyGUI::MouseButton::Left)
|
|
return;
|
|
|
|
mPinned = !mPinned;
|
|
|
|
if (mPinned)
|
|
mPinButton->changeWidgetSkin ("PinDown");
|
|
else
|
|
mPinButton->changeWidgetSkin ("PinUp");
|
|
|
|
onPinToggled();
|
|
}
|
|
|
|
void WindowPinnableBase::setPinned(bool pinned)
|
|
{
|
|
if (pinned != mPinned)
|
|
onPinButtonPressed(mPinButton, 0, 0, MyGUI::MouseButton::Left);
|
|
}
|
|
|
|
void WindowPinnableBase::setPinButtonVisible(bool visible)
|
|
{
|
|
mPinButton->setVisible(visible);
|
|
}
|
|
}
|