You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
745 B
36 lines
745 B
/*
|
|
* 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;
|
|
void resize(SkScalar, SkScalar) override;
|
|
|
|
SkISize getDimensions() const override;
|
|
|
|
void draw(SkCanvas*) override;
|
|
private:
|
|
const SkString fPath;
|
|
|
|
SkSize fWinSize = SkSize::MakeEmpty();
|
|
sk_sp<SkSVGDOM> fDom;
|
|
|
|
using INHERITED = Slide;
|
|
};
|
|
|
|
#endif // SvgSlide_DEFINED
|