Lock out CLUT 0-1 editing when Level is not 3.5

This commit is contained in:
G.K.MacGregor
2023-06-14 18:21:23 +01:00
parent 43dcccb00c
commit 27ae092b5e
3 changed files with 68 additions and 10 deletions

View File

@@ -36,18 +36,22 @@ public:
public slots:
void updateColourButton(int);
void setLevel3p5Accepted(bool);
protected:
void showEvent(QShowEvent *);
private slots:
void selectColour(int);
void setLevel3p5Seen(bool);
void updateLevel3p5Cursor();
private:
void resetCLUT(int);
QPushButton *m_colourButton[32], *m_resetButton[4];
QCheckBox *m_showHexValuesCheckBox;
bool m_level3p5Accepted, m_level3p5Seen;
TeletextWidget *m_parentMainWidget;
};