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"
|
2021-01-26 23:45:34 +00:00
|
|
|
#include "modules/skresources/include/SkResources.h"
|
2020-10-15 22:10:29 +00:00
|
|
|
#include "modules/svg/include/SkSVGDOM.h"
|
2021-01-26 23:45:34 +00:00
|
|
|
#include "src/utils/SkOSPath.h"
|
2018-04-05 15:57:21 +00:00
|
|
|
|
|
|
|
SvgSlide::SvgSlide(const SkString& name, const SkString& path)
|
2021-01-26 23:45:34 +00:00
|
|
|
: fPath(path)
|
|
|
|
{
|
2018-04-05 15:57:21 +00:00
|
|
|
fName = name;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SvgSlide::load(SkScalar w, SkScalar h) {
|
2021-01-26 23:45:34 +00:00
|
|
|
auto stream = SkStream::MakeFromFile(fPath.c_str());
|
|
|
|
|
|
|
|
if (!stream) {
|
|
|
|
SkDebugf("Could not open %s.\n", fPath.c_str());
|
2020-05-28 20:04:53 +00:00
|
|
|
return;
|
|
|
|
}
|
2018-04-05 15:57:21 +00:00
|
|
|
|
2020-05-28 20:04:53 +00:00
|
|
|
fWinSize = SkSize::Make(w, h);
|
|
|
|
|
2021-01-26 23:45:34 +00:00
|
|
|
auto rp = skresources::DataURIResourceProviderProxy::Make(
|
|
|
|
skresources::FileResourceProvider::Make(SkOSPath::Dirname(fPath.c_str()),
|
|
|
|
/*predecode=*/true),
|
|
|
|
/*predecode=*/true);
|
|
|
|
fDom = SkSVGDOM::Builder().setResourceProvider(std::move(rp)).make(*stream);
|
2020-05-28 20:04:53 +00:00
|
|
|
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
|