mirror of
https://github.com/creyD/intelliphoto.git
synced 2026-04-13 20:00:32 +02:00
Moved up src/ one level
This commit is contained in:
26
src/IntelliHelper/IntelliColorPicker.h
Normal file
26
src/IntelliHelper/IntelliColorPicker.h
Normal file
@@ -0,0 +1,26 @@
|
||||
#ifndef INTELLITOOLSETCOLORTOOL_H
|
||||
#define INTELLITOOLSETCOLORTOOL_H
|
||||
|
||||
#include"QColor"
|
||||
#include"QPoint"
|
||||
#include"QColorDialog"
|
||||
|
||||
class IntelliColorPicker{
|
||||
public:
|
||||
IntelliColorPicker();
|
||||
virtual ~IntelliColorPicker();
|
||||
|
||||
void switchColors();
|
||||
|
||||
QColor getFirstColor();
|
||||
QColor getSecondColor();
|
||||
|
||||
void setFirstColor(QColor Color);
|
||||
void setSecondColor(QColor Color);
|
||||
|
||||
private:
|
||||
QColor firstColor;
|
||||
QColor secondColor;
|
||||
};
|
||||
|
||||
#endif // INTELLITOOLSETCOLORTOOL_H
|
||||
Reference in New Issue
Block a user