From 1f66ae673801e76f3574944628a7980b9bfbabda Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 17 Jun 2012 20:30:52 +0300 Subject: Fix npc menu selection by mouse. --- src/gui/widgets/listbox.cpp | 11 ++++++++++- src/gui/widgets/listbox.h | 6 ++++++ 2 files changed, 16 insertions(+), 1 deletion(-) (limited to 'src/gui/widgets') diff --git a/src/gui/widgets/listbox.cpp b/src/gui/widgets/listbox.cpp index 267f2c8cc..949efe05d 100644 --- a/src/gui/widgets/listbox.cpp +++ b/src/gui/widgets/listbox.cpp @@ -42,7 +42,8 @@ float ListBox::mAlpha = 1.0; ListBox::ListBox(gcn::ListModel *listModel): - gcn::ListBox(listModel) + gcn::ListBox(listModel), + mDistributeMousePressed(true) { mHighlightColor = Theme::getThemeColor(Theme::HIGHLIGHT); setForegroundColor(Theme::getThemeColor(Theme::TEXT)); @@ -142,6 +143,14 @@ void ListBox::mouseWheelMovedDown(gcn::MouseEvent &mouseEvent A_UNUSED) { } +void ListBox::mousePressed(gcn::MouseEvent &event) +{ + if (mDistributeMousePressed) + distributeActionEvent(); + else + mouseDragged(event); +} + void ListBox::mouseDragged(gcn::MouseEvent &event) { if (event.getButton() != gcn::MouseEvent::LEFT || getRowHeight() == 0) diff --git a/src/gui/widgets/listbox.h b/src/gui/widgets/listbox.h index 1df07f19d..b02357752 100644 --- a/src/gui/widgets/listbox.h +++ b/src/gui/widgets/listbox.h @@ -64,12 +64,18 @@ class ListBox : public gcn::ListBox void mouseWheelMovedDown(gcn::MouseEvent& mouseEvent); + void mousePressed(gcn::MouseEvent &event); + void mouseDragged(gcn::MouseEvent &event); void refocus(); + void setDistributeMousePressed(bool b) + { mDistributeMousePressed = b; } + protected: gcn::Color mHighlightColor; + bool mDistributeMousePressed; static float mAlpha; }; -- cgit v1.2.3-60-g2f50