/* * Copyright (C) 2014 Jared Boone, ShareBrained Technology, Inc. * * This file is part of PortaPack. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, * Boston, MA 02110-1301, USA. */ #ifndef __RECENT_ENTRIES_H__ #define __RECENT_ENTRIES_H__ #include "ui_widget.hpp" #include "ui_font_fixed_8x16.hpp" #include #include #include #include #include #include #include template class RecentEntries : public std::list { public: using EntryType = Entry; using Key = typename EntryType::Key; using ContainerType = std::list; using const_reference = typename ContainerType::const_reference; using const_iterator = typename ContainerType::const_iterator; EntryType& on_packet(const Key key) { auto matching_recent = find(key); if( matching_recent != std::end(*this) ) { // Found within. Move to front of list, increment counter. this->push_front(*matching_recent); this->erase(matching_recent); } else { this->emplace_front(key); truncate_entries(); } return this->front(); } const_iterator find(const Key key) const { return std::find_if( std::begin(*this), std::end(*this), [key](const EntryType& e) { return e.key() == key; } ); } private: const size_t entries_max = 64; void truncate_entries() { while(this->size() > entries_max) { this->pop_back(); } } }; template static std::pair range_around( const ContainerType& entries, typename ContainerType::const_iterator item, const size_t count ) { auto start = item; auto end = item; size_t i = 0; // Move start iterator toward first entry. while( (start != std::begin(entries)) && (i < count / 2) ) { std::advance(start, -1); i++; } // Move end iterator toward last entry. while( (end != std::end(entries)) && (i < count) ) { std::advance(end, 1); i++; } return { start, end }; } namespace ui { using RecentEntriesColumn = std::pair; template class RecentEntriesView : public View { public: using Entry = typename Entries::EntryType; std::function on_select; RecentEntriesView( Entries& recent ) : recent { recent } { set_focusable(true); } template void set_columns( const std::array& columns ) { _columns.clear(); for(const auto& column : columns) { _columns.emplace_back(column); } } void paint(Painter& painter) override { const auto r = screen_rect(); const auto& s = style(); Rect target_rect { r.pos, { r.width(), s.font.line_height() }}; const size_t visible_item_count = r.height() / s.font.line_height(); const Style style_header { .font = font::fixed_8x16, .background = Color::blue(), .foreground = Color::white(), }; draw_header(target_rect, painter, style_header); target_rect.pos.y += target_rect.height(); auto selected = recent.find(selected_key); if( selected == std::end(recent) ) { selected = std::begin(recent); } auto range = range_around(recent, selected, visible_item_count); for(auto p = range.first; p != range.second; p++) { const auto& entry = *p; const auto is_selected_key = (selected_key == entry.key()); const auto item_style = (has_focus() && is_selected_key) ? s.invert() : s; draw(entry, target_rect, painter, item_style); target_rect.pos.y += target_rect.height(); } painter.fill_rectangle( { target_rect.left(), target_rect.top(), target_rect.width(), r.bottom() - target_rect.top() }, style().background ); } bool on_encoder(const EncoderEvent event) override { advance(event); return true; } bool on_key(const ui::KeyEvent event) override { if( event == ui::KeyEvent::Select ) { if( on_select ) { const auto selected = recent.find(selected_key); if( selected != std::end(recent) ) { on_select(*selected); return true; } } } return false; } void on_focus() override { advance(0); } private: Entries& recent; std::vector> _columns; using EntryKey = typename Entry::Key; EntryKey selected_key = Entry::invalid_key; void advance(const int32_t amount) { auto selected = recent.find(selected_key); if( selected == std::end(recent) ) { if( recent.empty() ) { selected_key = Entry::invalid_key; } else { selected_key = recent.front().key(); } } else { if( amount < 0 ) { if( selected != std::begin(recent) ) { std::advance(selected, -1); } } if( amount > 0 ) { std::advance(selected, 1); if( selected == std::end(recent) ) { return; } } selected_key = selected->key(); } set_dirty(); } void draw_header( const Rect& target_rect, Painter& painter, const Style& style ) { auto x = 0; for(const auto& column : _columns) { const auto width = column.second; auto text = column.first; if( width > text.length() ) { text.append(width - text.length(), ' '); } painter.draw_string({ x, target_rect.pos.y }, style, text); x += (width * 8) + 8; } } void draw( const Entry& entry, const Rect& target_rect, Painter& painter, const Style& style ); }; } /* namespace ui */ #endif/*__RECENT_ENTRIES_H__*/