2010-10-27 07:11:31 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-21 08:30:25 -05:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2001-01-05 09:27:42 -06:00
|
|
|
#ifndef _XMLOFF_XMLSHAPEPROPERTYSETCONTEXT_HXX
|
|
|
|
#define _XMLOFF_XMLSHAPEPROPERTYSETCONTEXT_HXX
|
|
|
|
|
|
|
|
|
2007-06-27 08:42:43 -05:00
|
|
|
#include <xmloff/xmlprcon.hxx>
|
2001-01-05 09:27:42 -06:00
|
|
|
|
|
|
|
class XMLShapePropertySetContext : public SvXMLPropertySetContext
|
|
|
|
{
|
|
|
|
SvXMLImportContextRef mxBulletStyle;
|
|
|
|
sal_Int32 mnBulletIndex;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
TYPEINFO();
|
|
|
|
|
|
|
|
XMLShapePropertySetContext( SvXMLImport& rImport, sal_uInt16 nPrfx,
|
|
|
|
const ::rtl::OUString& rLName,
|
|
|
|
const ::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::xml::sax::XAttributeList >& xAttrList,
|
2004-07-13 01:55:32 -05:00
|
|
|
sal_uInt32 nFam,
|
2001-01-05 09:27:42 -06:00
|
|
|
::std::vector< XMLPropertyState > &rProps,
|
|
|
|
const UniReference < SvXMLImportPropertyMapper > &rMap );
|
|
|
|
|
|
|
|
virtual ~XMLShapePropertySetContext();
|
|
|
|
|
|
|
|
virtual void EndElement();
|
|
|
|
|
2006-06-19 11:54:28 -05:00
|
|
|
using SvXMLPropertySetContext::CreateChildContext;
|
2010-11-09 23:50:33 -06:00
|
|
|
virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix,
|
2001-01-05 09:27:42 -06:00
|
|
|
const ::rtl::OUString& rLocalName,
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList,
|
|
|
|
::std::vector< XMLPropertyState > &rProperties,
|
|
|
|
const XMLPropertyState& rProp);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
2010-10-27 07:11:31 -05:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|