mirror of
https://github.com/creyD/intelliphoto.git
synced 2026-04-13 11:50:31 +02:00
Automated Release Preparation
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
#include "IntelliColorPicker.h"
|
||||
|
||||
IntelliColorPicker::IntelliColorPicker(){
|
||||
initializeColors();
|
||||
initializeColors();
|
||||
}
|
||||
|
||||
IntelliColorPicker::~IntelliColorPicker(){
|
||||
@@ -12,11 +12,11 @@ void IntelliColorPicker::swapColors(){
|
||||
std::swap(firstColor, secondColor);
|
||||
}
|
||||
|
||||
QColor IntelliColorPicker::getFirstColor() const{
|
||||
QColor IntelliColorPicker::getFirstColor() const {
|
||||
return this->firstColor;
|
||||
}
|
||||
|
||||
QColor IntelliColorPicker::getSecondColor() const{
|
||||
QColor IntelliColorPicker::getSecondColor() const {
|
||||
return this->secondColor;
|
||||
}
|
||||
|
||||
@@ -29,6 +29,6 @@ void IntelliColorPicker::setSecondColor(QColor Color){
|
||||
}
|
||||
|
||||
void IntelliColorPicker::initializeColors(){
|
||||
this->firstColor = QColor(255,0,0,255);
|
||||
this->secondColor = QColor(0,0,0,255);
|
||||
this->firstColor = QColor(255,0,0,255);
|
||||
this->secondColor = QColor(0,0,0,255);
|
||||
}
|
||||
|
||||
@@ -12,7 +12,7 @@ class UnitTest;
|
||||
* \brief The IntelliColorPicker manages the selected colors for one whole project.
|
||||
*/
|
||||
class IntelliColorPicker {
|
||||
friend UnitTest;
|
||||
friend UnitTest;
|
||||
public:
|
||||
/*!
|
||||
* \brief IntelliColorPicker constructor, setting 2 preset colors, be careful, theese color may change in production.
|
||||
|
||||
@@ -9,6 +9,6 @@ void IntelliRenderSettings::setFastRendering(bool Updatedsetting){
|
||||
this->fastRenderering = Updatedsetting;
|
||||
}
|
||||
|
||||
bool IntelliRenderSettings::isFastRenderering() const{
|
||||
bool IntelliRenderSettings::isFastRenderering() const {
|
||||
return fastRenderering;
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@ class UnitTest;
|
||||
|
||||
class IntelliRenderSettings
|
||||
{
|
||||
friend UnitTest;
|
||||
friend UnitTest;
|
||||
public:
|
||||
IntelliRenderSettings();
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ IntelliToolsettings::~IntelliToolsettings(){
|
||||
|
||||
}
|
||||
|
||||
int IntelliToolsettings::getLineWidth() const{
|
||||
int IntelliToolsettings::getLineWidth() const {
|
||||
return lineWidth;
|
||||
}
|
||||
|
||||
@@ -25,7 +25,7 @@ void IntelliToolsettings::setLineWidth(int LineWidth){
|
||||
lineWidth = LineWidth;
|
||||
}
|
||||
|
||||
int IntelliToolsettings::getInnerAlpha() const{
|
||||
int IntelliToolsettings::getInnerAlpha() const {
|
||||
return this->innerAlpha;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user