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

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.
This commit is contained in:
Andreas Kling 2019-07-25 19:49:28 +02:00
parent d21a4f7518
commit a599317624
56 changed files with 70 additions and 105 deletions

View file

@ -78,6 +78,7 @@ private:
};
class GTextEditor : public GScrollableWidget {
C_OBJECT(GTextEditor)
public:
enum Type {
MultiLine,
@ -134,8 +135,6 @@ public:
Function<void()> on_return_pressed;
Function<void()> on_escape_pressed;
virtual const char* class_name() const override { return "GTextEditor"; }
GAction& undo_action() { return *m_undo_action; }
GAction& redo_action() { return *m_redo_action; }
GAction& cut_action() { return *m_cut_action; }