configurable overlay color

This commit is contained in:
gdzhu
2021-08-28 07:38:48 +01:00
committed by Guodong Zhu
parent 687a2eb91a
commit 1fa6eb300c
3 changed files with 28 additions and 4 deletions

View File

@@ -29,6 +29,7 @@ public:
void setAspect(char aspectIn);
void setDebugMode(bool debugModeIn) {debugMode = debugModeIn;}
void setFitAspectAxisToWindow(bool fitAspectAxisToWindowIn) { fitAspectAxisToWindow = fitAspectAxisToWindowIn; }
void setOverlayHexRGB(QString overlayHexRGB);
private:
Ui::MainWindow *ui;
@@ -38,6 +39,7 @@ private:
char aspect = 'a';
bool debugMode = false;
bool fitAspectAxisToWindow = false;
QString overlayHexRGB;
Overlay* overlay;