/* * Copyright 2014 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SKDRAWCOMMANDGEOMETRYWIDGET_H_ #define SKDRAWCOMMANDGEOMETRYWIDGET_H_ #include #include "SkSurface.h" class SkDebugger; class SkDrawCommandGeometryWidget : public QFrame { Q_OBJECT public: SkDrawCommandGeometryWidget(SkDebugger* debugger); void setDrawCommandIndex(int index); protected: void paintEvent(QPaintEvent* event); void resizeEvent(QResizeEvent* event); private: void updateImage(); SkDebugger* fDebugger; sk_sp fSurface; int fCommandIndex; }; #endif /* SKDRAWCOMMANDGEOMETRYWIDGET_H_ */