7571f9e490
Mechanically updated via Xcode "Replace Regular Expression": typedef (.*) INHERITED; --> using INHERITED = $1; The ClangTidy approach generated an even larger CL which would have required a significant amount of hand-tweaking to be usable. Change-Id: I671dc9d9efdf6d60151325c8d4d13fad7e10a15b Reviewed-on: https://skia-review.googlesource.com/c/skia/+/314999 Commit-Queue: Mike Klein <mtklein@google.com> Reviewed-by: Mike Klein <mtklein@google.com> Auto-Submit: John Stiles <johnstiles@google.com>
36 lines
810 B
C++
36 lines
810 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);
|
|
SvgSlide(const SkString& name, std::unique_ptr<SkStream>);
|
|
|
|
void load(SkScalar winWidth, SkScalar winHeight) override;
|
|
void unload() override;
|
|
void resize(SkScalar, SkScalar) override;
|
|
|
|
SkISize getDimensions() const override;
|
|
|
|
void draw(SkCanvas*) override;
|
|
private:
|
|
std::unique_ptr<SkStream> fStream;
|
|
SkSize fWinSize = SkSize::MakeEmpty();
|
|
sk_sp<SkSVGDOM> fDom;
|
|
|
|
using INHERITED = Slide;
|
|
};
|
|
|
|
#endif // SvgSlide_DEFINED
|