Go to the documentation of this file.
3 #include "QColorDialog"
4 #include "QInputDialog"
36 QPoint left, right, top, down;
38 QPoint Current = Q.front();
41 left = QPoint(Current.x()-1,Current.y() );
42 right = QPoint(Current.x()+1,Current.y() );
43 top = QPoint(Current.x() ,Current.y()-1);
44 down = QPoint(Current.x() ,Current.y()+1);
virtual void drawPixel(const QPoint &p1, const QColor &color)
A funtcion used to draw a pixel on the Image with the given Color.
QColor getFirstColor()
A function to read the primary selected color.
virtual QColor getPixelColor(QPoint &point)
A function that returns the pixelcolor at a certain point.
The IntelliColorPicker manages the selected colors for one whole project.
virtual void calculateVisiblity()=0
An abstract function that calculates the visiblity of the Image data if needed.