blob: 3ff108fe01c29d1ca447ed75bf8f136705a960c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/*
ui/listitem.cc
This file is part of the Osirion project and is distributed under
the terms of the GNU General Public License version 2
*/
#include "audio/audio.h"
#include "core/application.h"
#include "ui/listitem.h"
#include "ui/paint.h"
namespace ui {
ListItem::ListItem(ListView *parent, const char * text) : Label(parent, text) {
set_label("listitem");
listitem_info = 0;
}
ListItem::~ListItem() {
}
void ListItem::draw_border()
{
// FIXME glow if selected, not on_mouseover
if (has_mouse_focus()) {
math::Color color(palette()->foreground());
float t = core::application()->time();
t = t - floorf(t);
if (t > 0.5)
t = 1 - t;
color.a = 0.5f + t;
paint::color(color);
paint::border(global_location(), size());
}
}
bool ListItem::on_keypress(const int key, const unsigned int modifier)
{
if (key == 512 + SDL_BUTTON_LEFT) {
audio::play("ui/select");
emit(EventListItemClicked);
return true;
}
return false;
}
} // namespace ui
|