summaryrefslogtreecommitdiff
path: root/src/gui/widgets
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-01-27 22:04:24 +0300
committerAndrei Karas <akaras@inbox.ru>2013-01-27 22:04:24 +0300
commit295bd10101a7f22f5418bd5ae4e48700ee4a10fd (patch)
treebdfa274f2629b7d84f343db34c12c3bfe28f9b12 /src/gui/widgets
parent9412cd204e95c3c6e38d37a25ac32682f3729a32 (diff)
downloadplus-295bd10101a7f22f5418bd5ae4e48700ee4a10fd.tar.gz
plus-295bd10101a7f22f5418bd5ae4e48700ee4a10fd.tar.bz2
plus-295bd10101a7f22f5418bd5ae4e48700ee4a10fd.tar.xz
plus-295bd10101a7f22f5418bd5ae4e48700ee4a10fd.zip
In char selection dialog add support for selecting character by clicking on image.
Diffstat (limited to 'src/gui/widgets')
-rw-r--r--src/gui/widgets/playerbox.cpp10
-rw-r--r--src/gui/widgets/playerbox.h2
2 files changed, 12 insertions, 0 deletions
diff --git a/src/gui/widgets/playerbox.cpp b/src/gui/widgets/playerbox.cpp
index 1718ef513..e6f5965d1 100644
--- a/src/gui/widgets/playerbox.cpp
+++ b/src/gui/widgets/playerbox.cpp
@@ -133,3 +133,13 @@ void PlayerBox::drawFrame(gcn::Graphics *graphics)
}
BLOCK_END("PlayerBox::drawFrame")
}
+
+void PlayerBox::mouseReleased(gcn::MouseEvent& event)
+{
+ ScrollArea::mouseReleased(event);
+ if (event.getButton() == gcn::MouseEvent::LEFT)
+ {
+ if (!mActionEventId.empty())
+ distributeActionEvent();
+ }
+}
diff --git a/src/gui/widgets/playerbox.h b/src/gui/widgets/playerbox.h
index b35b8175c..8526117a9 100644
--- a/src/gui/widgets/playerbox.h
+++ b/src/gui/widgets/playerbox.h
@@ -80,6 +80,8 @@ class PlayerBox final : public Widget2,
Being *getBeing() A_WARN_UNUSED
{ return mBeing; }
+ void mouseReleased(gcn::MouseEvent& event);
+
private:
Being *mBeing; /**< The character used for display */