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-02-28 10:27:04 +00:00
|
|
|
#include <SharedGraphics/TextAlignment.h>
|
2019-04-04 13:19:04 +00:00
|
|
|
#include <SharedGraphics/TextElision.h>
|
2018-12-21 01:18:16 +00:00
|
|
|
#include <AK/AKString.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-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-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-01-12 16:02:54 +00:00
|
|
|
void set_pixel(const Point&, Color);
|
|
|
|
void draw_line(const Point&, const Point&, Color);
|
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-05-26 17:14:03 +00:00
|
|
|
void blit_tiled(const Point&, const GraphicsBitmap&, const Rect& src_rect);
|
2019-05-27 03:10:23 +00:00
|
|
|
void blit_offset(const Point&, const GraphicsBitmap&, const Rect& src_rect, const Point&);
|
2019-05-27 15:36:44 +00:00
|
|
|
void blit_scaled(const Point&, const GraphicsBitmap&, const Rect& src_rect, const Size&);
|
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-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-01-11 02:52:09 +00:00
|
|
|
enum class DrawOp { 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()); }
|
|
|
|
void restore() { ASSERT(m_state_stack.size() > 1); m_state_stack.take_last(); }
|
|
|
|
|
2019-03-28 16:19:56 +00:00
|
|
|
protected:
|
2019-01-11 02:52:09 +00:00
|
|
|
void set_pixel_with_draw_op(dword& 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-01-11 02:52:09 +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-02-25 15:04:08 +00:00
|
|
|
Retained<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;
|
|
|
|
};
|