2015-07-08 11:39:24 -04:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ui_painter.hpp"
|
|
|
|
|
2015-08-15 00:27:46 -04:00
|
|
|
#include "ui_widget.hpp"
|
|
|
|
|
2015-08-01 17:31:51 -04:00
|
|
|
#include "portapack.hpp"
|
|
|
|
using namespace portapack;
|
|
|
|
|
2015-07-08 11:39:24 -04:00
|
|
|
namespace ui {
|
|
|
|
|
|
|
|
Style Style::invert() const {
|
|
|
|
return {
|
|
|
|
.font = font,
|
|
|
|
.background = foreground,
|
2016-05-29 06:06:47 -04:00
|
|
|
.foreground = background
|
2015-07-08 11:39:24 -04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-01-23 20:53:16 -05:00
|
|
|
int Painter::draw_char(const Point p, const Style& style, const char c) {
|
2015-07-08 11:39:24 -04:00
|
|
|
const auto glyph = style.font.glyph(c);
|
2015-08-01 17:31:51 -04:00
|
|
|
display.draw_glyph(p, glyph, style.foreground, style.background);
|
2016-11-28 13:39:10 -05:00
|
|
|
return glyph.advance().x();
|
2015-07-08 11:39:24 -04:00
|
|
|
}
|
|
|
|
|
2017-02-12 02:23:31 -05:00
|
|
|
int Painter::draw_string(Point p, const Font& font, const Color foreground,
|
|
|
|
const Color background, const std::string text) {
|
|
|
|
|
2017-08-17 07:56:47 -04:00
|
|
|
bool escape = false;
|
2015-07-08 11:39:24 -04:00
|
|
|
size_t width = 0;
|
2017-08-17 07:56:47 -04:00
|
|
|
Color pen = foreground;
|
2017-02-12 02:23:31 -05:00
|
|
|
|
2015-07-08 11:39:24 -04:00
|
|
|
for(const auto c : text) {
|
2017-08-17 07:56:47 -04:00
|
|
|
if (escape) {
|
2017-08-27 16:03:17 -04:00
|
|
|
if (c <= 15)
|
|
|
|
pen = term_colors[c & 15];
|
|
|
|
else
|
|
|
|
pen = foreground;
|
2017-08-17 07:56:47 -04:00
|
|
|
escape = false;
|
|
|
|
} else {
|
|
|
|
if (c == '\x1B') {
|
|
|
|
escape = true;
|
|
|
|
} else {
|
|
|
|
const auto glyph = font.glyph(c);
|
|
|
|
display.draw_glyph(p, glyph, pen, background);
|
|
|
|
const auto advance = glyph.advance();
|
|
|
|
p += advance;
|
|
|
|
width += advance.x();
|
|
|
|
}
|
|
|
|
}
|
2015-07-08 11:39:24 -04:00
|
|
|
}
|
|
|
|
return width;
|
|
|
|
}
|
|
|
|
|
2017-02-12 02:23:31 -05:00
|
|
|
int Painter::draw_string(Point p, const Style& style, const std::string text) {
|
|
|
|
return draw_string(p, style.font, style.foreground, style.background, text);
|
|
|
|
}
|
|
|
|
|
2016-02-03 16:23:46 -05:00
|
|
|
void Painter::draw_bitmap(const Point p, const Bitmap& bitmap, const Color foreground, const Color background) {
|
|
|
|
display.draw_bitmap(p, bitmap.size, bitmap.data, foreground, background);
|
|
|
|
}
|
|
|
|
|
2016-01-23 20:53:16 -05:00
|
|
|
void Painter::draw_hline(Point p, int width, const Color c) {
|
2016-01-23 20:02:16 -05:00
|
|
|
display.fill_rectangle({ p, { width, 1 } }, c);
|
2015-07-08 11:39:24 -04:00
|
|
|
}
|
|
|
|
|
2016-01-23 20:53:16 -05:00
|
|
|
void Painter::draw_vline(Point p, int height, const Color c) {
|
2016-01-23 20:02:16 -05:00
|
|
|
display.fill_rectangle({ p, { 1, height } }, c);
|
2015-07-08 11:39:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void Painter::draw_rectangle(const Rect r, const Color c) {
|
2016-11-28 14:25:27 -05:00
|
|
|
draw_hline(r.location(), r.width(), c);
|
|
|
|
draw_vline({ r.left(), r.top() + 1 }, r.height() - 2, c);
|
|
|
|
draw_vline({ r.left() + r.width() - 1, r.top() + 1 }, r.height() - 2, c);
|
|
|
|
draw_hline({ r.left(), r.top() + r.height() - 1 }, r.width(), c);
|
2015-07-08 11:39:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void Painter::fill_rectangle(const Rect r, const Color c) {
|
2015-08-01 17:31:51 -04:00
|
|
|
display.fill_rectangle(r, c);
|
2015-07-08 11:39:24 -04:00
|
|
|
}
|
|
|
|
|
2015-08-15 00:36:51 -04:00
|
|
|
void Painter::paint_widget_tree(Widget* const w) {
|
|
|
|
if( ui::is_dirty() ) {
|
|
|
|
paint_widget(w);
|
|
|
|
ui::dirty_clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-15 00:27:46 -04:00
|
|
|
void Painter::paint_widget(Widget* const w) {
|
|
|
|
if( w->hidden() ) {
|
|
|
|
// Mark widget (and all children) as invisible.
|
|
|
|
w->visible(false);
|
|
|
|
} else {
|
|
|
|
// Mark this widget as visible and recurse.
|
|
|
|
w->visible(true);
|
|
|
|
|
|
|
|
if( w->dirty() ) {
|
|
|
|
w->paint(*this);
|
|
|
|
// Force-paint all children.
|
|
|
|
for(const auto child : w->children()) {
|
|
|
|
child->set_dirty();
|
|
|
|
paint_widget(child);
|
|
|
|
}
|
|
|
|
w->set_clean();
|
|
|
|
} else {
|
|
|
|
// Selectively paint all children.
|
|
|
|
for(const auto child : w->children()) {
|
|
|
|
paint_widget(child);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-08 11:39:24 -04:00
|
|
|
} /* namespace ui */
|