blob: 4b91f39f74654ac732ce0a1618d2229fa5ea251c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/*
* 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
|