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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __UI_PAINTER_H__
|
|
|
|
#define __UI_PAINTER_H__
|
|
|
|
|
|
|
|
#include "ui.hpp"
|
|
|
|
#include "ui_text.hpp"
|
|
|
|
|
2023-06-01 18:45:55 -04:00
|
|
|
#include <string_view>
|
2015-07-08 11:39:24 -04:00
|
|
|
|
|
|
|
namespace ui {
|
|
|
|
|
|
|
|
struct Style {
|
2023-05-18 16:16:05 -04:00
|
|
|
const Font& font;
|
|
|
|
const Color background;
|
|
|
|
const Color foreground;
|
2015-07-08 11:39:24 -04:00
|
|
|
|
2023-05-18 16:16:05 -04:00
|
|
|
Style invert() const;
|
2015-07-08 11:39:24 -04:00
|
|
|
};
|
|
|
|
|
2015-08-15 00:27:46 -04:00
|
|
|
class Widget;
|
|
|
|
|
2015-07-08 11:39:24 -04:00
|
|
|
class Painter {
|
2023-05-18 16:16:05 -04:00
|
|
|
public:
|
|
|
|
Painter(){};
|
2015-07-08 11:39:24 -04:00
|
|
|
|
2023-05-18 16:16:05 -04:00
|
|
|
Painter(const Painter&) = delete;
|
|
|
|
Painter(Painter&&) = delete;
|
2015-07-08 11:39:24 -04:00
|
|
|
|
2023-06-01 18:45:55 -04:00
|
|
|
int draw_char(Point p, const Style& style, char c);
|
2015-07-08 11:39:24 -04:00
|
|
|
|
2023-06-01 18:45:55 -04:00
|
|
|
int draw_string(Point p, const Style& style, std::string_view text);
|
|
|
|
int draw_string(Point p, const Font& font, Color foreground, Color background, std::string_view text);
|
2015-07-08 11:39:24 -04:00
|
|
|
|
2023-06-01 18:45:55 -04:00
|
|
|
void draw_bitmap(Point p, const Bitmap& bitmap, Color background, Color foreground);
|
2016-02-03 16:23:46 -05:00
|
|
|
|
2023-06-01 18:45:55 -04:00
|
|
|
void draw_rectangle(Rect r, Color c);
|
|
|
|
void fill_rectangle(Rect r, Color c);
|
|
|
|
void fill_rectangle_unrolled8(Rect r, Color c);
|
2015-07-08 11:39:24 -04:00
|
|
|
|
2023-06-01 18:45:55 -04:00
|
|
|
void paint_widget_tree(Widget* w);
|
2023-05-18 16:16:05 -04:00
|
|
|
|
2023-06-01 18:45:55 -04:00
|
|
|
void draw_hline(Point p, int width, Color c);
|
|
|
|
void draw_vline(Point p, int height, Color c);
|
2023-05-18 16:16:05 -04:00
|
|
|
|
|
|
|
private:
|
2023-06-01 18:45:55 -04:00
|
|
|
void paint_widget(Widget* w);
|
2015-07-08 11:39:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
} /* namespace ui */
|
|
|
|
|
2023-05-18 16:16:05 -04:00
|
|
|
#endif /*__UI_PAINTER_H__*/
|