ladybird/Applications/PaintBrush
Andreas Kling a599317624 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.
2019-07-25 19:49:28 +02:00
..
BucketTool.cpp LibDraw: Introduce (formerly known as SharedGraphics.) 2019-07-18 10:18:16 +02:00
BucketTool.h Add a simple spray fill tool 2019-06-17 05:54:32 +02:00
ColorDialog.cpp GWidget: Add set_preferred_size(width, height) overload. 2019-07-20 22:39:24 +02:00
ColorDialog.h LibCore: Introduce a C_OBJECT macro. 2019-07-25 19:49:28 +02:00
EraseTool.cpp PaintBrush: Add an erase tool 2019-06-28 15:27:23 +02:00
EraseTool.h LibDraw: Introduce (formerly known as SharedGraphics.) 2019-07-18 10:18:16 +02:00
main.cpp LibGUI: Get rid of GWindow::should_exit_event_loop_on_close(). 2019-07-23 18:20:00 +02:00
Makefile PaintBrush: Add an erase tool 2019-06-28 15:27:23 +02:00
PaintableWidget.cpp LibDraw: Introduce (formerly known as SharedGraphics.) 2019-07-18 10:18:16 +02:00
PaintableWidget.h LibCore: Introduce a C_OBJECT macro. 2019-07-25 19:49:28 +02:00
PaletteWidget.cpp GWidget: Add set_preferred_size(width, height) overload. 2019-07-20 22:39:24 +02:00
PaletteWidget.h LibCore: Introduce a C_OBJECT macro. 2019-07-25 19:49:28 +02:00
PenTool.cpp PaintBrush: Implement a thickness setting for the pen tool. 2019-06-23 10:00:02 +02:00
PenTool.h LibDraw: Introduce (formerly known as SharedGraphics.) 2019-07-18 10:18:16 +02:00
PickerTool.cpp LibDraw: Introduce (formerly known as SharedGraphics.) 2019-07-18 10:18:16 +02:00
PickerTool.h PaintBrush: Add a color picker tool. 2019-06-22 12:05:35 +02:00
SprayTool.cpp LibDraw: Introduce (formerly known as SharedGraphics.) 2019-07-18 10:18:16 +02:00
SprayTool.h PaintBrush: Add size context menu to SprayTool 2019-06-28 15:27:23 +02:00
Tool.cpp PaintBrush: Factor out the pen tool into an actual PenTool class. 2019-06-14 18:51:57 +02:00
Tool.h PaintBrush: Implement a thickness setting for the pen tool. 2019-06-23 10:00:02 +02:00
ToolboxWidget.cpp GWidget: Add set_preferred_size(width, height) overload. 2019-07-20 22:39:24 +02:00
ToolboxWidget.h LibCore: Introduce a C_OBJECT macro. 2019-07-25 19:49:28 +02:00