IntelliPhoto  1
IntelliToolGradient.cpp
Go to the documentation of this file.
1 #include "IntelliToolGradient.h"
2 #include "Layer/PaintingArea.h"
3 #include "math.h"
4 #include <QDebug>
5 
7  : IntelliTool(Area, colorPicker, Toolsettings){
9  this->LineColor = QColor(0,0,0,255);
10  this->hasMoved = false;
11 }
12 
15 }
16 
19  doubleStartPoint[0] = static_cast<double>(x);
20  doubleStartPoint[1] = static_cast<double>(y);
21  startPoint = QPoint(x,y);
22  endPoint = QPoint(x,y);
23  VectorStartEnd[0] = 0;
24  VectorStartEnd[1] = 0;
25  Canvas->image->drawPixel(startPoint,LineColor);
26 }
27 
30 }
31 
33  if(hasMoved && this->isDrawing) {
34  computeGradientLayer();
36  }
37 }
38 
41 }
42 
44  if(this->isDrawing) {
45  hasMoved = true;
46  endPoint = QPoint(x,y);
47  this->Canvas->image->drawPlain(Qt::transparent);
48  computeGradientLayer();
49  Canvas->image->drawLine(startPoint,endPoint,LineColor,1);
50  }
52 }
53 
56 }
57 
58 void IntelliToolGradient::computeAndDrawPixelColor(QPoint Point, int FirstColor[4], int SecondColor[4], double NormalVector[2], double NormalDotNormal){
59  double doublePoint[2];
60  doublePoint[0] = static_cast<double>(Point.x());
61  doublePoint[1] = static_cast<double>(Point.y());
62  double doublePointSubA[2];
63  doublePointSubA[0] = doublePoint[0] - doubleStartPoint[0];
64  doublePointSubA[1] = doublePoint[1] - doubleStartPoint[1];
65  double Perpendicular[2];
66  double PointSubADotNormal = dotProduct(doublePointSubA,NormalVector);
67  Perpendicular[0] = doublePoint[0] - (PointSubADotNormal / NormalDotNormal) * NormalVector[0];
68  Perpendicular[1] = doublePoint[1] - (PointSubADotNormal / NormalDotNormal) * NormalVector[1];
69  double VectorAPoint[2];
70  VectorAPoint[0] = static_cast<double>(Perpendicular[0] - doubleStartPoint[0]);
71  VectorAPoint[1] = static_cast<double>(Perpendicular[1] - doubleStartPoint[1]);
72  double ratio;
73  if(((VectorAPoint[0] < 0 && VectorStartEnd[0] < 0) || (VectorAPoint[0] > 0 && VectorStartEnd[0] > 0)) && ((VectorAPoint[1] < 0 && VectorStartEnd[1] < 0) || (VectorAPoint[1] > 0 && VectorStartEnd[1] > 0)))
74  ratio = lenghtVector(VectorAPoint) / lenghtVector(VectorStartEnd);
75  else{
76  ratio = -1;
77  }
78  QColor computedColor;
79  if(ratio < 0) {
80  computedColor = colorPicker->getFirstColor();
81  }
82  else if(ratio > 1) {
83  computedColor = colorPicker->getSecondColor();
84  }
85  else{
86  computedColor.setRed(static_cast<int>(ratio * SecondColor[0] + (1 - ratio) * FirstColor[0]));
87  computedColor.setGreen(static_cast<int>(ratio * SecondColor[1] + (1 - ratio) * FirstColor[1]));
88  computedColor.setBlue(static_cast<int>(ratio * SecondColor[2] + (1 - ratio) * FirstColor[2]));
89  computedColor.setAlpha(static_cast<int>(ratio * SecondColor[3] + (1 - ratio) * FirstColor[3]));
90  }
91  Canvas->image->drawPixel(Point,computedColor);
92 }
93 
94 double IntelliToolGradient::dotProduct(double Vector1[2], double Vector2[2]){
95  return static_cast<double>(Vector1[0] * Vector2[0] + Vector1[1] * Vector2[1]);
96 }
97 
98 double IntelliToolGradient::lenghtVector(double Vector[2]){
99  return static_cast<double>((sqrt(Vector[0] * Vector[0] + Vector[1] * Vector[1])));
100 }
101 
102 void IntelliToolGradient::computeGradientLayer(){
103  int FirstColor[4];
104  colorPicker->getFirstColor().getRgb(&FirstColor[0],&FirstColor[1],&FirstColor[2],&FirstColor[3]);
105  int SecondColor[4];
106  colorPicker->getSecondColor().getRgb(&SecondColor[0],&SecondColor[1],&SecondColor[2],&SecondColor[3]);
107 
108  double NormalVector[2];
109  double NormalDotNormal;
110 
111  VectorStartEnd[0] = static_cast<double>(endPoint.x() - startPoint.x());
112  VectorStartEnd[1] = static_cast<double>(endPoint.y() - startPoint.y());
113  NormalVector[0] = VectorStartEnd[1];
114  NormalVector[1] = (-1 * VectorStartEnd[0]);
115  NormalDotNormal = dotProduct(NormalVector,NormalVector);
116 
117  for(int i = 0; i < activeLayer->height; i++) {
118  for(int j = 0; j < activeLayer->width; j++) {
119  computeAndDrawPixelColor(QPoint(j,i), FirstColor, SecondColor, NormalVector, NormalDotNormal);
120  }
121  }
122 }
IntelliToolGradient::onMouseLeftReleased
virtual void onMouseLeftReleased(int x, int y) override
A function managing the left click Released of a Mouse. Call this in child classes!
Definition: IntelliToolGradient.cpp:32
IntelliTool::onMouseRightPressed
virtual void onMouseRightPressed(int x, int y)
A function managing the right click Pressed of a Mouse. Constructing the Canvas to draw on....
Definition: IntelliTool.cpp:19
IntelliToolGradient::onMouseRightReleased
virtual void onMouseRightReleased(int x, int y) override
A function managing the right click Released of a Mouse. Merging the Canvas to Active....
Definition: IntelliToolGradient.cpp:39
IntelliColorPicker::getFirstColor
QColor getFirstColor() const
A function to read the primary selected color.
Definition: IntelliColorPicker.cpp:15
IntelliTool::onMouseLeftReleased
virtual void onMouseLeftReleased(int x, int y)
A function managing the left click Released of a Mouse. Call this in child classes!
Definition: IntelliTool.cpp:37
IntelliTool::colorPicker
IntelliColorPicker * colorPicker
A pointer to the IntelliColorPicker of the PaintingArea to interact with, and get the colors.
Definition: IntelliTool.h:64
IntelliImage::drawLine
virtual void drawLine(const QPoint &p1, const QPoint &p2, const QColor &color, const int &penWidth)
A function that draws a line between two given points in a given color.
Definition: IntelliImage.cpp:97
IntelliTool::onMouseLeftPressed
virtual void onMouseLeftPressed(int x, int y)
A function managing the left click Pressed of a Mouse. Resetting the current draw....
Definition: IntelliTool.cpp:30
IntelliImage::drawPixel
virtual void drawPixel(const QPoint &p1, const QColor &color)
A funtcion used to draw a pixel on the Image with the given Color.
Definition: IntelliImage.cpp:58
IntelliToolGradient::~IntelliToolGradient
virtual ~IntelliToolGradient() override
~IntelliToolGradient basic destructor.
Definition: IntelliToolGradient.cpp:13
IntelliToolGradient::onMouseRightPressed
virtual void onMouseRightPressed(int x, int y) override
A function managing the right click Pressed of a Mouse. Constructing the Canvas to draw on....
Definition: IntelliToolGradient.cpp:28
PaintingArea
The PaintingArea class manages the methods and stores information about the current painting area,...
Definition: PaintingArea.h:57
IntelliTool::isDrawing
bool isDrawing
A flag checking if the user is currently drawing or not.
Definition: IntelliTool.h:84
IntelliToolGradient::onWheelScrolled
virtual void onWheelScrolled(int value) override
A function managing the scroll event. A positive value means scrolling outwards. Call this in child c...
Definition: IntelliToolGradient.cpp:54
IntelliColorPicker::getSecondColor
QColor getSecondColor() const
A function to read the secondary selected color.
Definition: IntelliColorPicker.cpp:19
IntelliToolGradient::IntelliToolGradient
IntelliToolGradient(PaintingArea *Area, IntelliColorPicker *colorPicker, IntelliToolsettings *Toolsettings)
IntelliToolGradient basic constructor of the gradient tool.
Definition: IntelliToolGradient.cpp:6
IntelliTool::onMouseRightReleased
virtual void onMouseRightReleased(int x, int y)
A function managing the right click Released of a Mouse. Merging the Canvas to Active....
Definition: IntelliTool.cpp:26
IntelliTool::activeLayer
LayerObject * activeLayer
A pointer to the underlying active Layer, do not work on this. This is used for data grabbing or prev...
Definition: IntelliTool.h:74
IntelliTool::Canvas
LayerObject * Canvas
A pointer to the drawing canvas of the tool, work on this.
Definition: IntelliTool.h:79
LayerObject::width
int width
width - Stores the width of a layer in pixels.
Definition: PaintingArea.h:31
IntelliToolGradient::onMouseLeftPressed
virtual void onMouseLeftPressed(int x, int y) override
A function managing the left click Pressed of a Mouse. Resetting the current draw....
Definition: IntelliToolGradient.cpp:17
IntelliTool
An abstract class that manages the basic events, like mouse clicks or scrolls events.
Definition: IntelliTool.h:17
IntelliToolGradient::onMouseMoved
virtual void onMouseMoved(int x, int y) override
A function managing the mouse moved event. Call this in child classes!
Definition: IntelliToolGradient.cpp:43
PaintingArea.h
LayerObject::height
int height
height - Stores the height of a layer in pixels.
Definition: PaintingArea.h:35
IntelliTool::ActiveType
Tooltype ActiveType
ActiveType the type of the active tool.
Definition: IntelliTool.h:59
IntelliColorPicker
The IntelliColorPicker manages the selected colors for one whole project.
Definition: IntelliColorPicker.h:14
LayerObject::image
IntelliImage * image
image - Stores the imageData of the current LayerObject.
Definition: PaintingArea.h:27
IntelliTool::Tooltype::GRADIENT
@ GRADIENT
IntelliTool::onMouseMoved
virtual void onMouseMoved(int x, int y)
A function managing the mouse moved event. Call this in child classes!
Definition: IntelliTool.cpp:48
IntelliTool::onWheelScrolled
virtual void onWheelScrolled(int value)
A function managing the scroll event. A positive value means scrolling outwards. Call this in child c...
Definition: IntelliTool.cpp:53
IntelliToolsettings
The IntelliToolsettings class managing the settings of the tools, independent of an existing tool.
Definition: IntelliToolsettings.h:9
IntelliToolGradient.h
IntelliImage::drawPlain
virtual void drawPlain(const QColor &color)
A function that clears the whole image in a given Color.
Definition: IntelliImage.cpp:117