mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 10:12:25 -05:00
86361d3d45
This patch makes menus stand out a bit more from their background by using the same kind of shading that Windows 2000 had.
16 lines
684 B
C++
16 lines
684 B
C++
#pragma once
|
|
|
|
class Painter;
|
|
class Rect;
|
|
|
|
enum class ButtonStyle { Normal, CoolBar, OldNormal };
|
|
enum class FrameShadow { Plain, Raised, Sunken };
|
|
enum class FrameShape { NoFrame, Box, Container, Panel, VerticalLine, HorizontalLine };
|
|
|
|
class StylePainter {
|
|
public:
|
|
static void paint_button(Painter&, const Rect&, ButtonStyle, bool pressed, bool hovered = false, bool checked = false, bool enabled = true);
|
|
static void paint_surface(Painter&, const Rect&, bool paint_vertical_lines = true);
|
|
static void paint_frame(Painter&, const Rect&, FrameShape, FrameShadow, int thickness, bool skip_vertical_lines = false);
|
|
static void paint_menu_frame(Painter&, const Rect&);
|
|
};
|