mirror of
https://github.com/creyD/intelliphoto.git
synced 2026-04-12 19:40:28 +02:00
25 lines
571 B
C++
25 lines
571 B
C++
#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
|