mirror of
https://github.com/creyD/intelliphoto.git
synced 2026-04-13 03:40:31 +02:00
Merge branch 'UnitTesting' into dev
This commit is contained in:
@@ -5,10 +5,14 @@
|
||||
#include "QPoint"
|
||||
#include "QColorDialog"
|
||||
|
||||
//for unit testing
|
||||
class UnitTest;
|
||||
|
||||
/*!
|
||||
* \brief The IntelliColorPicker manages the selected colors for one whole project.
|
||||
*/
|
||||
class IntelliColorPicker {
|
||||
friend UnitTest;
|
||||
public:
|
||||
/*!
|
||||
* \brief IntelliColorPicker constructor, setting 2 preset colors, be careful, theese color may change in production.
|
||||
|
||||
@@ -1,9 +1,13 @@
|
||||
#ifndef INTELLIRENDERSETTINGS_H
|
||||
#define INTELLIRENDERSETTINGS_H
|
||||
|
||||
//for unit testing
|
||||
class UnitTest;
|
||||
|
||||
|
||||
class IntelliRenderSettings
|
||||
{
|
||||
friend UnitTest;
|
||||
public:
|
||||
IntelliRenderSettings();
|
||||
|
||||
|
||||
@@ -1,12 +1,18 @@
|
||||
#ifndef INTELLITOOLSETTINGS_H
|
||||
#define INTELLITOOLSETTINGS_H
|
||||
|
||||
//for unit testing
|
||||
class UnitTest;
|
||||
|
||||
class IntelliToolsettings {
|
||||
friend UnitTest;
|
||||
public:
|
||||
IntelliToolsettings();
|
||||
virtual ~IntelliToolsettings();
|
||||
|
||||
int getLineWidth();
|
||||
void setLineWidth(int LineWidth);
|
||||
|
||||
int getInnerAlpha();
|
||||
void setInnerAlpha(int innerAlpha);
|
||||
|
||||
|
||||
@@ -1,6 +1,9 @@
|
||||
#ifndef INTELLITRIANGULATION_H
|
||||
#define INTELLITRIANGULATION_H
|
||||
|
||||
//for unit testing
|
||||
class UnitTest;
|
||||
|
||||
#include <QPoint>
|
||||
#include <vector>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user