| 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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 QListWidget fDirectoryWidget; | 270 QListWidget fDirectoryWidget; |
| 271 | 271 |
| 272 SkDebugger fDebugger; | 272 SkDebugger fDebugger; |
| 273 SkCanvasWidget fCanvasWidget; | 273 SkCanvasWidget fCanvasWidget; |
| 274 SkImageWidget fImageWidget; | 274 SkImageWidget fImageWidget; |
| 275 SkInspectorWidget fInspectorWidget; | 275 SkInspectorWidget fInspectorWidget; |
| 276 SkSettingsWidget fSettingsWidget; | 276 SkSettingsWidget fSettingsWidget; |
| 277 | 277 |
| 278 QString fPath; | 278 QString fPath; |
| 279 SkString fFileName; | 279 SkString fFileName; |
| 280 SkTDArray<size_t> fOffsets; // the offset of each command in the SkPicture | |
| 281 SkTDArray<bool> fSkipCommands; // has a specific command been deleted? | 280 SkTDArray<bool> fSkipCommands; // has a specific command been deleted? |
| 282 bool fDirectoryWidgetActive; | 281 bool fDirectoryWidgetActive; |
| 283 | 282 |
| 284 QMenuBar fMenuBar; | 283 QMenuBar fMenuBar; |
| 285 QMenu fMenuFile; | 284 QMenu fMenuFile; |
| 286 QMenu fMenuEdit; | 285 QMenu fMenuEdit; |
| 287 QMenu fMenuNavigate; | 286 QMenu fMenuNavigate; |
| 288 QMenu fMenuView; | 287 QMenu fMenuView; |
| 289 QMenu fMenuWindows; | 288 QMenu fMenuWindows; |
| 290 | 289 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 /** | 327 /** |
| 329 Render the supplied picture several times tracking the time consumed | 328 Render the supplied picture several times tracking the time consumed |
| 330 by each command. | 329 by each command. |
| 331 */ | 330 */ |
| 332 void run(SkTimedPicture* pict, | 331 void run(SkTimedPicture* pict, |
| 333 sk_tools::PictureRenderer* renderer, | 332 sk_tools::PictureRenderer* renderer, |
| 334 int repeats); | 333 int repeats); |
| 335 }; | 334 }; |
| 336 | 335 |
| 337 #endif // SKDEBUGGERUI_H | 336 #endif // SKDEBUGGERUI_H |
| OLD | NEW |