| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2012 Google Inc. | 3 * Copyright 2012 Google Inc. |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 #ifndef SKDEBUGGERUI_H | 9 #ifndef SKDEBUGGERUI_H |
| 10 #define SKDEBUGGERUI_H | 10 #define SKDEBUGGERUI_H |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 #include <QtGui/QMainWindow> | 31 #include <QtGui/QMainWindow> |
| 32 #include <QtGui/QSplitter> | 32 #include <QtGui/QSplitter> |
| 33 #include <QtGui/QStatusBar> | 33 #include <QtGui/QStatusBar> |
| 34 #include <QtGui/QToolBar> | 34 #include <QtGui/QToolBar> |
| 35 #include <QtGui/QVBoxLayout> | 35 #include <QtGui/QVBoxLayout> |
| 36 #include <QtGui/QWidget> | 36 #include <QtGui/QWidget> |
| 37 #include <QtGui/QMenu> | 37 #include <QtGui/QMenu> |
| 38 #include <QtGui/QMenuBar> | 38 #include <QtGui/QMenuBar> |
| 39 #include <vector> | 39 #include <vector> |
| 40 | 40 |
| 41 class SkTimedPicture; | |
| 42 namespace sk_tools { | |
| 43 class PictureRenderer; | |
| 44 } | |
| 45 | |
| 46 /** \class SkDebuggerGUI | 41 /** \class SkDebuggerGUI |
| 47 | 42 |
| 48 Container for the UI and it's functions. | 43 Container for the UI and it's functions. |
| 49 */ | 44 */ |
| 50 class SkDebuggerGUI : public QMainWindow { | 45 class SkDebuggerGUI : public QMainWindow { |
| 51 Q_OBJECT | 46 Q_OBJECT |
| 52 | 47 |
| 53 public: | 48 public: |
| 54 /** | 49 /** |
| 55 Constructs the view of the application. | 50 Constructs the view of the application. |
| (...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 Fills in the overview pane with text | 322 Fills in the overview pane with text |
| 328 */ | 323 */ |
| 329 void setupOverviewText(const SkTDArray<double>* typeTimes, double totTime, i
nt numRuns); | 324 void setupOverviewText(const SkTDArray<double>* typeTimes, double totTime, i
nt numRuns); |
| 330 | 325 |
| 331 bool isPaused() const { | 326 bool isPaused() const { |
| 332 return fActionPause.isChecked(); | 327 return fActionPause.isChecked(); |
| 333 } | 328 } |
| 334 }; | 329 }; |
| 335 | 330 |
| 336 #endif // SKDEBUGGERUI_H | 331 #endif // SKDEBUGGERUI_H |
| OLD | NEW |