aboutsummaryrefslogtreecommitdiffhomepage
path: root/debugger/QT/SkDebuggerGUI.h
diff options
context:
space:
mode:
Diffstat (limited to 'debugger/QT/SkDebuggerGUI.h')
-rw-r--r--debugger/QT/SkDebuggerGUI.h18
1 files changed, 15 insertions, 3 deletions
diff --git a/debugger/QT/SkDebuggerGUI.h b/debugger/QT/SkDebuggerGUI.h
index 520aaa84e3..4b8a151d3e 100644
--- a/debugger/QT/SkDebuggerGUI.h
+++ b/debugger/QT/SkDebuggerGUI.h
@@ -49,6 +49,9 @@ public:
~SkDebuggerGUI();
+signals:
+ void commandChanged(int command);
+
private slots:
/**
Toggles breakpoint view in the list widget.
@@ -97,6 +100,11 @@ private slots:
void actionRewind();
/**
+ Sends the scale factor information to the settings widget.
+ */
+ void actionScale(float scaleFactor);
+
+ /**
Toggles the settings widget visibility.
*/
void actionSettings();
@@ -123,6 +131,12 @@ private slots:
void openFile();
/**
+ Toggles whether drawing to a new command requires a double click
+ or simple focus.
+ */
+ void pauseDrawing(int state);
+
+ /**
Executes draw commands up to the selected command
*/
void registerListClick(QListWidgetItem *item);
@@ -184,13 +198,11 @@ private:
QAction* fActionQuit;
QAction* fActionTemp;
- QMenu* fMenuView;
- QAction* fActionToggleCurrentCommand;
-
QMenu* fMenuNavigate;
QAction *fActionGoToLine;
bool fBreakpointsActivated;
+ bool fPause;
/**
Creates the entire UI.