summaryrefslogtreecommitdiff
path: root/src/search/SearchView.cpp
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2012-04-03 17:12:32 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-04-03 17:12:32 (GMT)
commit299c1da9ae6b79ddb6cc39477ad31fb1d2a3c566 (patch)
treea867e45707c6d819761782c90af00b0f6093cbcc /src/search/SearchView.cpp
parent838a612026c821c03e663c818d4bc9fe740febd8 (diff)
downloadpowder-299c1da9ae6b79ddb6cc39477ad31fb1d2a3c566.zip
powder-299c1da9ae6b79ddb6cc39477ad31fb1d2a3c566.tar.gz
Search and stamps scolling with mouse wheel, Esc to exit
Diffstat (limited to 'src/search/SearchView.cpp')
-rw-r--r--src/search/SearchView.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/search/SearchView.cpp b/src/search/SearchView.cpp
index 5bcbe06..4b9b6b2 100644
--- a/src/search/SearchView.cpp
+++ b/src/search/SearchView.cpp
@@ -241,3 +241,19 @@ void SearchView::OnTick(float dt)
{
c->Update();
}
+
+void SearchView::OnMouseWheel(int x, int y, int d)
+{
+ if(!d)
+ return;
+ if(d<0)
+ c->NextPage();
+ else
+ c->PrevPage();
+}
+void SearchView::OnKeyPress(int key, Uint16 character, bool shift, bool ctrl, bool alt)
+{
+ if(key==KEY_ESCAPE)
+ c->Exit();
+}
+