2018-10-10 14:49:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Color.h"
|
2018-10-10 18:06:58 +00:00
|
|
|
#include "Point.h"
|
2018-10-10 14:49:36 +00:00
|
|
|
#include "Rect.h"
|
2018-10-12 10:29:58 +00:00
|
|
|
#include "Size.h"
|
2019-09-06 13:34:26 +00:00
|
|
|
#include <AK/String.h>
|
2019-12-26 19:43:59 +00:00
|
|
|
#include <AK/Utf8View.h>
|
2019-07-18 08:15:00 +00:00
|
|
|
#include <LibDraw/TextAlignment.h>
|
|
|
|
#include <LibDraw/TextElision.h>
|
2018-10-10 14:49:36 +00:00
|
|
|
|
2019-01-10 04:41:49 +00:00
|
|
|
class CharacterBitmap;
|
2019-02-05 05:43:33 +00:00
|
|
|
class GlyphBitmap;
|
2019-01-09 01:06:04 +00:00
|
|
|
class GraphicsBitmap;
|
2018-10-11 21:45:57 +00:00
|
|
|
class Font;
|
2019-09-04 20:47:03 +00:00
|
|
|
class Emoji;
|
2019-01-20 03:49:48 +00:00
|
|
|
|
2018-10-10 14:49:36 +00:00
|
|
|
class Painter {
|
|
|
|
public:
|
2019-01-12 02:42:50 +00:00
|
|
|
explicit Painter(GraphicsBitmap&);
|
2018-10-10 14:49:36 +00:00
|
|
|
~Painter();
|
2019-11-25 10:34:55 +00:00
|
|
|
void clear_rect(const Rect&, Color);
|
2019-01-12 16:02:54 +00:00
|
|
|
void fill_rect(const Rect&, Color);
|
2019-01-25 04:01:27 +00:00
|
|
|
void fill_rect_with_gradient(const Rect&, Color gradient_start, Color gradient_end);
|
2019-02-05 10:42:35 +00:00
|
|
|
void draw_rect(const Rect&, Color, bool rough = false);
|
2019-01-12 16:02:54 +00:00
|
|
|
void draw_bitmap(const Point&, const CharacterBitmap&, Color = Color());
|
2019-02-05 05:43:33 +00:00
|
|
|
void draw_bitmap(const Point&, const GlyphBitmap&, Color = Color());
|
2019-12-26 22:19:45 +00:00
|
|
|
void draw_ellipse_intersecting(const Rect&, Color, int thickness = 1);
|
2019-01-12 16:02:54 +00:00
|
|
|
void set_pixel(const Point&, Color);
|
2019-11-27 19:52:11 +00:00
|
|
|
void draw_line(const Point&, const Point&, Color, int thickness = 1, bool dotted = false);
|
2019-03-22 03:20:10 +00:00
|
|
|
void draw_scaled_bitmap(const Rect& dst_rect, const GraphicsBitmap&, const Rect& src_rect);
|
2019-04-10 11:51:47 +00:00
|
|
|
void blit(const Point&, const GraphicsBitmap&, const Rect& src_rect, float opacity = 1.0f);
|
2019-04-10 14:14:44 +00:00
|
|
|
void blit_dimmed(const Point&, const GraphicsBitmap&, const Rect& src_rect);
|
2019-10-19 09:05:21 +00:00
|
|
|
void draw_tiled_bitmap(const Rect& dst_rect, const GraphicsBitmap&);
|
2019-05-27 03:10:23 +00:00
|
|
|
void blit_offset(const Point&, const GraphicsBitmap&, const Rect& src_rect, const Point&);
|
2019-06-06 15:34:13 +00:00
|
|
|
void blit_scaled(const Rect&, const GraphicsBitmap&, const Rect&, float, float);
|
2019-06-02 12:58:02 +00:00
|
|
|
void draw_text(const Rect&, const StringView&, const Font&, TextAlignment = TextAlignment::TopLeft, Color = Color::Black, TextElision = TextElision::None);
|
|
|
|
void draw_text(const Rect&, const StringView&, TextAlignment = TextAlignment::TopLeft, Color = Color::Black, TextElision = TextElision::None);
|
2019-01-15 03:44:47 +00:00
|
|
|
void draw_glyph(const Point&, char, Color);
|
2019-03-09 20:24:12 +00:00
|
|
|
void draw_glyph(const Point&, char, const Font&, Color);
|
2019-10-19 16:36:45 +00:00
|
|
|
void draw_emoji(const Point&, const GraphicsBitmap&, const Font&);
|
2019-09-04 20:47:03 +00:00
|
|
|
void draw_glyph_or_emoji(const Point&, u32 codepoint, const Font&, Color);
|
2019-01-12 16:02:54 +00:00
|
|
|
|
2019-03-09 15:48:02 +00:00
|
|
|
const Font& font() const { return *state().font; }
|
|
|
|
void set_font(const Font& font) { state().font = &font; }
|
2018-10-11 21:45:57 +00:00
|
|
|
|
2019-06-07 15:13:23 +00:00
|
|
|
enum class DrawOp {
|
2019-06-05 16:22:11 +00:00
|
|
|
Copy,
|
|
|
|
Xor
|
|
|
|
};
|
2019-03-09 15:48:02 +00:00
|
|
|
void set_draw_op(DrawOp op) { state().draw_op = op; }
|
|
|
|
DrawOp draw_op() const { return state().draw_op; }
|
2019-01-11 02:52:09 +00:00
|
|
|
|
2019-03-29 14:01:54 +00:00
|
|
|
void add_clip_rect(const Rect& rect);
|
2019-01-24 22:40:12 +00:00
|
|
|
void clear_clip_rect();
|
2019-03-09 15:48:02 +00:00
|
|
|
Rect clip_rect() const { return state().clip_rect; }
|
2019-01-20 22:42:36 +00:00
|
|
|
|
2019-03-09 15:48:02 +00:00
|
|
|
void translate(int dx, int dy) { state().translation.move_by(dx, dy); }
|
|
|
|
void translate(const Point& delta) { state().translation.move_by(delta); }
|
2019-02-04 14:37:23 +00:00
|
|
|
|
2019-03-09 15:48:02 +00:00
|
|
|
Point translation() const { return state().translation; }
|
2019-03-07 12:13:25 +00:00
|
|
|
|
2019-02-10 13:28:39 +00:00
|
|
|
GraphicsBitmap* target() { return m_target.ptr(); }
|
|
|
|
|
2019-03-09 15:48:02 +00:00
|
|
|
void save() { m_state_stack.append(m_state_stack.last()); }
|
2019-06-05 16:22:11 +00:00
|
|
|
void restore()
|
|
|
|
{
|
|
|
|
ASSERT(m_state_stack.size() > 1);
|
|
|
|
m_state_stack.take_last();
|
|
|
|
}
|
2019-03-09 15:48:02 +00:00
|
|
|
|
2019-03-28 16:19:56 +00:00
|
|
|
protected:
|
2019-07-03 19:17:35 +00:00
|
|
|
void set_pixel_with_draw_op(u32& pixel, const Color&);
|
2019-02-01 04:23:05 +00:00
|
|
|
void fill_rect_with_draw_op(const Rect&, Color);
|
2019-02-19 00:42:53 +00:00
|
|
|
void blit_with_alpha(const Point&, const GraphicsBitmap&, const Rect& src_rect);
|
2019-04-10 11:51:47 +00:00
|
|
|
void blit_with_opacity(const Point&, const GraphicsBitmap&, const Rect& src_rect, float opacity);
|
2019-06-23 08:00:02 +00:00
|
|
|
void draw_pixel(const Point&, Color, int thickness = 1);
|
2019-01-11 02:52:09 +00:00
|
|
|
|
2019-09-04 20:47:03 +00:00
|
|
|
void draw_text_line(const Rect&, const Utf8View&, const Font&, TextAlignment, Color, TextElision);
|
2019-07-12 17:43:29 +00:00
|
|
|
|
2019-03-09 15:48:02 +00:00
|
|
|
struct State {
|
|
|
|
const Font* font;
|
|
|
|
Point translation;
|
|
|
|
Rect clip_rect;
|
|
|
|
DrawOp draw_op;
|
|
|
|
};
|
|
|
|
|
|
|
|
State& state() { return m_state_stack.last(); }
|
|
|
|
const State& state() const { return m_state_stack.last(); }
|
|
|
|
|
2019-02-28 17:57:36 +00:00
|
|
|
Rect m_clip_origin;
|
2019-06-21 16:37:47 +00:00
|
|
|
NonnullRefPtr<GraphicsBitmap> m_target;
|
2019-04-20 12:02:19 +00:00
|
|
|
Vector<State, 4> m_state_stack;
|
2018-10-10 14:49:36 +00:00
|
|
|
};
|
2019-03-09 15:54:41 +00:00
|
|
|
|
|
|
|
class PainterStateSaver {
|
|
|
|
public:
|
2019-04-15 23:01:03 +00:00
|
|
|
explicit PainterStateSaver(Painter&);
|
|
|
|
~PainterStateSaver();
|
2019-03-09 15:54:41 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
Painter& m_painter;
|
|
|
|
};
|