d532bdbc86
It's nice to be able to resize the SVG container on the fly. Change-Id: I6624e6151aaff7e2a7f6eb07e84aee88c4a2e408 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/282418 Auto-Submit: Florin Malita <fmalita@chromium.org> Commit-Queue: Tyler Denniston <tdenniston@google.com> Reviewed-by: Tyler Denniston <tdenniston@google.com>
36 lines
745 B
C++
36 lines
745 B
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 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;
|
|
|
|
typedef Slide INHERITED;
|
|
};
|
|
|
|
#endif // SvgSlide_DEFINED
|