mirror of
https://github.com/creyD/intelliphoto.git
synced 2026-04-13 20:00:32 +02:00
SetColorTool, PenTool und FloodFillTool
LoL
This commit is contained in:
24
src/Painting/Tool/IntelliToolSetColorTool.h
Normal file
24
src/Painting/Tool/IntelliToolSetColorTool.h
Normal file
@@ -0,0 +1,24 @@
|
||||
#ifndef INTELLITOOLSETCOLORTOOL_H
|
||||
#define INTELLITOOLSETCOLORTOOL_H
|
||||
|
||||
#include"IntelliTool.h"
|
||||
#include"QColor"
|
||||
#include"QPoint"
|
||||
#include"QColorDialog"
|
||||
|
||||
class IntelliToolSetColorTool: public IntelliTool{
|
||||
public:
|
||||
IntelliToolSetColorTool(PaintingArea *Area);
|
||||
virtual ~IntelliToolSetColorTool() override;
|
||||
|
||||
void getColorbar(int firstOrSecondColor) override;
|
||||
|
||||
QColor IntelliToolSetColorTool::getFirstColor();
|
||||
QColor IntelliToolSetColorTool::getSecondColor();
|
||||
|
||||
protected:
|
||||
QColor firstColor;
|
||||
QColor secondColor;
|
||||
};
|
||||
|
||||
#endif // INTELLITOOLSETCOLORTOOL_H
|
||||
Reference in New Issue
Block a user