mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-13 11:42:38 +03:00
14 lines
278 B
C++
14 lines
278 B
C++
#pragma once
|
|
|
|
#include <LibGUI/GTextEditor.h>
|
|
#include <AK/Function.h>
|
|
|
|
class GTextBox final : public GTextEditor {
|
|
public:
|
|
explicit GTextBox(GWidget* parent);
|
|
virtual ~GTextBox() override;
|
|
|
|
virtual const char* class_name() const override { return "GTextBox"; }
|
|
};
|
|
|