From ab8f46356850fe017478891c525e217bc2e0b3eb Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Mon, 9 Jan 2012 20:37:13 +0000 Subject: Added a value attribute to listitems. --- src/ui/listitem.cc | 7 +++---- src/ui/listitem.h | 12 ++++++++++++ 2 files changed, 15 insertions(+), 4 deletions(-) (limited to 'src/ui') diff --git a/src/ui/listitem.cc b/src/ui/listitem.cc index dfe0c0e..a5d033a 100644 --- a/src/ui/listitem.cc +++ b/src/ui/listitem.cc @@ -47,11 +47,10 @@ void ListItem::draw() if (!text().size()) return; - if (has_mouse_focus() || ((static_cast(parent()))->selected() == this)) { - Paint::set_color(palette()->highlight()); - - } else if (disabled()) { + if (disabled()) { Paint::set_color(palette()->disabled()); + } else if (((static_cast(parent()))->selected() == this)) { + Paint::set_color(palette()->highlight()); } else { Paint::set_color(palette()->foreground()); } diff --git a/src/ui/listitem.h b/src/ui/listitem.h index 5795917..a0f4d5e 100644 --- a/src/ui/listitem.h +++ b/src/ui/listitem.h @@ -27,6 +27,7 @@ public: ListItem(ListView *parent, const char * text); ~ListItem(); + // info record associated with this list item inline const core::Info *info() const { return listitem_info; } @@ -35,10 +36,16 @@ public: return listitem_item; } + // sort key for this list item inline const std::string & sortkey() const { return listitem_sortkey; } + // string value associated with this list item + inline const std::string & value() const { + return listitem_value; + } + inline void set_info(const core::Info *info) { listitem_info = info; } @@ -50,6 +57,10 @@ public: inline void set_sortkey(const std::string sortkey) { listitem_sortkey.assign(sortkey); } + + inline void set_value(const std::string value) { + listitem_value.assign(value); + } void select(); @@ -68,6 +79,7 @@ private: const core::Info *listitem_info; const core::Item *listitem_item; std::string listitem_sortkey; + std::string listitem_value; }; } // namespace ui -- cgit v1.2.3