blob: 1744d74a9da35916f8ea15344c431a7e45dd1f00 [file] [log] [blame]
/*
* 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 SvgSlide_DEFINED
#define SvgSlide_DEFINED
#include "tools/viewer/Slide.h"
class SkSVGDOM;
class SvgSlide final : public Slide {
public:
SvgSlide(const SkString& name, const SkString& path);
void load(SkScalar winWidth, SkScalar winHeight) override;
void unload() override;
SkISize getDimensions() const override;
void draw(SkCanvas*) override;
private:
const SkString fPath;
SkSize fWinSize = SkSize::MakeEmpty();
sk_sp<SkSVGDOM> fDom;
typedef Slide INHERITED;
};
#endif // SvgSlide_DEFINED