aboutsummaryrefslogtreecommitdiffhomepage
path: root/debugger/QT/SkSettingsWidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'debugger/QT/SkSettingsWidget.h')
-rw-r--r--debugger/QT/SkSettingsWidget.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/debugger/QT/SkSettingsWidget.h b/debugger/QT/SkSettingsWidget.h
index 950ea16fc8..1afb93ef8f 100644
--- a/debugger/QT/SkSettingsWidget.h
+++ b/debugger/QT/SkSettingsWidget.h
@@ -39,6 +39,14 @@ public:
QRadioButton* getVisibilityButton();
+ QCheckBox* getGLCheckBox() {
+ return &fGLCheckBox;
+ }
+
+ QCheckBox* getRasterCheckBox() {
+ return &fRasterCheckBox;
+ }
+
private slots:
void updateCommand(int newCommand);
void updateHit(int newHit);
@@ -71,6 +79,18 @@ private:
QLineEdit fCommandHitBox;
QHBoxLayout fCommandHitLayout;
+ QLabel fCanvasToggle;
+ QFrame fCanvasFrame;
+ QVBoxLayout fCanvasLayout;
+
+ QHBoxLayout fRasterLayout;
+ QLabel fRasterLabel;
+ QCheckBox fRasterCheckBox;
+
+ QHBoxLayout fGLLayout;
+ QLabel fGLLabel;
+ QCheckBox fGLCheckBox;
+
QLabel fZoomSetting;
QFrame fZoomFrame;
QLineEdit fZoomBox;