SetColorTool, PenTool und FloodFillTool

LoL
This commit is contained in:
AshBastian
2019-12-11 16:29:11 +01:00
parent 10fba8c454
commit 72bde027ed
13 changed files with 184 additions and 13 deletions

View File

@@ -111,6 +111,17 @@ void IntelliPhotoGui::slotDeleteLayer()
paintingArea->deleteLayer(layerNumber); paintingArea->deleteLayer(layerNumber);
} }
void IntelliPhotoGui::slotGetColorbar(){
bool ok1;
int firstOrSecondColor = QInputDialog::getInt(this, tr("Which Color"),
tr("Number:"),
1,1, 2, 1, &ok1);
Tool = paintingArea->getTool();
Tool->getColorbar(firstOrSecondColor);
}
void IntelliPhotoGui::slotSetActiveAlpha(){ void IntelliPhotoGui::slotSetActiveAlpha(){
// Stores button value // Stores button value
@@ -269,6 +280,9 @@ void IntelliPhotoGui::createActions()
actionDeleteLayer = new QAction(tr("&Delete Layer..."), this); actionDeleteLayer = new QAction(tr("&Delete Layer..."), this);
connect(actionDeleteLayer, SIGNAL(triggered()), this, SLOT(slotDeleteLayer())); connect(actionDeleteLayer, SIGNAL(triggered()), this, SLOT(slotDeleteLayer()));
actionGetColorbar = new QAction(tr("&Set Color"),this);
connect(actionGetColorbar, SIGNAL(triggered()), this, SLOT(slotGetColorbar()));
actionFloodFill = new QAction(tr("&clear Image"), this); actionFloodFill = new QAction(tr("&clear Image"), this);
connect(actionFloodFill, SIGNAL(triggered()), this, SLOT(slotClearActiveLayer())); connect(actionFloodFill, SIGNAL(triggered()), this, SLOT(slotClearActiveLayer()));
@@ -346,6 +360,7 @@ void IntelliPhotoGui::createMenus()
//Attach all Tool Options //Attach all Tool Options
toolMenu = new QMenu(tr("&Tools"), this); toolMenu = new QMenu(tr("&Tools"), this);
toolMenu->addAction(actionGetColorbar);
// Attach all actions to Help // Attach all actions to Help
helpMenu = new QMenu(tr("&Help"), this); helpMenu = new QMenu(tr("&Help"), this);

View File

@@ -12,6 +12,8 @@
// PaintingArea used to paint the image // PaintingArea used to paint the image
class PaintingArea; class PaintingArea;
class IntelliTool;
class IntelliPhotoGui : public QMainWindow class IntelliPhotoGui : public QMainWindow
{ {
// Declares our class as a QObject which is the base class // Declares our class as a QObject which is the base class
@@ -31,6 +33,9 @@ private slots:
void slotSave(); void slotSave();
void slotCreateNewLayer(); void slotCreateNewLayer();
void slotDeleteLayer(); void slotDeleteLayer();
void slotGetColorbar();
void slotAboutDialog(); void slotAboutDialog();
void slotClearActiveLayer(); void slotClearActiveLayer();
@@ -60,6 +65,7 @@ private:
// What we'll draw on // What we'll draw on
PaintingArea* paintingArea; PaintingArea* paintingArea;
IntelliTool* Tool;
// The menu widgets // The menu widgets
QMenu *saveAsMenu; QMenu *saveAsMenu;
@@ -76,6 +82,8 @@ private:
QAction *actionCreateNewLayer; QAction *actionCreateNewLayer;
QAction *actionDeleteLayer; QAction *actionDeleteLayer;
QAction *actionGetColorbar;
QAction *actionAboutDialog; QAction *actionAboutDialog;
QAction *actionAboutQtDialog; QAction *actionAboutQtDialog;

View File

@@ -23,7 +23,9 @@ SOURCES += \
IntelliHelper/IntelliHelper.cpp \ IntelliHelper/IntelliHelper.cpp \
Layer/PaintingArea.cpp \ Layer/PaintingArea.cpp \
Tool/IntelliTool.cpp \ Tool/IntelliTool.cpp \
Tool/IntelliToolFloodFillTool.cpp \
Tool/IntelliToolPen.cpp \ Tool/IntelliToolPen.cpp \
Tool/IntelliToolSetColorTool.cpp \
main.cpp main.cpp
HEADERS += \ HEADERS += \
@@ -34,7 +36,9 @@ HEADERS += \
IntelliHelper/IntelliHelper.h \ IntelliHelper/IntelliHelper.h \
Layer/PaintingArea.h \ Layer/PaintingArea.h \
Tool/IntelliTool.h \ Tool/IntelliTool.h \
Tool/IntelliToolPen.h Tool/IntelliToolFloodFillTool.h \
Tool/IntelliToolPen.h \
Tool/IntelliToolSetColorTool.h
FORMS += \ FORMS += \
widget.ui widget.ui

View File

@@ -11,11 +11,14 @@
#include "Image/IntelliRasterImage.h" #include "Image/IntelliRasterImage.h"
#include "Image/IntelliShapedImage.h" #include "Image/IntelliShapedImage.h"
#include "Tool/IntelliToolPen.h" #include "Tool/IntelliToolPen.h"
#include "Tool/IntelliToolSetColorTool.h"
#include "Tool/IntelliToolFloodFillTool.h"
PaintingArea::PaintingArea(int maxWidth, int maxHeight, QWidget *parent) PaintingArea::PaintingArea(int maxWidth, int maxHeight, QWidget *parent)
:QWidget(parent){ :QWidget(parent){
this->Tool = new IntelliToolPen(this); this->Tool = new IntelliToolFloodFillTool(this);
this->ColorTool = new IntelliToolSetColorTool(this);
this->setUp(maxWidth, maxHeight); this->setUp(maxWidth, maxHeight);
//tetsing //tetsing
this->addLayer(200,200,0,0,ImageType::Shaped_Image); this->addLayer(200,200,0,0,ImageType::Shaped_Image);
@@ -34,6 +37,10 @@ PaintingArea::PaintingArea(int maxWidth, int maxHeight, QWidget *parent)
activeLayer=1; activeLayer=1;
} }
IntelliToolSetColorTool* PaintingArea::getTool(){
return ColorTool;
}
void PaintingArea::setUp(int maxWidth, int maxHeight){ void PaintingArea::setUp(int maxWidth, int maxHeight){
//set standart parameter //set standart parameter
this->maxWidth = maxWidth; this->maxWidth = maxWidth;

View File

@@ -7,8 +7,9 @@
#include <QPoint> #include <QPoint>
#include <QWidget> #include <QWidget>
#include <QList> #include <QList>
#include"Image/IntelliImage.h" #include "Image/IntelliImage.h"
#include"Tool/IntelliTool.h" #include "Tool/IntelliTool.h"
#include "Tool/IntelliToolSetColorTool.h"
struct LayerObject{ struct LayerObject{
@@ -32,6 +33,8 @@ class PaintingArea : public QWidget
public: public:
PaintingArea(int maxWidth=600, int maxHeight=600, QWidget *parent = nullptr); PaintingArea(int maxWidth=600, int maxHeight=600, QWidget *parent = nullptr);
IntelliToolSetColorTool* getTool(); //TODO: rename function, when there are more Tools
// Handles all events // Handles all events
bool open(const QString &fileName); bool open(const QString &fileName);
bool save(const QString &fileName, const char *fileFormat); bool save(const QString &fileName, const char *fileFormat);
@@ -78,6 +81,7 @@ private:
int maxHeight; int maxHeight;
IntelliTool* Tool; IntelliTool* Tool;
IntelliToolSetColorTool* ColorTool;
std::vector<LayerObject> layerBundle; std::vector<LayerObject> layerBundle;
int activeLayer=-1; int activeLayer=-1;

View File

@@ -10,6 +10,9 @@ IntelliTool::~IntelliTool(){
} }
void IntelliTool::getColorbar(int firstOrSecondColor){
//optional for tool
}
void IntelliTool::onMouseRightPressed(int x, int y){ void IntelliTool::onMouseRightPressed(int x, int y){
if(drawing){ if(drawing){

View File

@@ -1,7 +1,7 @@
#ifndef Intelli_Tool_H #ifndef Intelli_Tool_H
#define Intelli_Tool_H #define Intelli_Tool_H
#include<vector> #include <vector>
class LayerObject; class LayerObject;
class PaintingArea; class PaintingArea;
@@ -16,10 +16,13 @@ protected:
LayerObject* Active; LayerObject* Active;
LayerObject* Canvas; LayerObject* Canvas;
bool drawing = false; bool drawing = false;
public: public:
IntelliTool(PaintingArea* Area); IntelliTool(PaintingArea* Area);
virtual ~IntelliTool() = 0; virtual ~IntelliTool() = 0;
virtual void getColorbar(int firstOrSecondColor);
virtual void onMouseRightPressed(int x, int y); virtual void onMouseRightPressed(int x, int y);
virtual void onMouseRightReleased(int x, int y); virtual void onMouseRightReleased(int x, int y);
virtual void onMouseLeftPressed(int x, int y); virtual void onMouseLeftPressed(int x, int y);

View File

@@ -0,0 +1,41 @@
#include "IntelliToolFloodFillTool.h"
#include "Layer/PaintingArea.h"
IntelliToolFloodFillTool::IntelliToolFloodFillTool(PaintingArea* Area)
:IntelliToolSetColorTool(Area)
{
Tool = Area->getTool();
isPressed = false;
}
void IntelliToolFloodFillTool::onMouseLeftPressed(int x, int y){
if(!isPressed){
isPressed = true;
IntelliTool::onMouseLeftPressed(x,y);
Tool = Area->getTool();
this->Canvas->image->floodFill(Tool->getFirstColor());
}
}
void IntelliToolFloodFillTool::onMouseRightPressed(int x, int y){
if(!isPressed){
isPressed = true;
IntelliTool::onMouseLeftPressed(x,y);
Tool = Area->getTool();
this->Canvas->image->floodFill(Tool->getSecondColor());
}
}
void IntelliToolFloodFillTool::onMouseRightReleased(int x, int y){
IntelliTool::onMouseLeftReleased(x,y);
if(isPressed) isPressed = false;
}
void IntelliToolFloodFillTool::onMouseLeftReleased(int x, int y){
IntelliTool::onMouseLeftReleased(x,y);
if(isPressed) isPressed = false;
}
void IntelliToolFloodFillTool::onMouseMoved(int x, int y){
IntelliTool::onMouseRightPressed(x,y);
}

View File

@@ -0,0 +1,22 @@
#ifndef INTELLITOOLFLOODFILLTOOL_H
#define INTELLITOOLFLOODFILLTOOL_H
#include "IntelliToolSetColorTool.h"
class IntelliToolFloodFillTool : public IntelliToolSetColorTool
{
public:
IntelliToolFloodFillTool(PaintingArea *Area);
void IntelliToolFloodFillTool::onMouseLeftPressed(int x, int y) override;
void IntelliToolFloodFillTool::onMouseLeftReleased(int x, int y) override;
void IntelliToolFloodFillTool::onMouseRightPressed(int x, int y) override;
void IntelliToolFloodFillTool::onMouseRightReleased(int x, int y) override;
void IntelliToolFloodFillTool::onMouseMoved(int x, int y) override;
private:
IntelliToolSetColorTool* Tool;
bool isPressed;
};
#endif // INTELLITOOLFLOODFILLTOOL_H

View File

@@ -1,9 +1,9 @@
#include"IntelliToolPen.h" #include "IntelliToolPen.h"
#include"Layer/PaintingArea.h" #include "Layer/PaintingArea.h"
#include"QDebug" #include "QDebug"
IntelliToolPen::IntelliToolPen(PaintingArea* Area) IntelliToolPen::IntelliToolPen(PaintingArea* Area)
:IntelliTool(Area){ :IntelliToolSetColorTool(Area){
} }
@@ -35,7 +35,9 @@ void IntelliToolPen::onMouseLeftReleased(int x, int y){
void IntelliToolPen::onMouseMoved(int x, int y){ void IntelliToolPen::onMouseMoved(int x, int y){
if(this->drawing){ if(this->drawing){
QPoint newPoint(x,y); QPoint newPoint(x,y);
this->Canvas->image->drawLine(this->point, newPoint, QColor(255,0,0,255), 2); Tool = Area->getTool();
qDebug() << Tool->getFirstColor();
this->Canvas->image->drawLine(this->point, newPoint, Tool->getFirstColor(), 2);
this->point=newPoint; this->point=newPoint;
} }
} }

View File

@@ -1,12 +1,11 @@
#ifndef INTELLITOOLPEN_H #ifndef INTELLITOOLPEN_H
#define INTELLITOOLPEN_H #define INTELLITOOLPEN_H
#include"IntelliTool.h" #include"IntelliToolSetColorTool.h"
#include"QColor" #include"QColor"
#include"QPoint" #include"QPoint"
class IntelliToolPen : public IntelliTool{ class IntelliToolPen : public IntelliToolSetColorTool{
QColor clr;
QPoint point; QPoint point;
public: public:
IntelliToolPen(PaintingArea* Area); IntelliToolPen(PaintingArea* Area);
@@ -18,6 +17,9 @@ public:
virtual void onMouseLeftReleased(int x, int y) override; virtual void onMouseLeftReleased(int x, int y) override;
virtual void onMouseMoved(int x, int y) override; virtual void onMouseMoved(int x, int y) override;
private:
IntelliToolSetColorTool* Tool;
}; };
#endif // INTELLITOOLPEN_H #endif // INTELLITOOLPEN_H

View File

@@ -0,0 +1,36 @@
#include "IntelliToolSetColorTool.h"
#include "QDebug"
IntelliToolSetColorTool::IntelliToolSetColorTool(PaintingArea* Area)
:IntelliTool(Area){
firstColor = {255,0,0,255};
secondColor = {0,0,255,255};
}
IntelliToolSetColorTool::~IntelliToolSetColorTool(){
}
void IntelliToolSetColorTool::getColorbar(int firstOrSecondColor = 1){
QString Titel;
QColor newColor;
if(firstOrSecondColor == 1){
Titel = "Choose first Color";
newColor = QColorDialog::getColor(this->firstColor,nullptr,Titel);
this->firstColor = newColor;
qDebug() << "Firstcolor" << this->firstColor;
}
else{
Titel = "Choose second Color";
newColor = QColorDialog::getColor(this->secondColor,nullptr,Titel);
this->secondColor = newColor;
}
}
QColor IntelliToolSetColorTool::getFirstColor(){
return firstColor;
}
QColor IntelliToolSetColorTool::getSecondColor(){
return secondColor;
}

View 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