LibreOffice Module xmloff (master) 1
descriptionimp.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20#include <com/sun/star/beans/XPropertySet.hpp>
21#include <com/sun/star/xml/sax/XAttributeList.hpp>
22#include <xmloff/xmltoken.hxx>
23#include <xmloff/xmlimp.hxx>
24
25#include "descriptionimp.hxx"
26
27using namespace ::cppu;
28using namespace ::com::sun::star;
29using namespace ::com::sun::star::xml;
30using namespace ::com::sun::star::xml::sax;
31using namespace ::com::sun::star::uno;
32using namespace ::com::sun::star::drawing;
33using namespace ::com::sun::star::beans;
34using namespace ::xmloff::token;
35
36
37SdXMLDescriptionContext::SdXMLDescriptionContext( SvXMLImport& rImport, sal_Int32 nElement, const Reference< XShape >& rxShape)
38: SvXMLImportContext(rImport), mxShape( rxShape ), mnElement(nElement)
39{
40}
41
43{
44}
45
47{
48 if( msText.isEmpty() )
49 return;
50
51 try
52 {
53 uno::Reference< beans::XPropertySet > xPropSet(mxShape, uno::UNO_QUERY_THROW);
55 {
56 xPropSet->setPropertyValue("Title", Any(msText));
57 }
58 else
59 {
60 xPropSet->setPropertyValue("Description", Any(msText));
61 }
62 }
63 catch( uno::Exception& )
64 {
65 }
66}
67
68// This method is called for all characters that are contained in the
69// current element. The default is to ignore them.
70void SdXMLDescriptionContext::characters( const OUString& rChars )
71{
72 msText += rChars;
73}
74
75/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual void SAL_CALL characters(const OUString &rChars) override
This method is called for all characters that are contained in the current element.
virtual ~SdXMLDescriptionContext() override
virtual void SAL_CALL endFastElement(sal_Int32 nElement) override
endFastElement is called before a context will be destructed, but after an elements context has been ...
SdXMLDescriptionContext(SvXMLImport &rImport, sal_Int32 mnElement, const css::uno::Reference< css::drawing::XShape > &rxShape)
css::uno::Reference< css::drawing::XShape > mxShape
This class deliberately does not support XWeak, to improve performance when loading large documents.
Definition: xmlictxt.hxx:48
Handling of tokens in XML:
uno::Reference< drawing::XShape > const mxShape
constexpr sal_Int32 TOKEN_MASK
Definition: xmlimp.hxx:94