aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/mdbviz/mainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/mdbviz/mainwindow.h')
-rw-r--r--tools/mdbviz/mainwindow.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/mdbviz/mainwindow.h b/tools/mdbviz/mainwindow.h
index 80c86b0471..59e7b98c38 100644
--- a/tools/mdbviz/mainwindow.h
+++ b/tools/mdbviz/mainwindow.h
@@ -11,7 +11,7 @@
#include <memory>
#include <QMainWindow>
-#include "SkDebugCanvas.h"
+#include "Model.h"
class QLabel;
class QListWidget;
@@ -27,10 +27,13 @@ public:
private slots:
void openFile();
void about();
+ void onCurrentRowChanged(int currentRow);
private:
void loadFile(const QString &fileName);
void setupOpListWidget();
+ void presentCurrentRenderState();
+
void createActions();
void createStatusBar();
@@ -46,7 +49,7 @@ private:
QMenu* fViewMenu;
- std::unique_ptr<SkDebugCanvas> fDebugCanvas;
+ Model fModel;
};
#endif