mirror of
https://github.com/creyD/intelliphoto.git
synced 2026-04-13 03:40:31 +02:00
30 lines
560 B
C++
30 lines
560 B
C++
#ifndef INTELLITOOLSETTINGS_H
|
|
#define INTELLITOOLSETTINGS_H
|
|
|
|
class IntelliToolsettings {
|
|
public:
|
|
/*!
|
|
* \brief The LineStyle enum classifing all ways of drawing a line.
|
|
*/
|
|
enum class LineStyle {
|
|
SOLID_LINE,
|
|
DOTTED_LINE
|
|
};
|
|
IntelliToolsettings();
|
|
virtual ~IntelliToolsettings();
|
|
int getLineWidth();
|
|
void setLineWidth();
|
|
void setLineWidth(int LineWidth);
|
|
int getInnerAlpha();
|
|
void setInnerAlpha();
|
|
void setInnerAlpha(int innerAlpha);
|
|
LineStyle getLinestyle();
|
|
|
|
private:
|
|
int lineWidth;
|
|
int innerAlpha;
|
|
LineStyle Linestyle;
|
|
};
|
|
|
|
#endif // INTELLITOOLSETTINGS_H
|