1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:07:35 +00:00

Make the Widgets/ directory build again.

This commit is contained in:
Andreas Kling 2018-12-21 02:18:16 +01:00
parent ec1c487dcd
commit a9f256a745
10 changed files with 10 additions and 10 deletions

View file

@ -1,7 +1,7 @@
#pragma once
#include "Widget.h"
#include <AK/String.h>
#include <AK/AKString.h>
class Button final : public Widget {
public:

View file

@ -1,7 +1,7 @@
#pragma once
#include "Widget.h"
#include <AK/String.h>
#include <AK/AKString.h>
class CheckBox final : public Widget {
public:

View file

@ -2,7 +2,7 @@
#include "Point.h"
#include "Rect.h"
#include <AK/String.h>
#include <AK/AKString.h>
#include <AK/Types.h>
static const char* eventNames[] = {

View file

@ -1,7 +1,7 @@
#pragma once
#include "Widget.h"
#include <AK/String.h>
#include <AK/AKString.h>
class Label final : public Widget {
public:

View file

@ -1,6 +1,6 @@
#pragma once
#include <AK/String.h>
#include <AK/AKString.h>
class Window;

View file

@ -4,7 +4,7 @@
#include "Font.h"
#include "Window.h"
#include <AK/Assertions.h>
#include <AK/StdLib.h>
#include <AK/StdLibExtras.h>
#include <SDL.h>
Painter::Painter(Widget& widget)

View file

@ -4,7 +4,7 @@
#include "Point.h"
#include "Rect.h"
#include "Size.h"
#include <AK/String.h>
#include <AK/AKString.h>
class CBitmap;
class Font;

View file

@ -2,7 +2,7 @@
#include "Painter.h"
#include "Font.h"
#include "CBitmap.h"
#include <AK/StdLib.h>
#include <AK/StdLibExtras.h>
TextBox::TextBox(Widget* parent)
: Widget(parent)

View file

@ -5,7 +5,7 @@
#include "Rect.h"
#include "Color.h"
#include "Font.h"
#include <AK/String.h>
#include <AK/AKString.h>
#include <functional>
class Window;

View file

@ -2,7 +2,7 @@
#include "Object.h"
#include "Rect.h"
#include <AK/String.h>
#include <AK/AKString.h>
#include <AK/WeakPtr.h>
class Widget;