| 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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 SkTDArray<bool> fSkipCommands; // has a specific command been deleted? | 297 SkTDArray<bool> fSkipCommands; // has a specific command been deleted? |
| 298 bool fDirectoryWidgetActive; | 298 bool fDirectoryWidgetActive; |
| 299 | 299 |
| 300 QMenuBar fMenuBar; | 300 QMenuBar fMenuBar; |
| 301 QMenu fMenuFile; | 301 QMenu fMenuFile; |
| 302 QMenu fMenuEdit; | 302 QMenu fMenuEdit; |
| 303 QMenu fMenuNavigate; | 303 QMenu fMenuNavigate; |
| 304 QMenu fMenuView; | 304 QMenu fMenuView; |
| 305 QMenu fMenuWindows; | 305 QMenu fMenuWindows; |
| 306 | 306 |
| 307 bool fBreakpointsActivated; | |
| 308 bool fIndexStyleToggle; | |
| 309 bool fDeletesActivated; | |
| 310 bool fPause; | |
| 311 bool fLoading; | 307 bool fLoading; |
| 312 int fPausedRow; | 308 int fPausedRow; |
| 313 | 309 |
| 314 /** | 310 /** |
| 315 Creates the entire UI. | 311 Creates the entire UI. |
| 316 */ | 312 */ |
| 317 void setupUi(QMainWindow *SkDebuggerGUI); | 313 void setupUi(QMainWindow *SkDebuggerGUI); |
| 318 | 314 |
| 319 /** | 315 /** |
| 320 Pipes a QString in with the location of the filename, proceeds to updati
ng | 316 Pipes a QString in with the location of the filename, proceeds to updati
ng |
| (...skipping 26 matching lines...) Expand all Loading... |
| 347 */ | 343 */ |
| 348 void setupClipStackText(); | 344 void setupClipStackText(); |
| 349 | 345 |
| 350 /** | 346 /** |
| 351 Render the supplied picture several times tracking the time consumed | 347 Render the supplied picture several times tracking the time consumed |
| 352 by each command. | 348 by each command. |
| 353 */ | 349 */ |
| 354 void run(const SkPicture* pict, | 350 void run(const SkPicture* pict, |
| 355 sk_tools::PictureRenderer* renderer, | 351 sk_tools::PictureRenderer* renderer, |
| 356 int repeats); | 352 int repeats); |
| 353 |
| 354 bool isPaused() const { |
| 355 return fActionPause.isChecked(); |
| 356 } |
| 357 }; | 357 }; |
| 358 | 358 |
| 359 #endif // SKDEBUGGERUI_H | 359 #endif // SKDEBUGGERUI_H |
| OLD | NEW |