mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
15 lines
192 B
C
15 lines
192 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
class Painter;
|
||
|
|
class Rect;
|
||
|
|
|
||
|
|
class GStyle {
|
||
|
|
public:
|
||
|
|
static GStyle& the();
|
||
|
|
|
||
|
|
void paint_button(Painter& painter, const Rect& rect, bool pressed);
|
||
|
|
|
||
|
|
private:
|
||
|
|
GStyle();
|
||
|
|
};
|