c9e7f9c448
Bug: skia:6830 Change-Id: I1a6bb781465a29cec4946462e234d63c48693454 Reviewed-on: https://skia-review.googlesource.com/66543 Reviewed-by: Brian Osman <brianosman@google.com> Commit-Queue: Jim Van Verth <jvanverth@google.com>
40 lines
1004 B
C++
40 lines
1004 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 (fView && SampleView::IsSampleView(fView.get())) {
|
|
return ((SampleView*)fView.get())->animate(timer);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool onChar(SkUnichar c) override;
|
|
bool onMouse(SkScalar x, SkScalar y, sk_app::Window::InputState state,
|
|
uint32_t modifiers) override;
|
|
|
|
private:
|
|
const SkViewFactory* fViewFactory;
|
|
sk_sp<SkView> fView;
|
|
SkView::Click* fClick;
|
|
};
|
|
|
|
#endif
|