skia2/tools/viewer/SampleSlide.h
Christopher Dalton 443ec1b794 Add onBackendCreated callback to Viewer
Also removes fWidth and fHeight from Window and instead
calls into WindowContent to get these values.

BUG=skia:

Change-Id: I72ee506004b7da73db9abb607a3bc82edfcf7d43
Reviewed-on: https://skia-review.googlesource.com/8795
Commit-Queue: Chris Dalton <csmartdalton@google.com>
Reviewed-by: Jim Van Verth <jvanverth@google.com>
Reviewed-by: Yuqian Li <liyuqian@google.com>
2017-02-24 22:37:34 +00:00

37 lines
847 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;
private:
const SkViewFactory* fViewFactory;
sk_sp<SkView> fView;
};
#endif