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

Unified Diff: samplecode/GMSampleView.cpp

Issue 947733002: move GMSampleView into its own cpp (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « samplecode/GMSampleView.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samplecode/GMSampleView.cpp
diff --git a/samplecode/GMSampleView.cpp b/samplecode/GMSampleView.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..e74612b2482b06fae99a01eab8ad7e996513b390
--- /dev/null
+++ b/samplecode/GMSampleView.cpp
@@ -0,0 +1,62 @@
+/*
+ * Copyright 2015 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#include "GMSampleView.h"
+
+GMSampleView::GMSampleView(GM* gm) : fShowSize(false), fGM(gm) {}
+
+GMSampleView::~GMSampleView() {
+ delete fGM;
+}
+
+SkEvent* GMSampleView::NewShowSizeEvt(bool doShowSize) {
+ SkEvent* evt = SkNEW_ARGS(SkEvent, ("GMSampleView::showSize"));
+ evt->setFast32(doShowSize);
+ return evt;
+}
+
+bool GMSampleView::onQuery(SkEvent* evt) {
+ if (SampleCode::TitleQ(*evt)) {
+ SkString name("GM:");
+ name.append(fGM->getName());
+ SampleCode::TitleR(evt, name.c_str());
+ return true;
+ }
+ return this->INHERITED::onQuery(evt);
+}
+
+bool GMSampleView::onEvent(const SkEvent& evt) {
+ if (evt.isType("GMSampleView::showSize")) {
+ fShowSize = SkToBool(evt.getFast32());
+ return true;
+ }
+ return this->INHERITED::onEvent(evt);
+}
+
+void GMSampleView::onDrawContent(SkCanvas* canvas) {
+ {
+ SkAutoCanvasRestore acr(canvas, fShowSize);
+ fGM->drawContent(canvas);
+ }
+ if (fShowSize) {
+ SkISize size = fGM->getISize();
+ SkRect r = SkRect::MakeWH(SkIntToScalar(size.width()),
+ SkIntToScalar(size.height()));
+ SkPaint paint;
+ paint.setColor(0x40FF8833);
+ canvas->drawRect(r, paint);
+ }
+}
+
+void GMSampleView::onDrawBackground(SkCanvas* canvas) {
+ fGM->drawBackground(canvas);
+}
+
+bool GMSampleView::onAnimate(const SkAnimTimer& timer) {
+ return fGM->animate(timer);
+}
+
« no previous file with comments | « samplecode/GMSampleView.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698