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 |
11 | 11 |
12 | 12 |
13 #include "SkCanvas.h" | 13 #include "SkCanvas.h" |
14 #include "SkCanvasWidget.h" | 14 #include "SkCanvasWidget.h" |
15 #include "SkDebugger.h" | 15 #include "SkDebugger.h" |
16 #include "SkGLWidget.h" | 16 #include "SkGLWidget.h" |
17 #include "SkListWidget.h" | 17 #include "SkListWidget.h" |
18 #include "SkInspectorWidget.h" | 18 #include "SkInspectorWidget.h" |
19 #include "SkRasterWidget.h" | 19 #include "SkRasterWidget.h" |
20 #include "SkImageWidget.h" | 20 #include "SkDrawGeometryWidget.h" |
21 #include "SkSettingsWidget.h" | 21 #include "SkSettingsWidget.h" |
22 #include <QtCore/QVariant> | 22 #include <QtCore/QVariant> |
23 #include <QtGui/QAction> | 23 #include <QtGui/QAction> |
24 #include <QtGui/QApplication> | 24 #include <QtGui/QApplication> |
25 #include <QtGui/QButtonGroup> | 25 #include <QtGui/QButtonGroup> |
26 #include <QtGui/QHBoxLayout> | 26 #include <QtGui/QHBoxLayout> |
27 #include <QtGui/QHeaderView> | 27 #include <QtGui/QHeaderView> |
28 #include <QtGui/QListView> | 28 #include <QtGui/QListView> |
29 #include <QtGui/QListWidget> | 29 #include <QtGui/QListWidget> |
30 #include <QtGui/QMainWindow> | 30 #include <QtGui/QMainWindow> |
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 QWidget fMainAndRightColumnWidget; | 274 QWidget fMainAndRightColumnWidget; |
275 QVBoxLayout fMainAndRightColumnLayout; | 275 QVBoxLayout fMainAndRightColumnLayout; |
276 QHBoxLayout fCanvasSettingsAndImageLayout; | 276 QHBoxLayout fCanvasSettingsAndImageLayout; |
277 QVBoxLayout fSettingsAndImageLayout; | 277 QVBoxLayout fSettingsAndImageLayout; |
278 | 278 |
279 QListWidget fListWidget; | 279 QListWidget fListWidget; |
280 QListWidget fDirectoryWidget; | 280 QListWidget fDirectoryWidget; |
281 | 281 |
282 SkDebugger fDebugger; | 282 SkDebugger fDebugger; |
283 SkCanvasWidget fCanvasWidget; | 283 SkCanvasWidget fCanvasWidget; |
284 SkImageWidget fImageWidget; | 284 |
| 285 QGroupBox fDrawGeometryGroup; |
| 286 QVBoxLayout fDrawGeometryGroupLayout; |
| 287 SkDrawGeometryWidget fDrawGeometryWidget; |
| 288 |
285 SkInspectorWidget fInspectorWidget; | 289 SkInspectorWidget fInspectorWidget; |
286 SkSettingsWidget fSettingsWidget; | 290 SkSettingsWidget fSettingsWidget; |
287 | 291 |
288 QFrame fViewStateFrame; | 292 QFrame fViewStateFrame; |
289 QVBoxLayout fViewStateFrameLayout; | 293 QVBoxLayout fViewStateFrameLayout; |
290 QGroupBox fViewStateGroup; | 294 QGroupBox fViewStateGroup; |
291 QFormLayout fViewStateLayout; | 295 QFormLayout fViewStateLayout; |
292 QLineEdit fCurrentCommandBox; | 296 QLineEdit fCurrentCommandBox; |
293 QLineEdit fCommandHitBox; | 297 QLineEdit fCommandHitBox; |
294 QLineEdit fZoomBox; | 298 QLineEdit fZoomBox; |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
351 /** | 355 /** |
352 Render the supplied picture several times tracking the time consumed | 356 Render the supplied picture several times tracking the time consumed |
353 by each command. | 357 by each command. |
354 */ | 358 */ |
355 void run(const SkPicture* pict, | 359 void run(const SkPicture* pict, |
356 sk_tools::PictureRenderer* renderer, | 360 sk_tools::PictureRenderer* renderer, |
357 int repeats); | 361 int repeats); |
358 }; | 362 }; |
359 | 363 |
360 #endif // SKDEBUGGERUI_H | 364 #endif // SKDEBUGGERUI_H |
OLD | NEW |