2018-04-05 15:57:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2018 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "tools/viewer/SvgSlide.h"
|
2018-04-05 15:57:21 +00:00
|
|
|
|
2018-07-31 20:38:43 +00:00
|
|
|
#if defined(SK_XML)
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "experimental/svg/model/SkSVGDOM.h"
|
|
|
|
#include "include/core/SkCanvas.h"
|
|
|
|
#include "include/core/SkStream.h"
|
2018-04-05 15:57:21 +00:00
|
|
|
|
|
|
|
SvgSlide::SvgSlide(const SkString& name, const SkString& path)
|
|
|
|
: fPath(path) {
|
|
|
|
fName = name;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SvgSlide::load(SkScalar w, SkScalar h) {
|
|
|
|
fWinSize = SkSize::Make(w, h);
|
|
|
|
|
|
|
|
if (const auto svgStream = SkStream::MakeFromFile(fPath.c_str())) {
|
|
|
|
fDom = SkSVGDOM::MakeFromStream(*svgStream);
|
|
|
|
if (fDom) {
|
|
|
|
fDom->setContainerSize(fWinSize);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SvgSlide::unload() {
|
|
|
|
fDom.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
SkISize SvgSlide::getDimensions() const {
|
|
|
|
// We always scale to fill the window.
|
|
|
|
return fWinSize.toCeil();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SvgSlide::draw(SkCanvas* canvas) {
|
|
|
|
if (fDom) {
|
|
|
|
fDom->render(canvas);
|
|
|
|
}
|
|
|
|
}
|
2018-07-31 20:38:43 +00:00
|
|
|
|
|
|
|
#endif // SK_XML
|