LibreOffice Module xmloff (master) 1
QRCodeContext.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
9
10#include "QRCodeContext.hxx"
11
12#include <com/sun/star/beans/XPropertySet.hpp>
13#include <com/sun/star/embed/XStorage.hpp>
14#include <com/sun/star/frame/XStorable.hpp>
15#include <com/sun/star/graphic/XGraphic.hpp>
16#include <com/sun/star/drawing/BarCode.hpp>
17#include <com/sun/star/drawing/BarCodeErrorCorrection.hpp>
18#include <com/sun/star/xml/sax/XAttributeList.hpp>
19
20#include <xmloff/xmltoken.hxx>
21#include <xmloff/xmlimp.hxx>
25
26#include <rtl/ustring.hxx>
27
28using namespace css;
29using namespace css::xml::sax;
30using namespace css::uno;
31using namespace css::drawing;
32using namespace css::embed;
33using namespace css::frame;
34using namespace css::io;
35using namespace css::graphic;
36using namespace xmloff::token;
37
38QRCodeContext::QRCodeContext(SvXMLImport& rImport, sal_Int32 /*nElement*/,
39 const Reference<XFastAttributeList>& xAttrList,
40 const Reference<XShape>& rxShape)
41 : SvXMLImportContext(rImport)
42{
43 Reference<beans::XPropertySet> xPropSet(rxShape, UNO_QUERY_THROW);
44
45 css::drawing::BarCode aBarCode;
46
47 for (auto& aIter : sax_fastparser::castToFastAttributeList(xAttrList))
48 {
49 switch (aIter.getToken())
50 {
52 {
53 OUString aErrorCorrValue = aIter.toString();
54
55 if (aErrorCorrValue == "low")
56 aBarCode.ErrorCorrection = css::drawing::BarCodeErrorCorrection::LOW;
57 else if (aErrorCorrValue == "medium")
58 aBarCode.ErrorCorrection = css::drawing::BarCodeErrorCorrection::MEDIUM;
59 else if (aErrorCorrValue == "quartile")
60 aBarCode.ErrorCorrection = css::drawing::BarCodeErrorCorrection::QUARTILE;
61 else
62 aBarCode.ErrorCorrection = css::drawing::BarCodeErrorCorrection::HIGH;
63 break;
64 }
65 case XML_ELEMENT(LO_EXT, XML_QRCODE_BORDER):
66 {
67 sal_Int32 nAttrVal;
68 if (sax::Converter::convertNumber(nAttrVal, aIter.toView(), 0))
69 aBarCode.Border = nAttrVal;
70 break;
71 }
73 {
74 aBarCode.Payload = aIter.toString();
75 break;
76 }
77 case XML_ELEMENT(LO_EXT, XML_QRCODE_TYPE):
78 {
79 sal_Int32 nAttrVal;
80 if (sax::Converter::convertNumber(nAttrVal, aIter.toView(), 0))
81 aBarCode.Type = nAttrVal;
82 break;
83 }
84 default:
85 XMLOFF_WARN_UNKNOWN("xmloff", aIter);
86 }
87 }
88 xPropSet->setPropertyValue("BarCodeProperties", Any(aBarCode));
89}
90
91/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
QRCodeContext(SvXMLImport &rImport, sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList > &xAttrList, const css::uno::Reference< css::drawing::XShape > &rxShape)
This class deliberately does not support XWeak, to improve performance when loading large documents.
Definition: xmlictxt.hxx:48
static bool convertNumber(sal_Int32 &rValue, std::u16string_view aString, sal_Int32 nMin=SAL_MIN_INT32, sal_Int32 nMax=SAL_MAX_INT32)
FastAttributeList & castToFastAttributeList(const css::uno::Reference< css::xml::sax::XFastAttributeList > &xAttrList)
Handling of tokens in XML:
@ XML_QRCODE_ERROR_CORRECTION
Definition: xmltoken.hxx:1584
#define XMLOFF_WARN_UNKNOWN(area, rIter)
Definition: xmlictxt.hxx:114
#define XML_ELEMENT(prefix, name)
Definition: xmlimp.hxx:97