blob: 0d009b3ffa57883df5b8609afe4b908e254b41c7 [file] [log] [blame]
chudy@google.com902ebe52012-06-29 14:21:22 +00001/*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
chudy@google.com902ebe52012-06-29 14:21:22 +00008#include "SkDebuggerGUI.h"
fmalita3f0424f2015-11-02 09:32:54 -08009#include "SkPicture.h"
kkinnunencfdc0e32015-01-13 22:49:02 -080010#include <QListWidgetItem>
11#include <QtGui>
robertphillips3e5c2b12015-03-23 05:46:51 -070012#include "sk_tool_utils.h"
robertphillips@google.come174a8b2012-11-27 16:04:42 +000013
chudy@google.com902ebe52012-06-29 14:21:22 +000014SkDebuggerGUI::SkDebuggerGUI(QWidget *parent) :
chudy@google.comc432f002012-07-10 13:19:25 +000015 QMainWindow(parent)
commit-bot@chromium.orgbcd431e2013-11-21 13:41:37 +000016 , fCentralSplitter(this)
chudy@google.com2d537a12012-07-31 12:49:52 +000017 , fStatusBar(this)
18 , fToolBar(this)
chudy@google.comc432f002012-07-10 13:19:25 +000019 , fActionOpen(this)
20 , fActionBreakpoint(this)
21 , fActionCancel(this)
chudy@google.com7e4cfbf2012-07-17 15:40:51 +000022 , fActionClearBreakpoints(this)
chudy@google.come504de02012-07-16 18:35:23 +000023 , fActionClearDeletes(this)
chudy@google.comc432f002012-07-10 13:19:25 +000024 , fActionClose(this)
chudy@google.come504de02012-07-16 18:35:23 +000025 , fActionCreateBreakpoint(this)
chudy@google.comc432f002012-07-10 13:19:25 +000026 , fActionDelete(this)
27 , fActionDirectory(this)
28 , fActionGoToLine(this)
29 , fActionInspector(this)
bungeman@google.com2ff6d1d2013-07-01 14:24:12 +000030 , fActionSettings(this)
chudy@google.comc432f002012-07-10 13:19:25 +000031 , fActionPlay(this)
chudy@google.come504de02012-07-16 18:35:23 +000032 , fActionPause(this)
chudy@google.comc432f002012-07-10 13:19:25 +000033 , fActionRewind(this)
chudy@google.com0ab03392012-07-28 20:16:11 +000034 , fActionSave(this)
35 , fActionSaveAs(this)
chudy@google.com7e4cfbf2012-07-17 15:40:51 +000036 , fActionShowDeletes(this)
chudy@google.comc432f002012-07-10 13:19:25 +000037 , fActionStepBack(this)
38 , fActionStepForward(this)
chudy@google.coma1226312012-07-26 20:26:44 +000039 , fActionZoomIn(this)
40 , fActionZoomOut(this)
41 , fMapper(this)
commit-bot@chromium.orgbcd431e2013-11-21 13:41:37 +000042 , fListWidget(&fCentralSplitter)
43 , fDirectoryWidget(&fCentralSplitter)
chudy@google.com607357f2012-08-07 16:12:23 +000044 , fCanvasWidget(this, &fDebugger)
kkinnunen63a47022014-12-30 23:03:56 -080045 , fDrawCommandGeometryWidget(&fDebugger)
chudy@google.comc432f002012-07-10 13:19:25 +000046 , fMenuBar(this)
47 , fMenuFile(this)
48 , fMenuNavigate(this)
49 , fMenuView(this)
chudy@google.comd3058f52012-07-19 13:41:27 +000050 , fLoading(false)
chudy@google.comc432f002012-07-10 13:19:25 +000051{
chudy@google.com902ebe52012-06-29 14:21:22 +000052 setupUi(this);
robertphillips@google.comdd4b7452013-01-22 19:38:46 +000053 fListWidget.setSelectionMode(QAbstractItemView::ExtendedSelection);
kkinnunen0cfeaf32015-01-07 07:33:46 -080054 connect(&fListWidget, SIGNAL(currentItemChanged(QListWidgetItem*, QListWidgetItem*)), this,
55 SLOT(updateDrawCommandInfo()));
chudy@google.comc432f002012-07-10 13:19:25 +000056 connect(&fActionOpen, SIGNAL(triggered()), this, SLOT(openFile()));
chudy@google.comea5488b2012-07-26 19:38:22 +000057 connect(&fActionDirectory, SIGNAL(triggered()), this, SLOT(toggleDirectory()));
58 connect(&fDirectoryWidget, SIGNAL(currentItemChanged(QListWidgetItem*, QListWidgetItem*)), this, SLOT(loadFile(QListWidgetItem *)));
djsollena7451862015-11-18 13:00:21 -080059 connect(&fDirectoryWatcher, SIGNAL(directoryChanged(QString)), this, SLOT(populateDirectoryWidget()));
chudy@google.comc432f002012-07-10 13:19:25 +000060 connect(&fActionDelete, SIGNAL(triggered()), this, SLOT(actionDelete()));
chudy@google.comea5488b2012-07-26 19:38:22 +000061 connect(&fListWidget, SIGNAL(itemDoubleClicked(QListWidgetItem*)), this, SLOT(toggleBreakpoint()));
chudy@google.comc432f002012-07-10 13:19:25 +000062 connect(&fActionRewind, SIGNAL(triggered()), this, SLOT(actionRewind()));
63 connect(&fActionPlay, SIGNAL(triggered()), this, SLOT(actionPlay()));
64 connect(&fActionStepBack, SIGNAL(triggered()), this, SLOT(actionStepBack()));
chudy@google.comea5488b2012-07-26 19:38:22 +000065 connect(&fActionStepForward, SIGNAL(triggered()), this, SLOT(actionStepForward()));
66 connect(&fActionBreakpoint, SIGNAL(triggered()), this, SLOT(actionBreakpoints()));
67 connect(&fActionInspector, SIGNAL(triggered()), this, SLOT(actionInspector()));
bungeman@google.com2ff6d1d2013-07-01 14:24:12 +000068 connect(&fActionSettings, SIGNAL(triggered()), this, SLOT(actionSettings()));
chudy@google.comea5488b2012-07-26 19:38:22 +000069 connect(&fFilter, SIGNAL(activated(QString)), this, SLOT(toggleFilter(QString)));
chudy@google.comc432f002012-07-10 13:19:25 +000070 connect(&fActionCancel, SIGNAL(triggered()), this, SLOT(actionCancel()));
chudy@google.com7e4cfbf2012-07-17 15:40:51 +000071 connect(&fActionClearBreakpoints, SIGNAL(triggered()), this, SLOT(actionClearBreakpoints()));
72 connect(&fActionClearDeletes, SIGNAL(triggered()), this, SLOT(actionClearDeletes()));
chudy@google.comc432f002012-07-10 13:19:25 +000073 connect(&fActionClose, SIGNAL(triggered()), this, SLOT(actionClose()));
robertphillips@google.come8fe4bc2013-02-13 13:26:13 +000074#if SK_SUPPORT_GPU
kkinnunen41c79cc2014-12-30 22:49:58 -080075 connect(&fSettingsWidget, SIGNAL(glSettingsChanged()), this, SLOT(actionGLSettingsChanged()));
robertphillips@google.come8fe4bc2013-02-13 13:26:13 +000076#endif
kkinnunen41c79cc2014-12-30 22:49:58 -080077 connect(&fSettingsWidget, SIGNAL(rasterSettingsChanged()), this, SLOT(actionRasterSettingsChanged()));
78 connect(&fSettingsWidget, SIGNAL(visualizationsChanged()), this, SLOT(actionVisualizationsChanged()));
robertphillips@google.com32bbcf82013-10-17 17:56:10 +000079 connect(&fSettingsWidget, SIGNAL(texFilterSettingsChanged()), this, SLOT(actionTextureFilter()));
chudy@google.comea5488b2012-07-26 19:38:22 +000080 connect(&fActionPause, SIGNAL(toggled(bool)), this, SLOT(pauseDrawing(bool)));
chudy@google.come504de02012-07-16 18:35:23 +000081 connect(&fActionCreateBreakpoint, SIGNAL(activated()), this, SLOT(toggleBreakpoint()));
chudy@google.com7e4cfbf2012-07-17 15:40:51 +000082 connect(&fActionShowDeletes, SIGNAL(triggered()), this, SLOT(showDeletes()));
chudy@google.comea5488b2012-07-26 19:38:22 +000083 connect(&fCanvasWidget, SIGNAL(hitChanged(int)), this, SLOT(selectCommand(int)));
kkinnunen41c79cc2014-12-30 22:49:58 -080084 connect(&fCanvasWidget, SIGNAL(hitChanged(int)), this, SLOT(updateHit(int)));
chudy@google.comea5488b2012-07-26 19:38:22 +000085 connect(&fCanvasWidget, SIGNAL(scaleFactorChanged(float)), this, SLOT(actionScale(float)));
kkinnunen63a47022014-12-30 23:03:56 -080086
chudy@google.com0ab03392012-07-28 20:16:11 +000087 connect(&fActionSaveAs, SIGNAL(triggered()), this, SLOT(actionSaveAs()));
88 connect(&fActionSave, SIGNAL(triggered()), this, SLOT(actionSave()));
chudy@google.com7e4cfbf2012-07-17 15:40:51 +000089
bungeman@google.come8cc6e82013-01-17 16:30:56 +000090 fMapper.setMapping(&fActionZoomIn, SkCanvasWidget::kIn_ZoomCommand);
91 fMapper.setMapping(&fActionZoomOut, SkCanvasWidget::kOut_ZoomCommand);
chudy@google.coma1226312012-07-26 20:26:44 +000092
93 connect(&fActionZoomIn, SIGNAL(triggered()), &fMapper, SLOT(map()));
94 connect(&fActionZoomOut, SIGNAL(triggered()), &fMapper, SLOT(map()));
bungeman@google.come8cc6e82013-01-17 16:30:56 +000095 connect(&fMapper, SIGNAL(mapped(int)), &fCanvasWidget, SLOT(zoom(int)));
chudy@google.coma1226312012-07-26 20:26:44 +000096
kkinnunen41c79cc2014-12-30 22:49:58 -080097 fViewStateFrame.setDisabled(true);
chudy@google.com7e4cfbf2012-07-17 15:40:51 +000098 fInspectorWidget.setDisabled(true);
chudy@google.comd3058f52012-07-19 13:41:27 +000099 fMenuEdit.setDisabled(true);
100 fMenuNavigate.setDisabled(true);
101 fMenuView.setDisabled(true);
chudy@google.combbad34d2012-08-13 14:26:36 +0000102}
chudy@google.com902ebe52012-06-29 14:21:22 +0000103
104void SkDebuggerGUI::actionBreakpoints() {
kkinnunenf3a9e992015-01-05 01:14:11 -0800105 bool breakpointsActivated = fActionBreakpoint.isChecked();
chudy@google.comc432f002012-07-10 13:19:25 +0000106 for (int row = 0; row < fListWidget.count(); row++) {
107 QListWidgetItem *item = fListWidget.item(row);
kkinnunenf3a9e992015-01-05 01:14:11 -0800108 item->setHidden(item->checkState() == Qt::Unchecked && breakpointsActivated);
chudy@google.com7e4cfbf2012-07-17 15:40:51 +0000109 }
110}
chudy@google.com902ebe52012-06-29 14:21:22 +0000111
chudy@google.com7e4cfbf2012-07-17 15:40:51 +0000112void SkDebuggerGUI::showDeletes() {
kkinnunenf3a9e992015-01-05 01:14:11 -0800113 bool deletesActivated = fActionShowDeletes.isChecked();
chudy@google.com7e4cfbf2012-07-17 15:40:51 +0000114 for (int row = 0; row < fListWidget.count(); row++) {
115 QListWidgetItem *item = fListWidget.item(row);
kkinnunenf3a9e992015-01-05 01:14:11 -0800116 item->setHidden(fDebugger.isCommandVisible(row) && deletesActivated);
chudy@google.com902ebe52012-06-29 14:21:22 +0000117 }
118}
robertphillips@google.comd26c7062012-11-12 20:42:12 +0000119
chudy@google.com902ebe52012-06-29 14:21:22 +0000120void SkDebuggerGUI::actionCancel() {
chudy@google.comc432f002012-07-10 13:19:25 +0000121 for (int row = 0; row < fListWidget.count(); row++) {
122 fListWidget.item(row)->setHidden(false);
chudy@google.com902ebe52012-06-29 14:21:22 +0000123 }
124}
125
chudy@google.com7e4cfbf2012-07-17 15:40:51 +0000126void SkDebuggerGUI::actionClearBreakpoints() {
127 for (int row = 0; row < fListWidget.count(); row++) {
128 QListWidgetItem* item = fListWidget.item(row);
129 item->setCheckState(Qt::Unchecked);
130 item->setData(Qt::DecorationRole,
robertphillips@google.com8e41a162012-11-19 17:39:18 +0000131 QPixmap(":/blank.png"));
chudy@google.com7e4cfbf2012-07-17 15:40:51 +0000132 }
133}
134
135void SkDebuggerGUI::actionClearDeletes() {
136 for (int row = 0; row < fListWidget.count(); row++) {
137 QListWidgetItem* item = fListWidget.item(row);
robertphillips@google.com8e41a162012-11-19 17:39:18 +0000138 item->setData(Qt::UserRole + 2, QPixmap(":/blank.png"));
chudy@google.com607357f2012-08-07 16:12:23 +0000139 fDebugger.setCommandVisible(row, true);
robertphillips@google.com5f971142012-12-07 20:48:56 +0000140 fSkipCommands[row] = false;
chudy@google.com7e4cfbf2012-07-17 15:40:51 +0000141 }
kkinnunencfdc0e32015-01-13 22:49:02 -0800142 this->updateImage();
chudy@google.com7e4cfbf2012-07-17 15:40:51 +0000143}
144
chudy@google.com902ebe52012-06-29 14:21:22 +0000145void SkDebuggerGUI::actionClose() {
146 this->close();
147}
148
149void SkDebuggerGUI::actionDelete() {
chudy@google.com7e4cfbf2012-07-17 15:40:51 +0000150
robertphillips@google.comdd4b7452013-01-22 19:38:46 +0000151 for (int row = 0; row < fListWidget.count(); ++row) {
152 QListWidgetItem* item = fListWidget.item(row);
153
154 if (!item->isSelected()) {
155 continue;
156 }
157
158 if (fDebugger.isCommandVisible(row)) {
159 item->setData(Qt::UserRole + 2, QPixmap(":/delete.png"));
160 fDebugger.setCommandVisible(row, false);
161 fSkipCommands[row] = true;
162 } else {
163 item->setData(Qt::UserRole + 2, QPixmap(":/blank.png"));
164 fDebugger.setCommandVisible(row, true);
165 fSkipCommands[row] = false;
166 }
chudy@google.com7e4cfbf2012-07-17 15:40:51 +0000167 }
168
kkinnunencfdc0e32015-01-13 22:49:02 -0800169 this->updateImage();
chudy@google.com902ebe52012-06-29 14:21:22 +0000170}
171
robertphillips@google.come8fe4bc2013-02-13 13:26:13 +0000172#if SK_SUPPORT_GPU
kkinnunen41c79cc2014-12-30 22:49:58 -0800173void SkDebuggerGUI::actionGLSettingsChanged() {
commit-bot@chromium.orgfde1e7c2013-08-02 13:59:50 +0000174 bool isToggled = fSettingsWidget.isGLActive();
175 if (isToggled) {
176 fCanvasWidget.setGLSampleCount(fSettingsWidget.getGLSampleCount());
177 }
chudy@google.comea5488b2012-07-26 19:38:22 +0000178 fCanvasWidget.setWidgetVisibility(SkCanvasWidget::kGPU_WidgetType, !isToggled);
179}
robertphillips@google.come8fe4bc2013-02-13 13:26:13 +0000180#endif
chudy@google.comea5488b2012-07-26 19:38:22 +0000181
chudy@google.com902ebe52012-06-29 14:21:22 +0000182void SkDebuggerGUI::actionInspector() {
kkinnunen41c79cc2014-12-30 22:49:58 -0800183 bool newState = !fInspectorWidget.isHidden();
184
185 fInspectorWidget.setHidden(newState);
186 fViewStateFrame.setHidden(newState);
kkinnunen63a47022014-12-30 23:03:56 -0800187 fDrawCommandGeometryWidget.setHidden(newState);
chudy@google.com902ebe52012-06-29 14:21:22 +0000188}
189
190void SkDebuggerGUI::actionPlay() {
chudy@google.comc432f002012-07-10 13:19:25 +0000191 for (int row = fListWidget.currentRow() + 1; row < fListWidget.count();
chudy@google.com7dcae672012-07-09 20:26:53 +0000192 row++) {
chudy@google.comc432f002012-07-10 13:19:25 +0000193 QListWidgetItem *item = fListWidget.item(row);
chudy@google.com902ebe52012-06-29 14:21:22 +0000194 if (item->checkState() == Qt::Checked) {
chudy@google.comc432f002012-07-10 13:19:25 +0000195 fListWidget.setCurrentItem(item);
chudy@google.com902ebe52012-06-29 14:21:22 +0000196 return;
197 }
198 }
chudy@google.comc432f002012-07-10 13:19:25 +0000199 fListWidget.setCurrentRow(fListWidget.count() - 1);
chudy@google.com902ebe52012-06-29 14:21:22 +0000200}
201
kkinnunen41c79cc2014-12-30 22:49:58 -0800202void SkDebuggerGUI::actionRasterSettingsChanged() {
203 fCanvasWidget.setWidgetVisibility(SkCanvasWidget::kRaster_8888_WidgetType,
204 !fSettingsWidget.isRasterEnabled());
205 fDebugger.setOverdrawViz(fSettingsWidget.isOverdrawVizEnabled());
kkinnunencfdc0e32015-01-13 22:49:02 -0800206 this->updateImage();
robertphillips@google.comf4741c12013-02-06 20:13:54 +0000207}
208
kkinnunen41c79cc2014-12-30 22:49:58 -0800209void SkDebuggerGUI::actionVisualizationsChanged() {
210 fDebugger.setMegaViz(fSettingsWidget.isMegaVizEnabled());
211 fDebugger.setPathOps(fSettingsWidget.isPathOpsEnabled());
212 fDebugger.highlightCurrentCommand(fSettingsWidget.isVisibilityFilterEnabled());
kkinnunencfdc0e32015-01-13 22:49:02 -0800213 this->updateImage();
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000214}
215
robertphillips@google.com32bbcf82013-10-17 17:56:10 +0000216void SkDebuggerGUI::actionTextureFilter() {
reede7903c72015-03-16 10:26:13 -0700217 SkFilterQuality quality;
218 bool enabled = fSettingsWidget.getFilterOverride(&quality);
219 fDebugger.setTexFilterOverride(enabled, quality);
robertphillips@google.com32bbcf82013-10-17 17:56:10 +0000220 fCanvasWidget.update();
221}
222
chudy@google.com902ebe52012-06-29 14:21:22 +0000223void SkDebuggerGUI::actionRewind() {
chudy@google.come504de02012-07-16 18:35:23 +0000224 fListWidget.setCurrentRow(0);
chudy@google.com902ebe52012-06-29 14:21:22 +0000225}
226
chudy@google.com0ab03392012-07-28 20:16:11 +0000227void SkDebuggerGUI::actionSave() {
robertphillips@google.come219baf2013-01-28 19:25:43 +0000228 fFileName = fPath.toAscii().data();
robertphillips@google.comd26c7062012-11-12 20:42:12 +0000229 fFileName.append("/");
robertphillips@google.come219baf2013-01-28 19:25:43 +0000230 fFileName.append(fDirectoryWidget.currentItem()->text().toAscii().data());
robertphillips@google.comd26c7062012-11-12 20:42:12 +0000231 saveToFile(fFileName);
chudy@google.com0ab03392012-07-28 20:16:11 +0000232}
233
234void SkDebuggerGUI::actionSaveAs() {
235 QString filename = QFileDialog::getSaveFileName(this, "Save File", "",
236 "Skia Picture (*skp)");
chudy@google.com38b08ce2012-07-28 23:26:10 +0000237 if (!filename.endsWith(".skp", Qt::CaseInsensitive)) {
chudy@google.com0ab03392012-07-28 20:16:11 +0000238 filename.append(".skp");
239 }
djsollen@google.comc3c82162012-11-13 18:35:10 +0000240 saveToFile(SkString(filename.toAscii().data()));
chudy@google.com0ab03392012-07-28 20:16:11 +0000241}
242
chudy@google.com7dcae672012-07-09 20:26:53 +0000243void SkDebuggerGUI::actionScale(float scaleFactor) {
kkinnunen41c79cc2014-12-30 22:49:58 -0800244 fZoomBox.setText(QString::number(scaleFactor * 100, 'f', 0).append("%"));
chudy@google.com7dcae672012-07-09 20:26:53 +0000245}
246
chudy@google.com902ebe52012-06-29 14:21:22 +0000247void SkDebuggerGUI::actionSettings() {
chudy@google.comc432f002012-07-10 13:19:25 +0000248 if (fSettingsWidget.isHidden()) {
249 fSettingsWidget.setHidden(false);
chudy@google.com902ebe52012-06-29 14:21:22 +0000250 } else {
chudy@google.comc432f002012-07-10 13:19:25 +0000251 fSettingsWidget.setHidden(true);
chudy@google.com902ebe52012-06-29 14:21:22 +0000252 }
253}
254
255void SkDebuggerGUI::actionStepBack() {
chudy@google.comc432f002012-07-10 13:19:25 +0000256 int currentRow = fListWidget.currentRow();
chudy@google.com902ebe52012-06-29 14:21:22 +0000257 if (currentRow != 0) {
chudy@google.comc432f002012-07-10 13:19:25 +0000258 fListWidget.setCurrentRow(currentRow - 1);
chudy@google.com902ebe52012-06-29 14:21:22 +0000259 }
260}
261
262void SkDebuggerGUI::actionStepForward() {
chudy@google.comc432f002012-07-10 13:19:25 +0000263 int currentRow = fListWidget.currentRow();
chudy@google.com902ebe52012-06-29 14:21:22 +0000264 QString curRow = QString::number(currentRow);
chudy@google.comc432f002012-07-10 13:19:25 +0000265 QString curCount = QString::number(fListWidget.count());
266 if (currentRow < fListWidget.count() - 1) {
267 fListWidget.setCurrentRow(currentRow + 1);
chudy@google.com902ebe52012-06-29 14:21:22 +0000268 }
269}
270
chudy@google.coma9e937c2012-08-03 17:32:05 +0000271void SkDebuggerGUI::drawComplete() {
kkinnunencfdc0e32015-01-13 22:49:02 -0800272 SkString clipStack;
273 fDebugger.getClipStackText(&clipStack);
274 fInspectorWidget.setText(clipStack.c_str(), SkInspectorWidget::kClipStack_TabType);
275
chudy@google.com607357f2012-08-07 16:12:23 +0000276 fInspectorWidget.setMatrix(fDebugger.getCurrentMatrix());
277 fInspectorWidget.setClip(fDebugger.getCurrentClip());
chudy@google.coma9e937c2012-08-03 17:32:05 +0000278}
279
robertphillips@google.comd26c7062012-11-12 20:42:12 +0000280void SkDebuggerGUI::saveToFile(const SkString& filename) {
281 SkFILEWStream file(filename.c_str());
robertphillips@google.com25bc2f82013-01-22 18:03:56 +0000282 SkAutoTUnref<SkPicture> copy(fDebugger.copyPicture());
283
halcanaryf2848b62015-12-10 12:40:23 -0800284 SkAutoTUnref<SkPixelSerializer> serializer(
285 SkImageEncoder::CreatePixelSerializer());
286 copy->serialize(&file, serializer);
chudy@google.com0ab03392012-07-28 20:16:11 +0000287}
288
chudy@google.com902ebe52012-06-29 14:21:22 +0000289void SkDebuggerGUI::loadFile(QListWidgetItem *item) {
djsollena7451862015-11-18 13:00:21 -0800290 if (item == nullptr) {
291 return;
292 }
293
294 SkString fileName(fPath.toAscii().data());
295 // don't add a '/' to files in the local directory
296 if (fileName.size() > 0) {
297 fileName.append("/");
298 }
299 fileName.append(item->text().toAscii().data());
300
301 if (!fileName.equals(fFileName)) {
302 fFileName = fileName;
robertphillips@google.comd26c7062012-11-12 20:42:12 +0000303 loadPicture(fFileName);
chudy@google.com902ebe52012-06-29 14:21:22 +0000304 }
305}
306
307void SkDebuggerGUI::openFile() {
robertphillips@google.comd26c7062012-11-12 20:42:12 +0000308 QString temp = QFileDialog::getOpenFileName(this, tr("Open File"), "",
chudy@google.com7dcae672012-07-09 20:26:53 +0000309 tr("Files (*.*)"));
robertphillips@google.comff6e6ba2013-01-28 17:43:26 +0000310 openFile(temp);
311}
312
313void SkDebuggerGUI::openFile(const QString &filename) {
robertphillips@google.comff6e6ba2013-01-28 17:43:26 +0000314 if (!filename.isEmpty()) {
315 QFileInfo pathInfo(filename);
316 loadPicture(SkString(filename.toAscii().data()));
317 setupDirectoryWidget(pathInfo.path());
chudy@google.com902ebe52012-06-29 14:21:22 +0000318 }
chudy@google.com902ebe52012-06-29 14:21:22 +0000319}
320
chudy@google.comc432f002012-07-10 13:19:25 +0000321void SkDebuggerGUI::pauseDrawing(bool isPaused) {
chudy@google.com607357f2012-08-07 16:12:23 +0000322 fPausedRow = fListWidget.currentRow();
kkinnunencfdc0e32015-01-13 22:49:02 -0800323 this->updateDrawCommandInfo();
chudy@google.com7dcae672012-07-09 20:26:53 +0000324}
325
kkinnunen0cfeaf32015-01-07 07:33:46 -0800326void SkDebuggerGUI::updateDrawCommandInfo() {
327 int currentRow = -1;
328 if (!fLoading) {
329 currentRow = fListWidget.currentRow();
330 }
331 if (currentRow == -1) {
332 fInspectorWidget.setText("", SkInspectorWidget::kDetail_TabType);
333 fInspectorWidget.setText("", SkInspectorWidget::kClipStack_TabType);
334 fCurrentCommandBox.setText("");
335 fDrawCommandGeometryWidget.setDrawCommandIndex(-1);
336 } else {
kkinnunencfdc0e32015-01-13 22:49:02 -0800337 this->updateImage();
338
kkinnunen0cfeaf32015-01-07 07:33:46 -0800339 const SkTDArray<SkString*> *currInfo = fDebugger.getCommandInfo(currentRow);
chudy@google.comd3058f52012-07-19 13:41:27 +0000340
kkinnunen0cfeaf32015-01-07 07:33:46 -0800341 /* TODO(chudy): Add command type before parameters. Rename v
342 * to something more informative. */
343 if (currInfo) {
344 QString info;
345 info.append("<b>Parameters: </b><br/>");
346 for (int i = 0; i < currInfo->count(); i++) {
347 info.append(QString((*currInfo)[i]->c_str()));
348 info.append("<br/>");
chudy@google.comd3058f52012-07-19 13:41:27 +0000349 }
kkinnunen0cfeaf32015-01-07 07:33:46 -0800350 fInspectorWidget.setText(info, SkInspectorWidget::kDetail_TabType);
chudy@google.comd3058f52012-07-19 13:41:27 +0000351 }
chudy@google.comea5488b2012-07-26 19:38:22 +0000352
kkinnunen0cfeaf32015-01-07 07:33:46 -0800353 fCurrentCommandBox.setText(QString::number(currentRow));
354
355 fDrawCommandGeometryWidget.setDrawCommandIndex(currentRow);
356
357 fInspectorWidget.setDisabled(false);
358 fViewStateFrame.setDisabled(false);
chudy@google.com902ebe52012-06-29 14:21:22 +0000359 }
360}
361
chudy@google.com9ca9bfe2012-07-12 21:58:14 +0000362void SkDebuggerGUI::selectCommand(int command) {
kkinnunenf3a9e992015-01-05 01:14:11 -0800363 if (this->isPaused()) {
chudy@google.com9ca9bfe2012-07-12 21:58:14 +0000364 fListWidget.setCurrentRow(command);
365 }
366}
367
chudy@google.com902ebe52012-06-29 14:21:22 +0000368void SkDebuggerGUI::toggleBreakpoint() {
chudy@google.comc432f002012-07-10 13:19:25 +0000369 QListWidgetItem* item = fListWidget.currentItem();
chudy@google.com902ebe52012-06-29 14:21:22 +0000370 if (item->checkState() == Qt::Unchecked) {
371 item->setCheckState(Qt::Checked);
chudy@google.come565de42012-07-12 14:15:54 +0000372 item->setData(Qt::DecorationRole,
robertphillips@google.com8e41a162012-11-19 17:39:18 +0000373 QPixmap(":/breakpoint_16x16.png"));
chudy@google.com902ebe52012-06-29 14:21:22 +0000374 } else {
chudy@google.com902ebe52012-06-29 14:21:22 +0000375 item->setCheckState(Qt::Unchecked);
chudy@google.come565de42012-07-12 14:15:54 +0000376 item->setData(Qt::DecorationRole,
robertphillips@google.com8e41a162012-11-19 17:39:18 +0000377 QPixmap(":/blank.png"));
chudy@google.com902ebe52012-06-29 14:21:22 +0000378 }
379}
380
381void SkDebuggerGUI::toggleDirectory() {
chudy@google.com607357f2012-08-07 16:12:23 +0000382 fDirectoryWidget.setHidden(!fDirectoryWidget.isHidden());
chudy@google.com902ebe52012-06-29 14:21:22 +0000383}
384
385void SkDebuggerGUI::toggleFilter(QString string) {
chudy@google.comc432f002012-07-10 13:19:25 +0000386 for (int row = 0; row < fListWidget.count(); row++) {
387 QListWidgetItem *item = fListWidget.item(row);
chudy@google.com607357f2012-08-07 16:12:23 +0000388 item->setHidden(item->text() != string);
chudy@google.com902ebe52012-06-29 14:21:22 +0000389 }
390}
391
392void SkDebuggerGUI::setupUi(QMainWindow *SkDebuggerGUI) {
393 QIcon windowIcon;
robertphillips@google.com8e41a162012-11-19 17:39:18 +0000394 windowIcon.addFile(QString::fromUtf8(":/skia.png"), QSize(),
chudy@google.com7dcae672012-07-09 20:26:53 +0000395 QIcon::Normal, QIcon::Off);
chudy@google.com902ebe52012-06-29 14:21:22 +0000396 SkDebuggerGUI->setObjectName(QString::fromUtf8("SkDebuggerGUI"));
397 SkDebuggerGUI->resize(1200, 1000);
398 SkDebuggerGUI->setWindowIcon(windowIcon);
chudy@google.comc432f002012-07-10 13:19:25 +0000399 SkDebuggerGUI->setWindowTitle("Skia Debugger");
chudy@google.com902ebe52012-06-29 14:21:22 +0000400
chudy@google.come504de02012-07-16 18:35:23 +0000401 fActionOpen.setShortcuts(QKeySequence::Open);
chudy@google.comc432f002012-07-10 13:19:25 +0000402 fActionOpen.setText("Open");
chudy@google.com902ebe52012-06-29 14:21:22 +0000403
404 QIcon breakpoint;
robertphillips@google.com8e41a162012-11-19 17:39:18 +0000405 breakpoint.addFile(QString::fromUtf8(":/breakpoint.png"),
chudy@google.com7dcae672012-07-09 20:26:53 +0000406 QSize(), QIcon::Normal, QIcon::Off);
chudy@google.come504de02012-07-16 18:35:23 +0000407 fActionBreakpoint.setShortcut(QKeySequence(tr("Ctrl+B")));
chudy@google.comc432f002012-07-10 13:19:25 +0000408 fActionBreakpoint.setIcon(breakpoint);
chudy@google.com7e4cfbf2012-07-17 15:40:51 +0000409 fActionBreakpoint.setText("Breakpoints");
kkinnunenf3a9e992015-01-05 01:14:11 -0800410 fActionBreakpoint.setCheckable(true);
chudy@google.com902ebe52012-06-29 14:21:22 +0000411
412 QIcon cancel;
robertphillips@google.com8e41a162012-11-19 17:39:18 +0000413 cancel.addFile(QString::fromUtf8(":/reload.png"), QSize(),
chudy@google.com7dcae672012-07-09 20:26:53 +0000414 QIcon::Normal, QIcon::Off);
chudy@google.comc432f002012-07-10 13:19:25 +0000415 fActionCancel.setIcon(cancel);
416 fActionCancel.setText("Clear Filter");
chudy@google.com902ebe52012-06-29 14:21:22 +0000417
chudy@google.com7e4cfbf2012-07-17 15:40:51 +0000418 fActionClearBreakpoints.setShortcut(QKeySequence(tr("Alt+B")));
419 fActionClearBreakpoints.setText("Clear Breakpoints");
420
421 fActionClearDeletes.setShortcut(QKeySequence(tr("Alt+X")));
422 fActionClearDeletes.setText("Clear Deletes");
423
chudy@google.come504de02012-07-16 18:35:23 +0000424 fActionClose.setShortcuts(QKeySequence::Quit);
chudy@google.comc432f002012-07-10 13:19:25 +0000425 fActionClose.setText("Exit");
chudy@google.com902ebe52012-06-29 14:21:22 +0000426
chudy@google.come504de02012-07-16 18:35:23 +0000427 fActionCreateBreakpoint.setShortcut(QKeySequence(tr("B")));
428 fActionCreateBreakpoint.setText("Set Breakpoint");
429
430 fActionDelete.setShortcut(QKeySequence(tr("X")));
chudy@google.comc432f002012-07-10 13:19:25 +0000431 fActionDelete.setText("Delete Command");
chudy@google.com902ebe52012-06-29 14:21:22 +0000432
chudy@google.come504de02012-07-16 18:35:23 +0000433 fActionDirectory.setShortcut(QKeySequence(tr("Ctrl+D")));
434 fActionDirectory.setText("Directory");
chudy@google.com902ebe52012-06-29 14:21:22 +0000435
chudy@google.comc432f002012-07-10 13:19:25 +0000436 QIcon inspector;
robertphillips@google.comd1636362012-11-19 18:25:09 +0000437 inspector.addFile(QString::fromUtf8(":/inspector.png"),
chudy@google.comc432f002012-07-10 13:19:25 +0000438 QSize(), QIcon::Normal, QIcon::Off);
chudy@google.come504de02012-07-16 18:35:23 +0000439 fActionInspector.setShortcut(QKeySequence(tr("Ctrl+I")));
chudy@google.comc432f002012-07-10 13:19:25 +0000440 fActionInspector.setIcon(inspector);
chudy@google.come504de02012-07-16 18:35:23 +0000441 fActionInspector.setText("Inspector");
chudy@google.com902ebe52012-06-29 14:21:22 +0000442
bungeman@google.com2ff6d1d2013-07-01 14:24:12 +0000443 QIcon settings;
444 settings.addFile(QString::fromUtf8(":/inspector.png"),
445 QSize(), QIcon::Normal, QIcon::Off);
446 fActionSettings.setShortcut(QKeySequence(tr("Ctrl+G")));
447 fActionSettings.setIcon(settings);
448 fActionSettings.setText("Settings");
skia.committer@gmail.com0d55dd72013-07-02 07:00:59 +0000449
chudy@google.comc432f002012-07-10 13:19:25 +0000450 QIcon play;
robertphillips@google.comd1636362012-11-19 18:25:09 +0000451 play.addFile(QString::fromUtf8(":/play.png"), QSize(),
chudy@google.comc432f002012-07-10 13:19:25 +0000452 QIcon::Normal, QIcon::Off);
chudy@google.come504de02012-07-16 18:35:23 +0000453 fActionPlay.setShortcut(QKeySequence(tr("Ctrl+P")));
chudy@google.comc432f002012-07-10 13:19:25 +0000454 fActionPlay.setIcon(play);
455 fActionPlay.setText("Play");
chudy@google.com902ebe52012-06-29 14:21:22 +0000456
chudy@google.come504de02012-07-16 18:35:23 +0000457 QIcon pause;
robertphillips@google.comd1636362012-11-19 18:25:09 +0000458 pause.addFile(QString::fromUtf8(":/pause.png"), QSize(),
chudy@google.comc432f002012-07-10 13:19:25 +0000459 QIcon::Normal, QIcon::Off);
chudy@google.come504de02012-07-16 18:35:23 +0000460 fActionPause.setShortcut(QKeySequence(tr("Space")));
461 fActionPause.setCheckable(true);
462 fActionPause.setIcon(pause);
463 fActionPause.setText("Pause");
464
chudy@google.comc432f002012-07-10 13:19:25 +0000465 QIcon rewind;
robertphillips@google.com8e41a162012-11-19 17:39:18 +0000466 rewind.addFile(QString::fromUtf8(":/rewind.png"), QSize(),
chudy@google.comc432f002012-07-10 13:19:25 +0000467 QIcon::Normal, QIcon::Off);
chudy@google.come504de02012-07-16 18:35:23 +0000468 fActionRewind.setShortcut(QKeySequence(tr("Ctrl+R")));
chudy@google.comc432f002012-07-10 13:19:25 +0000469 fActionRewind.setIcon(rewind);
470 fActionRewind.setText("Rewind");
chudy@google.com902ebe52012-06-29 14:21:22 +0000471
chudy@google.com0ab03392012-07-28 20:16:11 +0000472 fActionSave.setShortcut(QKeySequence::Save);
473 fActionSave.setText("Save");
474 fActionSave.setDisabled(true);
475 fActionSaveAs.setShortcut(QKeySequence::SaveAs);
476 fActionSaveAs.setText("Save As");
477 fActionSaveAs.setDisabled(true);
478
chudy@google.com7e4cfbf2012-07-17 15:40:51 +0000479 fActionShowDeletes.setShortcut(QKeySequence(tr("Ctrl+X")));
480 fActionShowDeletes.setText("Deleted Commands");
kkinnunenf3a9e992015-01-05 01:14:11 -0800481 fActionShowDeletes.setCheckable(true);
chudy@google.com7e4cfbf2012-07-17 15:40:51 +0000482
chudy@google.comc432f002012-07-10 13:19:25 +0000483 QIcon stepBack;
robertphillips@google.com8e41a162012-11-19 17:39:18 +0000484 stepBack.addFile(QString::fromUtf8(":/previous.png"), QSize(),
chudy@google.comc432f002012-07-10 13:19:25 +0000485 QIcon::Normal, QIcon::Off);
chudy@google.come504de02012-07-16 18:35:23 +0000486 fActionStepBack.setShortcut(QKeySequence(tr("[")));
chudy@google.comc432f002012-07-10 13:19:25 +0000487 fActionStepBack.setIcon(stepBack);
488 fActionStepBack.setText("Step Back");
chudy@google.com902ebe52012-06-29 14:21:22 +0000489
chudy@google.comc432f002012-07-10 13:19:25 +0000490 QIcon stepForward;
robertphillips@google.com8e41a162012-11-19 17:39:18 +0000491 stepForward.addFile(QString::fromUtf8(":/next.png"),
chudy@google.comc432f002012-07-10 13:19:25 +0000492 QSize(), QIcon::Normal, QIcon::Off);
chudy@google.come504de02012-07-16 18:35:23 +0000493 fActionStepForward.setShortcut(QKeySequence(tr("]")));
chudy@google.comc432f002012-07-10 13:19:25 +0000494 fActionStepForward.setIcon(stepForward);
495 fActionStepForward.setText("Step Forward");
496
chudy@google.coma1226312012-07-26 20:26:44 +0000497 fActionZoomIn.setShortcut(QKeySequence(tr("Ctrl+=")));
498 fActionZoomIn.setText("Zoom In");
499 fActionZoomOut.setShortcut(QKeySequence(tr("Ctrl+-")));
500 fActionZoomOut.setText("Zoom Out");
501
chudy@google.comc432f002012-07-10 13:19:25 +0000502 fListWidget.setItemDelegate(new SkListWidget(&fListWidget));
503 fListWidget.setObjectName(QString::fromUtf8("listWidget"));
commit-bot@chromium.orgbcd431e2013-11-21 13:41:37 +0000504 fListWidget.setMinimumWidth(250);
chudy@google.comc432f002012-07-10 13:19:25 +0000505
506 fFilter.addItem("--Filter By Available Commands--");
507
commit-bot@chromium.orgbcd431e2013-11-21 13:41:37 +0000508 fDirectoryWidget.setMinimumWidth(250);
chudy@google.comc432f002012-07-10 13:19:25 +0000509 fDirectoryWidget.setStyleSheet("QListWidget::Item {padding: 5px;}");
510
511 fCanvasWidget.setSizePolicy(QSizePolicy::Expanding,
chudy@google.com7dcae672012-07-09 20:26:53 +0000512 QSizePolicy::Expanding);
chudy@google.com902ebe52012-06-29 14:21:22 +0000513
kkinnunen63a47022014-12-30 23:03:56 -0800514 fDrawCommandGeometryWidget.setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
robertphillips@google.com6dec8fc2012-11-21 17:11:02 +0000515
robertphillips@google.com6dec8fc2012-11-21 17:11:02 +0000516 fSettingsAndImageLayout.addWidget(&fSettingsWidget);
robertphillips@google.com6dec8fc2012-11-21 17:11:02 +0000517
kkinnunen41c79cc2014-12-30 22:49:58 -0800518 // View state group, part of inspector.
519 fViewStateFrame.setFrameStyle(QFrame::Panel);
520 fViewStateFrame.setLayout(&fViewStateFrameLayout);
521 fViewStateFrameLayout.addWidget(&fViewStateGroup);
kkinnunen63a47022014-12-30 23:03:56 -0800522 fViewStateGroup.setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Expanding);
kkinnunen41c79cc2014-12-30 22:49:58 -0800523 fViewStateGroup.setTitle("View");
524 fViewStateLayout.addRow("Zoom Level", &fZoomBox);
525 fZoomBox.setText("100%");
526 fZoomBox.setMinimumSize(QSize(50,25));
527 fZoomBox.setMaximumSize(QSize(50,25));
528 fZoomBox.setAlignment(Qt::AlignRight);
529 fZoomBox.setReadOnly(true);
530 fViewStateLayout.addRow("Command HitBox", &fCommandHitBox);
531 fCommandHitBox.setText("0");
532 fCommandHitBox.setMinimumSize(QSize(50,25));
533 fCommandHitBox.setMaximumSize(QSize(50,25));
534 fCommandHitBox.setAlignment(Qt::AlignRight);
535 fCommandHitBox.setReadOnly(true);
536 fViewStateLayout.addRow("Current Command", &fCurrentCommandBox);
537 fCurrentCommandBox.setText("0");
538 fCurrentCommandBox.setMinimumSize(QSize(50,25));
539 fCurrentCommandBox.setMaximumSize(QSize(50,25));
540 fCurrentCommandBox.setAlignment(Qt::AlignRight);
541 fCurrentCommandBox.setReadOnly(true);
542 fViewStateGroup.setLayout(&fViewStateLayout);
543 fSettingsAndImageLayout.addWidget(&fViewStateFrame);
544
kkinnunen63a47022014-12-30 23:03:56 -0800545 fDrawCommandGeometryWidget.setToolTip("Current Command Geometry");
546 fSettingsAndImageLayout.addWidget(&fDrawCommandGeometryWidget);
chudy@google.com902ebe52012-06-29 14:21:22 +0000547
commit-bot@chromium.orgbcd431e2013-11-21 13:41:37 +0000548 fLeftColumnSplitter.addWidget(&fListWidget);
549 fLeftColumnSplitter.addWidget(&fDirectoryWidget);
550 fLeftColumnSplitter.setOrientation(Qt::Vertical);
chudy@google.com902ebe52012-06-29 14:21:22 +0000551
robertphillips@google.com6dec8fc2012-11-21 17:11:02 +0000552 fCanvasSettingsAndImageLayout.setSpacing(6);
kkinnunen41c79cc2014-12-30 22:49:58 -0800553 fCanvasSettingsAndImageLayout.addWidget(&fCanvasWidget, 1);
554 fCanvasSettingsAndImageLayout.addLayout(&fSettingsAndImageLayout, 0);
robertphillips@google.com6dec8fc2012-11-21 17:11:02 +0000555
chudy@google.comc432f002012-07-10 13:19:25 +0000556 fMainAndRightColumnLayout.setSpacing(6);
kkinnunen7c339ae2015-01-02 06:35:43 -0800557 fMainAndRightColumnLayout.addLayout(&fCanvasSettingsAndImageLayout, 1);
558 fMainAndRightColumnLayout.addWidget(&fInspectorWidget, 0);
commit-bot@chromium.orgbcd431e2013-11-21 13:41:37 +0000559 fMainAndRightColumnWidget.setLayout(&fMainAndRightColumnLayout);
chudy@google.com902ebe52012-06-29 14:21:22 +0000560
commit-bot@chromium.orgbcd431e2013-11-21 13:41:37 +0000561 fCentralSplitter.addWidget(&fLeftColumnSplitter);
562 fCentralSplitter.addWidget(&fMainAndRightColumnWidget);
563 fCentralSplitter.setStretchFactor(0, 0);
564 fCentralSplitter.setStretchFactor(1, 1);
chudy@google.comc432f002012-07-10 13:19:25 +0000565
commit-bot@chromium.orgbcd431e2013-11-21 13:41:37 +0000566 SkDebuggerGUI->setCentralWidget(&fCentralSplitter);
chudy@google.comc432f002012-07-10 13:19:25 +0000567 SkDebuggerGUI->setStatusBar(&fStatusBar);
568
chudy@google.come504de02012-07-16 18:35:23 +0000569 fToolBar.setIconSize(QSize(32, 32));
chudy@google.comc432f002012-07-10 13:19:25 +0000570 fToolBar.setToolButtonStyle(Qt::ToolButtonTextUnderIcon);
571 SkDebuggerGUI->addToolBar(Qt::TopToolBarArea, &fToolBar);
chudy@google.com902ebe52012-06-29 14:21:22 +0000572
chudy@google.com0ab03392012-07-28 20:16:11 +0000573 fSpacer.setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
chudy@google.com902ebe52012-06-29 14:21:22 +0000574
chudy@google.comc432f002012-07-10 13:19:25 +0000575 fToolBar.addAction(&fActionRewind);
576 fToolBar.addAction(&fActionStepBack);
chudy@google.come504de02012-07-16 18:35:23 +0000577 fToolBar.addAction(&fActionPause);
chudy@google.comc432f002012-07-10 13:19:25 +0000578 fToolBar.addAction(&fActionStepForward);
579 fToolBar.addAction(&fActionPlay);
580 fToolBar.addSeparator();
chudy@google.come504de02012-07-16 18:35:23 +0000581 fToolBar.addAction(&fActionInspector);
bungeman@google.com2ff6d1d2013-07-01 14:24:12 +0000582 fToolBar.addAction(&fActionSettings);
robertphillips@google.comd26c7062012-11-12 20:42:12 +0000583
584 fToolBar.addSeparator();
chudy@google.com0ab03392012-07-28 20:16:11 +0000585 fToolBar.addWidget(&fSpacer);
chudy@google.comc432f002012-07-10 13:19:25 +0000586 fToolBar.addWidget(&fFilter);
587 fToolBar.addAction(&fActionCancel);
chudy@google.com902ebe52012-06-29 14:21:22 +0000588
robertphillips@google.comd26c7062012-11-12 20:42:12 +0000589 fFileName = "";
robertphillips@google.comff6e6ba2013-01-28 17:43:26 +0000590 setupDirectoryWidget("");
chudy@google.com902ebe52012-06-29 14:21:22 +0000591
chudy@google.com902ebe52012-06-29 14:21:22 +0000592 // Menu Bar
chudy@google.comc432f002012-07-10 13:19:25 +0000593 fMenuFile.setTitle("File");
594 fMenuFile.addAction(&fActionOpen);
chudy@google.com0ab03392012-07-28 20:16:11 +0000595 fMenuFile.addAction(&fActionSave);
596 fMenuFile.addAction(&fActionSaveAs);
chudy@google.comc432f002012-07-10 13:19:25 +0000597 fMenuFile.addAction(&fActionClose);
chudy@google.come504de02012-07-16 18:35:23 +0000598
599 fMenuEdit.setTitle("Edit");
600 fMenuEdit.addAction(&fActionDelete);
chudy@google.com7e4cfbf2012-07-17 15:40:51 +0000601 fMenuEdit.addAction(&fActionClearDeletes);
602 fMenuEdit.addSeparator();
chudy@google.come504de02012-07-16 18:35:23 +0000603 fMenuEdit.addAction(&fActionCreateBreakpoint);
chudy@google.com7e4cfbf2012-07-17 15:40:51 +0000604 fMenuEdit.addAction(&fActionClearBreakpoints);
chudy@google.come504de02012-07-16 18:35:23 +0000605
chudy@google.comc432f002012-07-10 13:19:25 +0000606 fMenuNavigate.setTitle("Navigate");
chudy@google.come504de02012-07-16 18:35:23 +0000607 fMenuNavigate.addAction(&fActionRewind);
608 fMenuNavigate.addAction(&fActionStepBack);
609 fMenuNavigate.addAction(&fActionStepForward);
610 fMenuNavigate.addAction(&fActionPlay);
611 fMenuNavigate.addAction(&fActionPause);
chudy@google.comc432f002012-07-10 13:19:25 +0000612 fMenuNavigate.addAction(&fActionGoToLine);
chudy@google.come504de02012-07-16 18:35:23 +0000613
chudy@google.comc432f002012-07-10 13:19:25 +0000614 fMenuView.setTitle("View");
chudy@google.come504de02012-07-16 18:35:23 +0000615 fMenuView.addAction(&fActionBreakpoint);
chudy@google.com7e4cfbf2012-07-17 15:40:51 +0000616 fMenuView.addAction(&fActionShowDeletes);
chudy@google.coma1226312012-07-26 20:26:44 +0000617 fMenuView.addAction(&fActionZoomIn);
618 fMenuView.addAction(&fActionZoomOut);
chudy@google.come504de02012-07-16 18:35:23 +0000619
620 fMenuWindows.setTitle("Window");
621 fMenuWindows.addAction(&fActionInspector);
bungeman@google.com2ff6d1d2013-07-01 14:24:12 +0000622 fMenuWindows.addAction(&fActionSettings);
chudy@google.come504de02012-07-16 18:35:23 +0000623 fMenuWindows.addAction(&fActionDirectory);
chudy@google.comc432f002012-07-10 13:19:25 +0000624
625 fActionGoToLine.setText("Go to Line...");
626 fActionGoToLine.setDisabled(true);
627 fMenuBar.addAction(fMenuFile.menuAction());
chudy@google.come504de02012-07-16 18:35:23 +0000628 fMenuBar.addAction(fMenuEdit.menuAction());
chudy@google.comc432f002012-07-10 13:19:25 +0000629 fMenuBar.addAction(fMenuView.menuAction());
630 fMenuBar.addAction(fMenuNavigate.menuAction());
chudy@google.come504de02012-07-16 18:35:23 +0000631 fMenuBar.addAction(fMenuWindows.menuAction());
chudy@google.com902ebe52012-06-29 14:21:22 +0000632
chudy@google.comc432f002012-07-10 13:19:25 +0000633 SkDebuggerGUI->setMenuBar(&fMenuBar);
chudy@google.com902ebe52012-06-29 14:21:22 +0000634 QMetaObject::connectSlotsByName(SkDebuggerGUI);
635}
636
robertphillips@google.comff6e6ba2013-01-28 17:43:26 +0000637void SkDebuggerGUI::setupDirectoryWidget(const QString& path) {
638 fPath = path;
djsollena7451862015-11-18 13:00:21 -0800639 populateDirectoryWidget();
640
641 // clear the existing watched directory and setup a new directory to watch
642 if (!fDirectoryWatcher.directories().empty()) {
643 fDirectoryWatcher.removePaths(fDirectoryWatcher.directories());
644 }
645 if (!path.isEmpty()) {
646 fDirectoryWatcher.addPath(fPath);
647 }
648}
649
650void SkDebuggerGUI::populateDirectoryWidget() {
651 QDir dir(fPath);
chudy@google.com902ebe52012-06-29 14:21:22 +0000652 QRegExp r(".skp");
chudy@google.comc432f002012-07-10 13:19:25 +0000653 const QStringList files = dir.entryList();
djsollena7451862015-11-18 13:00:21 -0800654
655 // check if a file has been removed
656 for (int i = fDirectoryWidget.count() - 1; i >= 0; i--) {
657 QListWidgetItem* item = fDirectoryWidget.item(i);
658 if (!files.contains(item->text())) {
659 fDirectoryWidget.removeItemWidget(item);
660 delete item;
661 }
662 }
663
664 // add any new files
chudy@google.com902ebe52012-06-29 14:21:22 +0000665 foreach (QString f, files) {
djsollena7451862015-11-18 13:00:21 -0800666 if (f.contains(r) && fDirectoryWidget.findItems(f, Qt::MatchExactly).size() == 0) {
chudy@google.comc432f002012-07-10 13:19:25 +0000667 fDirectoryWidget.addItem(f);
djsollena7451862015-11-18 13:00:21 -0800668 }
chudy@google.com902ebe52012-06-29 14:21:22 +0000669 }
670}
671
robertphillips@google.comd26c7062012-11-12 20:42:12 +0000672void SkDebuggerGUI::loadPicture(const SkString& fileName) {
673 fFileName = fileName;
chudy@google.comd3058f52012-07-19 13:41:27 +0000674 fLoading = true;
halcanary385fe4d2015-08-26 13:07:48 -0700675 SkAutoTDelete<SkStream> stream(new SkFILEStream(fileName.c_str()));
robertphillips@google.com2d40ec42013-02-07 20:39:40 +0000676
scroggo@google.comf1754ec2013-06-28 21:32:00 +0000677 SkPicture* picture = SkPicture::CreateFromStream(stream);
robertphillips@google.com2d40ec42013-02-07 20:39:40 +0000678
halcanary96fcdcc2015-08-27 07:41:13 -0700679 if (nullptr == picture) {
robertphillips@google.com2d40ec42013-02-07 20:39:40 +0000680 QMessageBox::critical(this, "Error loading file", "Couldn't read file, sorry.");
robertphillips@google.com2d40ec42013-02-07 20:39:40 +0000681 return;
682 }
robertphillips@google.com2bde91d2012-11-15 14:57:57 +0000683
chudy@google.com686e6802012-08-14 16:00:32 +0000684 fCanvasWidget.resetWidgetTransform();
chudy@google.com607357f2012-08-07 16:12:23 +0000685 fDebugger.loadPicture(picture);
chudy@google.com4c7962e2012-08-14 19:38:31 +0000686
robertphillips@google.com6d9c92b2013-05-23 13:21:18 +0000687 fSkipCommands.setCount(fDebugger.getSize());
688 for (int i = 0; i < fSkipCommands.count(); ++i) {
robertphillips@google.com5f971142012-12-07 20:48:56 +0000689 fSkipCommands[i] = false;
690 }
691
chudy@google.com607357f2012-08-07 16:12:23 +0000692 SkSafeUnref(picture);
693
chudy@google.com7dcae672012-07-09 20:26:53 +0000694 /* fDebugCanvas is reinitialized every load picture. Need it to retain value
chudy@google.com607357f2012-08-07 16:12:23 +0000695 * of the visibility filter.
696 * TODO(chudy): This should be deprecated since fDebugger is not
697 * recreated.
698 * */
kkinnunen41c79cc2014-12-30 22:49:58 -0800699 fDebugger.highlightCurrentCommand(fSettingsWidget.isVisibilityFilterEnabled());
chudy@google.com607357f2012-08-07 16:12:23 +0000700
kkinnunen5037e9d2014-12-30 07:22:58 -0800701 this->setupListWidget();
702 this->setupComboBox();
halcanary96fcdcc2015-08-27 07:41:13 -0700703 this->setupOverviewText(nullptr, 0.0, 1);
chudy@google.com7e4cfbf2012-07-17 15:40:51 +0000704 fInspectorWidget.setDisabled(false);
kkinnunen41c79cc2014-12-30 22:49:58 -0800705 fViewStateFrame.setDisabled(false);
chudy@google.come606d6e2012-07-12 14:31:25 +0000706 fSettingsWidget.setDisabled(false);
chudy@google.comd3058f52012-07-19 13:41:27 +0000707 fMenuEdit.setDisabled(false);
708 fMenuNavigate.setDisabled(false);
709 fMenuView.setDisabled(false);
chudy@google.com0ab03392012-07-28 20:16:11 +0000710 fActionSave.setDisabled(false);
711 fActionSaveAs.setDisabled(false);
kkinnunenf3a9e992015-01-05 01:14:11 -0800712 fActionPause.setChecked(false);
kkinnunen0cfeaf32015-01-07 07:33:46 -0800713 fDrawCommandGeometryWidget.setDrawCommandIndex(-1);
714
chudy@google.comd3058f52012-07-19 13:41:27 +0000715 fLoading = false;
716 actionPlay();
chudy@google.com902ebe52012-06-29 14:21:22 +0000717}
718
kkinnunen5037e9d2014-12-30 07:22:58 -0800719void SkDebuggerGUI::setupListWidget() {
robertphillips546db462015-03-26 10:08:04 -0700720
721 SkASSERT(!strcmp("Save",
722 SkDrawCommand::GetCommandString(SkDrawCommand::kSave_OpType)));
723 SkASSERT(!strcmp("SaveLayer",
724 SkDrawCommand::GetCommandString(SkDrawCommand::kSaveLayer_OpType)));
725 SkASSERT(!strcmp("Restore",
726 SkDrawCommand::GetCommandString(SkDrawCommand::kRestore_OpType)));
fmalita160ebb22015-04-01 20:58:37 -0700727 SkASSERT(!strcmp("BeginDrawPicture",
728 SkDrawCommand::GetCommandString(SkDrawCommand::kBeginDrawPicture_OpType)));
729 SkASSERT(!strcmp("EndDrawPicture",
730 SkDrawCommand::GetCommandString(SkDrawCommand::kEndDrawPicture_OpType)));
robertphillips546db462015-03-26 10:08:04 -0700731
chudy@google.comc432f002012-07-10 13:19:25 +0000732 fListWidget.clear();
chudy@google.com902ebe52012-06-29 14:21:22 +0000733 int counter = 0;
robertphillips@google.com30d35f22012-11-06 16:45:36 +0000734 int indent = 0;
kkinnunen5037e9d2014-12-30 07:22:58 -0800735 for (int i = 0; i < fDebugger.getSize(); i++) {
chudy@google.com902ebe52012-06-29 14:21:22 +0000736 QListWidgetItem *item = new QListWidgetItem();
kkinnunen5037e9d2014-12-30 07:22:58 -0800737 SkDrawCommand* command = fDebugger.getDrawCommandAt(i);
738 SkString commandString = command->toString();
739 item->setData(Qt::DisplayRole, commandString.c_str());
chudy@google.com902ebe52012-06-29 14:21:22 +0000740 item->setData(Qt::UserRole + 1, counter++);
robertphillips@google.com30d35f22012-11-06 16:45:36 +0000741
kkinnunen5037e9d2014-12-30 07:22:58 -0800742 if (0 == strcmp("Restore", commandString.c_str()) ||
fmalita160ebb22015-04-01 20:58:37 -0700743 0 == strcmp("EndDrawPicture", commandString.c_str())) {
robertphillips@google.com30d35f22012-11-06 16:45:36 +0000744 indent -= 10;
745 }
746
747 item->setData(Qt::UserRole + 3, indent);
748
kkinnunen5037e9d2014-12-30 07:22:58 -0800749 if (0 == strcmp("Save", commandString.c_str()) ||
robertphillips546db462015-03-26 10:08:04 -0700750 0 == strcmp("SaveLayer", commandString.c_str()) ||
fmalita160ebb22015-04-01 20:58:37 -0700751 0 == strcmp("BeginDrawPicture", commandString.c_str())) {
robertphillips@google.com30d35f22012-11-06 16:45:36 +0000752 indent += 10;
753 }
754
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000755 item->setData(Qt::UserRole + 4, -1);
robertphillips@google.comd26c7062012-11-12 20:42:12 +0000756
chudy@google.comc432f002012-07-10 13:19:25 +0000757 fListWidget.addItem(item);
chudy@google.com902ebe52012-06-29 14:21:22 +0000758 }
759}
760
skia.committer@gmail.com91274b92013-03-13 07:01:04 +0000761void SkDebuggerGUI::setupOverviewText(const SkTDArray<double>* typeTimes,
robertphillips@google.come428f9b2013-03-12 15:33:40 +0000762 double totTime,
763 int numRuns) {
borenet@google.com2d9dbd42013-03-12 13:07:40 +0000764 SkString overview;
robertphillips@google.come428f9b2013-03-12 15:33:40 +0000765 fDebugger.getOverviewText(typeTimes, totTime, &overview, numRuns);
borenet@google.com2d9dbd42013-03-12 13:07:40 +0000766 fInspectorWidget.setText(overview.c_str(), SkInspectorWidget::kOverview_TabType);
robertphillips@google.com8a1cdae2012-11-19 20:44:29 +0000767}
768
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000769
kkinnunen5037e9d2014-12-30 07:22:58 -0800770void SkDebuggerGUI::setupComboBox() {
robertphillips@google.com8a1cdae2012-11-19 20:44:29 +0000771 fFilter.clear();
772 fFilter.addItem("--Filter By Available Commands--");
773
774 std::map<std::string, int> map;
kkinnunen5037e9d2014-12-30 07:22:58 -0800775 for (int i = 0; i < fDebugger.getSize(); i++) {
776 map[fDebugger.getDrawCommandAt(i)->toString().c_str()]++;
robertphillips@google.com8a1cdae2012-11-19 20:44:29 +0000777 }
778
skia.committer@gmail.com34587162012-11-20 02:01:23 +0000779 for (std::map<std::string, int>::iterator it = map.begin(); it != map.end();
robertphillips@google.com8a1cdae2012-11-19 20:44:29 +0000780 ++it) {
781 fFilter.addItem((it->first).c_str());
782 }
chudy@google.com902ebe52012-06-29 14:21:22 +0000783
784 // NOTE(chudy): Makes first item unselectable.
chudy@google.com7dcae672012-07-09 20:26:53 +0000785 QStandardItemModel* model = qobject_cast<QStandardItemModel*>(
chudy@google.comc432f002012-07-10 13:19:25 +0000786 fFilter.model());
787 QModelIndex firstIndex = model->index(0, fFilter.modelColumn(),
788 fFilter.rootModelIndex());
chudy@google.com902ebe52012-06-29 14:21:22 +0000789 QStandardItem* firstItem = model->itemFromIndex(firstIndex);
790 firstItem->setSelectable(false);
791}
kkinnunen41c79cc2014-12-30 22:49:58 -0800792
kkinnunencfdc0e32015-01-13 22:49:02 -0800793void SkDebuggerGUI::updateImage() {
794 if (this->isPaused()) {
795 fCanvasWidget.drawTo(fPausedRow);
796 } else {
797 fCanvasWidget.drawTo(fListWidget.currentRow());
798 }
799}
800
kkinnunen41c79cc2014-12-30 22:49:58 -0800801void SkDebuggerGUI::updateHit(int newHit) {
802 fCommandHitBox.setText(QString::number(newHit));
803}
804