Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(471)

Side by Side Diff: debugger/QT/SkDebuggerGUI.h

Issue 1034733004: Debugger: remove dead feature (SkPicture offset display) & fix bug (unbalanced indents) (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | debugger/QT/SkDebuggerGUI.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 signals: 71 signals:
72 void commandChanged(int command); 72 void commandChanged(int command);
73 73
74 private slots: 74 private slots:
75 /** 75 /**
76 Toggles breakpoint view in the list widget. 76 Toggles breakpoint view in the list widget.
77 */ 77 */
78 void actionBreakpoints(); 78 void actionBreakpoints();
79 79
80 /** 80 /**
81 Toggles between count and offset style of command indexing in GUI
82 */
83 void actionToggleIndexStyle();
84
85 /**
86 Profile the commands 81 Profile the commands
87 */ 82 */
88 void actionProfile(); 83 void actionProfile();
89 84
90 /** 85 /**
91 Cancels the command filter in the list widget. 86 Cancels the command filter in the list widget.
92 */ 87 */
93 void actionCancel(); 88 void actionCancel();
94 89
95 /** 90 /**
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 void updateHit(int newHit); 231 void updateHit(int newHit);
237 232
238 void updateImage(); 233 void updateImage();
239 private: 234 private:
240 QSplitter fCentralSplitter; 235 QSplitter fCentralSplitter;
241 QStatusBar fStatusBar; 236 QStatusBar fStatusBar;
242 QToolBar fToolBar; 237 QToolBar fToolBar;
243 238
244 QAction fActionOpen; 239 QAction fActionOpen;
245 QAction fActionBreakpoint; 240 QAction fActionBreakpoint;
246 QAction fActionToggleIndexStyle;
247 QAction fActionProfile; 241 QAction fActionProfile;
248 QAction fActionCancel; 242 QAction fActionCancel;
249 QAction fActionClearBreakpoints; 243 QAction fActionClearBreakpoints;
250 QAction fActionClearDeletes; 244 QAction fActionClearDeletes;
251 QAction fActionClose; 245 QAction fActionClose;
252 QAction fActionCreateBreakpoint; 246 QAction fActionCreateBreakpoint;
253 QAction fActionDelete; 247 QAction fActionDelete;
254 QAction fActionDirectory; 248 QAction fActionDirectory;
255 QAction fActionGoToLine; 249 QAction fActionGoToLine;
256 QAction fActionInspector; 250 QAction fActionInspector;
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 void run(const SkPicture* pict, 342 void run(const SkPicture* pict,
349 sk_tools::PictureRenderer* renderer, 343 sk_tools::PictureRenderer* renderer,
350 int repeats); 344 int repeats);
351 345
352 bool isPaused() const { 346 bool isPaused() const {
353 return fActionPause.isChecked(); 347 return fActionPause.isChecked();
354 } 348 }
355 }; 349 };
356 350
357 #endif // SKDEBUGGERUI_H 351 #endif // SKDEBUGGERUI_H
OLDNEW
« no previous file with comments | « no previous file | debugger/QT/SkDebuggerGUI.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698