2015-07-08 11:39:24 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 Jared Boone, ShareBrained Technology, Inc.
|
2016-07-29 23:27:28 -04:00
|
|
|
* Copyright (C) 2016 Furrtek
|
2015-07-08 11:39:24 -04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ui_menu.hpp"
|
2017-01-15 22:45:44 -05:00
|
|
|
#include "rtc_time.hpp"
|
2015-07-08 11:39:24 -04:00
|
|
|
|
|
|
|
namespace ui {
|
|
|
|
|
2016-07-29 23:27:28 -04:00
|
|
|
/* MenuItemView **********************************************************/
|
2015-07-08 11:39:24 -04:00
|
|
|
|
|
|
|
void MenuItemView::select() {
|
|
|
|
if( item.on_select ) {
|
|
|
|
item.on_select();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MenuItemView::highlight() {
|
2016-02-07 13:32:38 -05:00
|
|
|
set_highlighted(true);
|
|
|
|
set_dirty();
|
2015-07-08 11:39:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void MenuItemView::unhighlight() {
|
2016-02-07 13:32:38 -05:00
|
|
|
set_highlighted(false);
|
|
|
|
set_dirty();
|
2015-07-08 11:39:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void MenuItemView::paint(Painter& painter) {
|
2017-01-30 08:10:30 -05:00
|
|
|
Coord offset_x;
|
|
|
|
|
2015-07-08 11:39:24 -04:00
|
|
|
const auto r = screen_rect();
|
|
|
|
|
2016-12-25 19:31:38 -05:00
|
|
|
const auto paint_style = (highlighted() && (parent()->has_focus() || keep_highlight_)) ? style().invert() : style();
|
2015-07-08 11:39:24 -04:00
|
|
|
|
|
|
|
const auto font_height = paint_style.font.line_height();
|
2016-12-09 12:21:47 -05:00
|
|
|
|
|
|
|
ui::Color final_item_color = (highlighted() && parent()->has_focus()) ? paint_style.foreground : item.color;
|
|
|
|
ui::Color final_bg_color = (highlighted() && parent()->has_focus()) ? item.color : paint_style.background;
|
|
|
|
|
|
|
|
if (final_item_color.v == final_bg_color.v) final_item_color = paint_style.foreground;
|
2015-07-08 11:39:24 -04:00
|
|
|
|
|
|
|
painter.fill_rectangle(
|
|
|
|
r,
|
2016-12-09 12:21:47 -05:00
|
|
|
final_bg_color
|
2015-07-08 11:39:24 -04:00
|
|
|
);
|
2016-12-26 14:33:38 -05:00
|
|
|
|
|
|
|
if (item.bitmap) {
|
|
|
|
painter.draw_bitmap(
|
2017-01-15 22:45:44 -05:00
|
|
|
{ r.location().x() + 4, r.location().y() + 4 },
|
2016-12-26 14:33:38 -05:00
|
|
|
*item.bitmap,
|
|
|
|
final_item_color,
|
|
|
|
final_bg_color
|
|
|
|
);
|
2017-01-30 08:10:30 -05:00
|
|
|
offset_x = 26;
|
|
|
|
} else
|
|
|
|
offset_x = 8;
|
2016-04-28 08:59:14 -04:00
|
|
|
|
|
|
|
Style text_style {
|
|
|
|
.font = paint_style.font,
|
2016-12-09 12:21:47 -05:00
|
|
|
.background = final_bg_color,
|
2016-04-28 08:59:14 -04:00
|
|
|
.foreground = final_item_color
|
|
|
|
};
|
2016-04-21 16:12:51 -04:00
|
|
|
|
2015-07-08 11:39:24 -04:00
|
|
|
painter.draw_string(
|
2017-01-30 08:10:30 -05:00
|
|
|
{ r.location().x() + offset_x, r.location().y() + (r.size().height() - font_height) / 2 },
|
2016-04-28 08:59:14 -04:00
|
|
|
text_style,
|
2015-07-08 11:39:24 -04:00
|
|
|
item.text
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* MenuView **************************************************************/
|
|
|
|
|
2016-12-25 19:31:38 -05:00
|
|
|
MenuView::MenuView(
|
|
|
|
bool keep_highlight
|
|
|
|
) : keep_highlight_ { keep_highlight }
|
|
|
|
{
|
2016-07-29 23:27:28 -04:00
|
|
|
set_focusable(true);
|
|
|
|
|
2017-01-15 22:45:44 -05:00
|
|
|
signal_token_tick_second = rtc_time::signal_tick_second += [this]() {
|
2016-07-29 23:27:28 -04:00
|
|
|
this->on_tick_second();
|
|
|
|
};
|
|
|
|
|
2016-12-25 19:31:38 -05:00
|
|
|
add_child(&arrow_more);
|
|
|
|
arrow_more.id = 1; // Special flag
|
2016-07-29 23:27:28 -04:00
|
|
|
arrow_more.set_focusable(false);
|
2016-12-09 12:21:47 -05:00
|
|
|
arrow_more.set_foreground(Color::black());
|
2016-07-29 23:27:28 -04:00
|
|
|
}
|
|
|
|
|
2015-07-08 11:39:24 -04:00
|
|
|
MenuView::~MenuView() {
|
2017-01-15 22:45:44 -05:00
|
|
|
rtc_time::signal_tick_second -= signal_token_tick_second;
|
2015-07-08 11:39:24 -04:00
|
|
|
}
|
|
|
|
|
2016-07-29 23:27:28 -04:00
|
|
|
void MenuView::on_tick_second() {
|
|
|
|
if (more_ && blink_)
|
|
|
|
arrow_more.set_foreground(Color::white());
|
|
|
|
else
|
|
|
|
arrow_more.set_foreground(Color::black());
|
2016-12-25 19:31:38 -05:00
|
|
|
|
2016-07-29 23:27:28 -04:00
|
|
|
blink_ = !blink_;
|
|
|
|
|
|
|
|
arrow_more.set_dirty();
|
|
|
|
}
|
|
|
|
|
2016-12-25 19:31:38 -05:00
|
|
|
void MenuView::clear() {
|
|
|
|
children_.erase(children_.begin() + 1, children_.end());
|
|
|
|
}
|
|
|
|
|
2015-07-08 11:39:24 -04:00
|
|
|
void MenuView::add_item(const MenuItem item) {
|
2016-12-25 19:31:38 -05:00
|
|
|
add_child(new MenuItemView { item, keep_highlight_ });
|
2015-07-08 11:39:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void MenuView::set_parent_rect(const Rect new_parent_rect) {
|
|
|
|
View::set_parent_rect(new_parent_rect);
|
2016-12-25 19:31:38 -05:00
|
|
|
|
2017-01-15 22:45:44 -05:00
|
|
|
displayed_max_ = new_parent_rect.size().height() / 24;
|
2016-12-25 19:31:38 -05:00
|
|
|
arrow_more.set_parent_rect( { 228, (Coord)(displayed_max_ * item_height), 8, 8 } );
|
|
|
|
|
2016-07-29 23:27:28 -04:00
|
|
|
update_items();
|
|
|
|
}
|
2015-07-08 11:39:24 -04:00
|
|
|
|
2016-07-29 23:27:28 -04:00
|
|
|
void MenuView::update_items() {
|
2015-07-08 11:39:24 -04:00
|
|
|
size_t i = 0;
|
2016-12-25 19:31:38 -05:00
|
|
|
int32_t y_pos;
|
2016-07-29 23:27:28 -04:00
|
|
|
|
2016-12-25 19:31:38 -05:00
|
|
|
if ((children_.size() - 1) > displayed_max_ + offset_) {
|
2016-07-29 23:27:28 -04:00
|
|
|
more_ = true;
|
2016-12-25 19:31:38 -05:00
|
|
|
blink_ = true;
|
|
|
|
} else
|
2016-07-29 23:27:28 -04:00
|
|
|
more_ = false;
|
|
|
|
|
|
|
|
for (auto child : children_) {
|
2016-12-25 19:31:38 -05:00
|
|
|
if (!child->id) {
|
|
|
|
y_pos = (i - offset_ - 1) * item_height;
|
2016-07-29 23:27:28 -04:00
|
|
|
child->set_parent_rect({
|
|
|
|
{ 0, y_pos },
|
2017-01-15 22:45:44 -05:00
|
|
|
{ size().width(), (Coord)item_height }
|
2016-07-29 23:27:28 -04:00
|
|
|
});
|
2017-01-15 22:45:44 -05:00
|
|
|
if ((y_pos < 0) || (y_pos > (Coord)(screen_rect().size().height() - item_height)))
|
2016-07-29 23:27:28 -04:00
|
|
|
child->hidden(true);
|
|
|
|
else
|
|
|
|
child->hidden(false);
|
|
|
|
}
|
2015-07-08 11:39:24 -04:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MenuItemView* MenuView::item_view(size_t index) const {
|
|
|
|
/* TODO: Terrible cast! Take it as a sign I must be doing something
|
|
|
|
* shamefully wrong here, right?
|
|
|
|
*/
|
2016-12-25 19:31:38 -05:00
|
|
|
return static_cast<MenuItemView*>(children_[index + 1]);
|
2015-07-08 11:39:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
size_t MenuView::highlighted() const {
|
|
|
|
return highlighted_;
|
|
|
|
}
|
|
|
|
|
2016-12-25 19:31:38 -05:00
|
|
|
bool MenuView::set_highlighted(int32_t new_value) {
|
|
|
|
int32_t item_count = (int32_t)children_.size() - 1;
|
|
|
|
if (new_value < 0)
|
2015-07-08 11:39:24 -04:00
|
|
|
return false;
|
2016-07-29 23:27:28 -04:00
|
|
|
|
2016-12-25 19:31:38 -05:00
|
|
|
if (new_value >= item_count)
|
|
|
|
new_value = item_count - 1;
|
|
|
|
|
|
|
|
if ((new_value > offset_) && ((new_value - offset_ + 1) >= displayed_max_)) {
|
2016-07-29 23:27:28 -04:00
|
|
|
// Shift MenuView up
|
2016-12-25 19:31:38 -05:00
|
|
|
offset_ = new_value - displayed_max_ + 1;
|
2016-07-29 23:27:28 -04:00
|
|
|
update_items();
|
|
|
|
} else if (new_value < offset_) {
|
|
|
|
// Shift MenuView down
|
|
|
|
offset_ = new_value;
|
|
|
|
update_items();
|
|
|
|
}
|
2015-07-08 11:39:24 -04:00
|
|
|
|
|
|
|
item_view(highlighted())->unhighlight();
|
|
|
|
highlighted_ = new_value;
|
|
|
|
item_view(highlighted())->highlight();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MenuView::on_focus() {
|
|
|
|
item_view(highlighted())->highlight();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MenuView::on_blur() {
|
2016-12-25 19:31:38 -05:00
|
|
|
if (!keep_highlight_) item_view(highlighted())->unhighlight();
|
2015-07-08 11:39:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool MenuView::on_key(const KeyEvent key) {
|
|
|
|
switch(key) {
|
|
|
|
case KeyEvent::Up:
|
|
|
|
return set_highlighted(highlighted() - 1);
|
|
|
|
|
|
|
|
case KeyEvent::Down:
|
|
|
|
return set_highlighted(highlighted() + 1);
|
|
|
|
|
|
|
|
case KeyEvent::Select:
|
|
|
|
case KeyEvent::Right:
|
|
|
|
item_view(highlighted())->select();
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case KeyEvent::Left:
|
|
|
|
if( on_left ) {
|
|
|
|
on_left();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MenuView::on_encoder(const EncoderEvent event) {
|
|
|
|
set_highlighted(highlighted() + event);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO: This could be handled by default behavior, if the UI stack were to
|
|
|
|
* transmit consumable events from the top of the hit-stack down, and each
|
|
|
|
* MenuItem could respond to a touch and update its parent MenuView.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
bool MenuView::on_touch(const TouchEvent event) {
|
|
|
|
size_t i = 0;
|
|
|
|
for(const auto child : children_) {
|
|
|
|
if( child->screen_rect().contains(event.point) ) {
|
|
|
|
return set_highlighted(i);
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
} /* namespace ui */
|