Index: debugger/QT/SkDebuggerGUI.h |
diff --git a/debugger/QT/SkDebuggerGUI.h b/debugger/QT/SkDebuggerGUI.h |
index 3f445500c7801a7c8e18c94080d3d0ce5c644801..6382780c0f38b0cfca218661192d37c554fd1c66 100644 |
--- a/debugger/QT/SkDebuggerGUI.h |
+++ b/debugger/QT/SkDebuggerGUI.h |
@@ -104,11 +104,6 @@ private slots: |
void actionClearDeletes(); |
/** |
- Applies a visible filter to all drawing commands other than the previous. |
- */ |
- void actionCommandFilter(); |
- |
- /** |
Closes the application. |
*/ |
void actionClose(); |
@@ -122,7 +117,7 @@ private slots: |
/** |
Updates the visibility of the GL canvas widget and sample count of the GL surface. |
*/ |
- void actionGLWidget(); |
+ void actionGLSettingsChanged(); |
#endif |
/** |
@@ -137,24 +132,14 @@ private slots: |
void actionPlay(); |
/** |
- Toggles the visibility of the raster canvas widget. |
- */ |
- void actionRasterWidget(bool isToggled); |
- |
- /** |
- Toggles the the overdraw visualization on and off |
+ Sets the visibility of the raster canvas widget according to the settings widget. |
*/ |
- void actionOverdrawVizWidget(bool isToggled); |
+ void actionRasterSettingsChanged(); |
/** |
- Toggles the the mega visualization on and off |
+ Sets the visualization settings according to the settings widget. |
*/ |
- void actionMegaVizWidget(bool isToggled); |
- |
- /** |
- Toggles using path ops to simplify the clip stack |
- */ |
- void actionPathOpsWidget(bool ); |
+ void actionVisualizationsChanged(); |
/** |
Applies the new texture filter override |
@@ -249,6 +234,8 @@ private slots: |
*/ |
void toggleFilter(QString string); |
+ void updateCommand(int newCommand); |
+ void updateHit(int newHit); |
private: |
QSplitter fCentralSplitter; |
QStatusBar fStatusBar; |
@@ -298,6 +285,14 @@ private: |
SkInspectorWidget fInspectorWidget; |
SkSettingsWidget fSettingsWidget; |
+ QFrame fViewStateFrame; |
+ QVBoxLayout fViewStateFrameLayout; |
+ QGroupBox fViewStateGroup; |
+ QFormLayout fViewStateLayout; |
+ QLineEdit fCurrentCommandBox; |
+ QLineEdit fCommandHitBox; |
+ QLineEdit fZoomBox; |
+ |
QString fPath; |
SkString fFileName; |
SkTDArray<bool> fSkipCommands; // has a specific command been deleted? |