ladybird/Applications/PaintBrush/BucketTool.h
Robin Burchell 502c54e39a Add a simple spray fill tool
Could do with some more tweaking no doubt, and it'd be nice to have a
circular spray, but this is better than nothing.
2019-06-17 05:54:32 +02:00

15 lines
279 B
C++

#pragma once
#include "Tool.h"
class BucketTool final : public Tool {
public:
BucketTool();
virtual ~BucketTool() override;
virtual void on_mousedown(GMouseEvent&) override;
private:
virtual const char* class_name() const override { return "BucketTool"; }
};