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

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

Issue 787143004: debugger: Make draw command image widget resize (Closed) Base URL: https://skia.googlesource.com/skia.git@debugger-resize-01-settings-layout
Patch Set: address review comments Created 5 years, 11 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 | « debugger/QT/SkDebuggerGUI.cpp ('k') | debugger/QT/SkDrawCommandGeometryWidget.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2014 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
8
9 #ifndef SKDRAWCOMMANDGEOMETRYWIDGET_H_
10 #define SKDRAWCOMMANDGEOMETRYWIDGET_H_
11
12 #include <QFrame>
13
14 #include "SkSurface.h"
15 class SkDebugger;
16
17 class SkDrawCommandGeometryWidget : public QFrame {
18 Q_OBJECT
19
20 public:
21 SkDrawCommandGeometryWidget(SkDebugger* debugger);
22
23 public slots:
24 void updateImage();
25
26 protected:
27 void paintEvent(QPaintEvent* event);
28 void resizeEvent(QResizeEvent* event);
29
30 private:
31 SkDebugger* fDebugger;
32 SkAutoTUnref<SkSurface> fSurface;
33 };
34
35 #endif /* SKDRAWCOMMANDGEOMETRYWIDGET_H_ */
OLDNEW
« no previous file with comments | « debugger/QT/SkDebuggerGUI.cpp ('k') | debugger/QT/SkDrawCommandGeometryWidget.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698