skia2/tools/viewer/SampleSlide.h
jvanverth c7027ab03f Add samples to Viewer.
This adds support with animation, assuming the sample has
implemented onAnimate. Event handling has not been
implemented.

BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2056343004

Committed: https://skia.googlesource.com/skia/+/76963e73704a42a18c29d6fbdcccb566e5c67658
Review-Url: https://codereview.chromium.org/2056343004
2016-06-16 09:52:35 -07:00

35 lines
786 B
C++
Executable File

/*
* Copyright 2016 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SampleSlide_DEFINED
#define SampleSlide_DEFINED
#include "Slide.h"
#include "SampleCode.h"
class SampleSlide : public Slide {
public:
SampleSlide(const SkViewFactory* factory);
~SampleSlide() override;
void draw(SkCanvas* canvas) override;
void load(SkScalar winWidth, SkScalar winHeight) override;
void unload() override;
bool animate(const SkAnimTimer& timer) override {
if (SampleView::IsSampleView(fView)) {
return ((SampleView*)fView)->animate(timer);
}
return false;
}
private:
const SkViewFactory* fViewFactory;
SkView* fView;
};
#endif