cd5104e942
Change-Id: I700b7c0461475062ac66712cc29070f150cf777d Reviewed-on: https://skia-review.googlesource.com/c/skia/+/202315 Commit-Queue: Mike Klein <mtklein@google.com> Reviewed-by: Brian Osman <brianosman@google.com>
49 lines
1.1 KiB
C++
49 lines
1.1 KiB
C++
/*
|
|
* Copyright 2018 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef NIMASlide_DEFINED
|
|
#define NIMASlide_DEFINED
|
|
|
|
#include "Slide.h"
|
|
|
|
#include "SkCanvas.h"
|
|
#include "SkVertices.h"
|
|
#include "nima/NimaActor.h"
|
|
|
|
class NIMASlide : public Slide {
|
|
public:
|
|
NIMASlide(const SkString& name, const SkString& path);
|
|
~NIMASlide() override;
|
|
|
|
SkISize getDimensions() const override;
|
|
|
|
void draw(SkCanvas* canvas) override;
|
|
void load(SkScalar winWidth, SkScalar winHeight) override;
|
|
void unload() override;
|
|
bool animate(const AnimTimer& timer) override;
|
|
|
|
bool onChar(SkUnichar c) override;
|
|
bool onMouse(SkScalar x, SkScalar y, sk_app::Window::InputState state,
|
|
uint32_t modifiers) override;
|
|
|
|
private:
|
|
void resetActor();
|
|
|
|
void renderGUI();
|
|
|
|
private:
|
|
std::string fBasePath;
|
|
std::unique_ptr<NimaActor> fActor;
|
|
int fAnimationIndex;
|
|
|
|
bool fPlaying;
|
|
float fTime;
|
|
uint32_t fRenderFlags;
|
|
};
|
|
|
|
#endif
|