mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 21:37:35 +00:00
LibGUI: Add a GPainter class that inherits from Painter.
This gets rid of the last little piece of LibGUI knowledge in Painter.
This commit is contained in:
parent
326c6fd607
commit
9fa21fa585
27 changed files with 75 additions and 78 deletions
12
LibGUI/GPainter.h
Normal file
12
LibGUI/GPainter.h
Normal file
|
@ -0,0 +1,12 @@
|
|||
#pragma once
|
||||
|
||||
#include <SharedGraphics/Painter.h>
|
||||
|
||||
class GWidget;
|
||||
class GraphicsBitmap;
|
||||
|
||||
class GPainter : public Painter {
|
||||
public:
|
||||
explicit GPainter(GWidget&);
|
||||
explicit GPainter(GraphicsBitmap&);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue