summaryrefslogtreecommitdiff
path: root/Libraries/LibGUI/GInputBox.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-07-25 19:49:28 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-07-25 19:49:28 +0200
commita599317624fb8428eb64cf719affcdd075f5c9d5 (patch)
tree7669ffd4a1acab1b0caf003443ed470de6fe34ea /Libraries/LibGUI/GInputBox.h
parentd21a4f7518ced2b49e20b3b2521c80b0afec216d (diff)
downloadserenity-a599317624fb8428eb64cf719affcdd075f5c9d5.zip
LibCore: Introduce a C_OBJECT macro.
This macro goes at the top of every CObject-derived class like so: class SomeClass : public CObject { C_OBJECT(SomeClass) public: ... At the moment, all it does is create an override for the class_name() getter but in the future this will be used to automatically insert member functions into these classes.
Diffstat (limited to 'Libraries/LibGUI/GInputBox.h')
-rw-r--r--Libraries/LibGUI/GInputBox.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Libraries/LibGUI/GInputBox.h b/Libraries/LibGUI/GInputBox.h
index 76672b9a80..f7a36bebf0 100644
--- a/Libraries/LibGUI/GInputBox.h
+++ b/Libraries/LibGUI/GInputBox.h
@@ -6,14 +6,13 @@ class GButton;
class GTextEditor;
class GInputBox : public GDialog {
+ C_OBJECT(GInputBox)
public:
explicit GInputBox(const StringView& prompt, const StringView& title, CObject* parent = nullptr);
virtual ~GInputBox() override;
String text_value() const { return m_text_value; }
- virtual const char* class_name() const override { return "GInputBox"; }
-
private:
void build();
String m_prompt;