mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 03:27:34 +00:00
SharedGraphics: Run clang-format on everything.
This commit is contained in:
parent
7770d6a09d
commit
76b3337498
20 changed files with 216 additions and 114 deletions
|
@ -3,9 +3,26 @@
|
|||
class Painter;
|
||||
class Rect;
|
||||
|
||||
enum class ButtonStyle { Normal, CoolBar };
|
||||
enum class FrameShadow { Plain, Raised, Sunken };
|
||||
enum class FrameShape { NoFrame, Box, Container, Panel, VerticalLine, HorizontalLine };
|
||||
enum class ButtonStyle
|
||||
{
|
||||
Normal,
|
||||
CoolBar
|
||||
};
|
||||
enum class FrameShadow
|
||||
{
|
||||
Plain,
|
||||
Raised,
|
||||
Sunken
|
||||
};
|
||||
enum class FrameShape
|
||||
{
|
||||
NoFrame,
|
||||
Box,
|
||||
Container,
|
||||
Panel,
|
||||
VerticalLine,
|
||||
HorizontalLine
|
||||
};
|
||||
|
||||
class StylePainter {
|
||||
public:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue