skia2/tools/viewer/SampleSlide.h
Jim Van Verth 6f449692c1 Add more SampleApp support to viewer.
Fixes loading a Sample as first slide.
Adds char input.
Adds --slide and --list options.

Change-Id: I34b66818e3673fcfdc649443e7d9dfb74b478062
Reviewed-on: https://skia-review.googlesource.com/8445
Reviewed-by: Brian Osman <brianosman@google.com>
Commit-Queue: Jim Van Verth <jvanverth@google.com>
2017-02-14 21:25:01 +00:00

37 lines
826 B
C++

/*
* 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;
}
bool onChar(SkUnichar c) override;
private:
const SkViewFactory* fViewFactory;
SkView* fView;
};
#endif