mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05:00
17 lines
308 B
C++
17 lines
308 B
C++
#pragma once
|
|
|
|
class Painter;
|
|
class Rect;
|
|
|
|
enum class GButtonStyle { Normal, CoolBar };
|
|
|
|
class GStyle {
|
|
public:
|
|
static GStyle& the();
|
|
|
|
void paint_button(Painter&, const Rect&, GButtonStyle, bool pressed, bool hovered = false);
|
|
void paint_surface(Painter&, const Rect&);
|
|
|
|
private:
|
|
GStyle();
|
|
};
|