This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
hilbert-os/libraries/pake/include/pake/widgets/fixed-text.hpp

31 lines
658 B
C++

#pragma once
#include <daguerre/fixed-font.hpp>
#include <pake/widget.hpp>
namespace pake::widgets {
class fixed_text : public widget {
const daguerre::fixed_font<bool> *font;
daguerre::hilbert_color bg, fg;
std::string text;
int width, height;
public:
//TODO: look up font in some kind of catalogue
fixed_text(
std::string &&text,
const daguerre::fixed_font<bool> *font,
daguerre::hilbert_color bg,
daguerre::hilbert_color fg);
virtual void render(
dirtiable_image &onto, int x_off, int y_off, bool force) override;
virtual void notify_size(int width, int height) override;
};
}