From fed29d9ddc3b8372b9c3fe8bffe221a5a55e5ce9 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Tue, 5 Oct 2010 14:38:14 +0000 Subject: updated inventory window, listview seletion sounds, modelview zoom factor --- src/ui/listitem.cc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/ui/listitem.cc') diff --git a/src/ui/listitem.cc b/src/ui/listitem.cc index ff9ad18..8702757 100644 --- a/src/ui/listitem.cc +++ b/src/ui/listitem.cc @@ -51,10 +51,16 @@ void ListItem::draw() Paint::draw_label(global_location(), size(), font(), text(), alignment()); } +void ListItem::on_mouseover(const math::Vector2f &cursor) +{ + if (enabled()) + audio::play("ui/select"); +} + bool ListItem::on_keypress(const int key, const unsigned int modifier) { if (key == 512 + SDL_BUTTON_LEFT) { - audio::play("ui/select"); + audio::play("ui/button"); emit(EventListItemClicked); -- cgit v1.2.3