Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1799)

Unified Diff: debugger/QT/SkDebuggerGUI.h

Issue 829933002: debugger: Make settings widget resizeable (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: address review comments Created 5 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | debugger/QT/SkDebuggerGUI.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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?
« no previous file with comments | « no previous file | debugger/QT/SkDebuggerGUI.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698