| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 Updates the directory widget with the latest directory path stored in | 57 Updates the directory widget with the latest directory path stored in |
| 58 the global class variable fPath. | 58 the global class variable fPath. |
| 59 */ | 59 */ |
| 60 void setupDirectoryWidget(const QString& path); | 60 void setupDirectoryWidget(const QString& path); |
| 61 | 61 |
| 62 /** | 62 /** |
| 63 Loads the specified file. | 63 Loads the specified file. |
| 64 */ | 64 */ |
| 65 void openFile(const QString& filename); | 65 void openFile(const QString& filename); |
| 66 | 66 |
| 67 signals: | 67 Q_SIGNALS: |
| 68 void commandChanged(int command); | 68 void commandChanged(int command); |
| 69 | 69 |
| 70 private slots: | 70 private Q_SLOTS: |
| 71 /** | 71 /** |
| 72 Toggles breakpoint view in the list widget. | 72 Toggles breakpoint view in the list widget. |
| 73 */ | 73 */ |
| 74 void actionBreakpoints(); | 74 void actionBreakpoints(); |
| 75 | 75 |
| 76 /** | 76 /** |
| 77 Cancels the command filter in the list widget. | 77 Cancels the command filter in the list widget. |
| 78 */ | 78 */ |
| 79 void actionCancel(); | 79 void actionCancel(); |
| 80 | 80 |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 330 Fills in the overview pane with text | 330 Fills in the overview pane with text |
| 331 */ | 331 */ |
| 332 void setupOverviewText(const SkTDArray<double>* typeTimes, double totTime, i
nt numRuns); | 332 void setupOverviewText(const SkTDArray<double>* typeTimes, double totTime, i
nt numRuns); |
| 333 | 333 |
| 334 bool isPaused() const { | 334 bool isPaused() const { |
| 335 return fActionPause.isChecked(); | 335 return fActionPause.isChecked(); |
| 336 } | 336 } |
| 337 }; | 337 }; |
| 338 | 338 |
| 339 #endif // SKDEBUGGERUI_H | 339 #endif // SKDEBUGGERUI_H |
| OLD | NEW |