mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-06 16:19:23 +00:00
LibGUI: Run clang-format on GModel.h to neaten up some formatting
This commit is contained in:
parent
84f0be37f0
commit
0e7cee58c0
Notes:
sideshowbarker
2024-07-19 10:17:21 +09:00
Author: https://github.com/deoxxa
Commit: 0e7cee58c0
Pull-request: https://github.com/SerenityOS/serenity/pull/1037
1 changed files with 7 additions and 4 deletions
|
@ -1,13 +1,13 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <AK/String.h>
|
|
||||||
#include <AK/Badge.h>
|
#include <AK/Badge.h>
|
||||||
#include <AK/Function.h>
|
#include <AK/Function.h>
|
||||||
#include <AK/HashTable.h>
|
#include <AK/HashTable.h>
|
||||||
#include <AK/RefCounted.h>
|
#include <AK/RefCounted.h>
|
||||||
|
#include <AK/String.h>
|
||||||
|
#include <LibDraw/TextAlignment.h>
|
||||||
#include <LibGUI/GModelIndex.h>
|
#include <LibGUI/GModelIndex.h>
|
||||||
#include <LibGUI/GVariant.h>
|
#include <LibGUI/GVariant.h>
|
||||||
#include <LibDraw/TextAlignment.h>
|
|
||||||
|
|
||||||
class Font;
|
class Font;
|
||||||
class GAbstractView;
|
class GAbstractView;
|
||||||
|
@ -24,7 +24,10 @@ public:
|
||||||
int preferred_width { 0 };
|
int preferred_width { 0 };
|
||||||
TextAlignment text_alignment { TextAlignment::CenterLeft };
|
TextAlignment text_alignment { TextAlignment::CenterLeft };
|
||||||
const Font* font { nullptr };
|
const Font* font { nullptr };
|
||||||
enum class Sortable { False, True };
|
enum class Sortable {
|
||||||
|
False,
|
||||||
|
True,
|
||||||
|
};
|
||||||
Sortable sortable { Sortable::True };
|
Sortable sortable { Sortable::True };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue