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 "include/core/SkCanvas.h"
|
|
|
|
#include "include/core/SkStream.h"
|
2020-10-15 13:22:35 +00:00
|
|
|
#include "modules/svg/include/SkSVGDOM.h"
|
2018-04-05 15:57:21 +00:00
|
|
|
|
|
|
|
SvgSlide::SvgSlide(const SkString& name, const SkString& path)
|
2020-05-28 20:04:53 +00:00
|
|
|
: SvgSlide(name, SkStream::MakeFromFile(path.c_str())) {
|
|
|
|
}
|
|
|
|
|
|
|
|
SvgSlide::SvgSlide(const SkString& name, std::unique_ptr<SkStream> stream)
|
|
|
|
: fStream(std::move(stream)) {
|
2018-04-05 15:57:21 +00:00
|
|
|
fName = name;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SvgSlide::load(SkScalar w, SkScalar h) {
|
2020-05-28 20:04:53 +00:00
|
|
|
if (!fStream) {
|
|
|
|
SkDebugf("No svg stream for slide %s.\n", fName.c_str());
|
|
|
|
return;
|
|
|
|
}
|
2018-04-05 15:57:21 +00:00
|
|
|
|
2020-05-28 20:04:53 +00:00
|
|
|
fWinSize = SkSize::Make(w, h);
|
|
|
|
|
|
|
|
fStream->rewind();
|
|
|
|
fDom = SkSVGDOM::MakeFromStream(*fStream);
|
|
|
|
if (fDom) {
|
|
|
|
fDom->setContainerSize(fWinSize);
|
2018-04-05 15:57:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SvgSlide::unload() {
|
|
|
|
fDom.reset();
|
|
|
|
}
|
|
|
|
|
2020-04-09 01:12:10 +00:00
|
|
|
void SvgSlide::resize(SkScalar w, SkScalar h) {
|
|
|
|
fWinSize = { w, h };
|
|
|
|
if (fDom) {
|
|
|
|
fDom->setContainerSize(fWinSize);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-05 15:57:21 +00:00
|
|
|
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
|