2010-10-12 15:53:47 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-21 14:30:25 +01: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 .
|
|
|
|
*/
|
2006-09-17 09:17:18 +00:00
|
|
|
|
2001-08-14 10:54:46 +00:00
|
|
|
#include "XMLChartPropertyContext.hxx"
|
|
|
|
#include "PropertyMap.hxx"
|
|
|
|
|
|
|
|
#include "XMLSymbolImageContext.hxx"
|
2007-10-22 15:33:36 +00:00
|
|
|
#include "XMLLabelSeparatorContext.hxx"
|
2001-08-14 10:54:46 +00:00
|
|
|
|
|
|
|
TYPEINIT1( XMLChartPropertyContext, SvXMLImportContext );
|
|
|
|
|
|
|
|
using namespace ::com::sun::star;
|
|
|
|
|
|
|
|
XMLChartPropertyContext::XMLChartPropertyContext(
|
|
|
|
SvXMLImport& rImport,
|
|
|
|
sal_uInt16 nPrfx,
|
2013-04-07 12:06:47 +02:00
|
|
|
const OUString& rLName,
|
2001-08-14 10:54:46 +00:00
|
|
|
const uno::Reference< xml::sax::XAttributeList > & xAttrList,
|
2004-07-13 07:04:24 +00:00
|
|
|
sal_uInt32 nFamily,
|
2001-08-14 10:54:46 +00:00
|
|
|
::std::vector< XMLPropertyState >& rProps,
|
|
|
|
const UniReference< SvXMLImportPropertyMapper >& rMapper ) :
|
2004-07-13 07:04:24 +00:00
|
|
|
SvXMLPropertySetContext( rImport, nPrfx, rLName, xAttrList, nFamily, rProps, rMapper )
|
2001-08-14 10:54:46 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
XMLChartPropertyContext::~XMLChartPropertyContext()
|
|
|
|
{}
|
|
|
|
|
|
|
|
SvXMLImportContext* XMLChartPropertyContext::CreateChildContext(
|
|
|
|
sal_uInt16 nPrefix,
|
2013-04-07 12:06:47 +02:00
|
|
|
const OUString& rLocalName,
|
2001-08-14 10:54:46 +00:00
|
|
|
const uno::Reference< xml::sax::XAttributeList > & xAttrList,
|
|
|
|
::std::vector< XMLPropertyState > &rProperties,
|
|
|
|
const XMLPropertyState& rProp )
|
|
|
|
{
|
|
|
|
SvXMLImportContext *pContext = 0;
|
|
|
|
|
2006-06-19 17:02:31 +00:00
|
|
|
switch( mxMapper->getPropertySetMapper()->GetEntryContextId( rProp.mnIndex ) )
|
2001-08-14 10:54:46 +00:00
|
|
|
{
|
|
|
|
case XML_SCH_CONTEXT_SPECIAL_SYMBOL_IMAGE:
|
|
|
|
pContext = new XMLSymbolImageContext( GetImport(), nPrefix, rLocalName, rProp, rProperties );
|
|
|
|
break;
|
2007-10-22 15:33:36 +00:00
|
|
|
case XML_SCH_CONTEXT_SPECIAL_LABEL_SEPARATOR:
|
|
|
|
pContext = new XMLLabelSeparatorContext( GetImport(), nPrefix, rLocalName, rProp, rProperties );
|
|
|
|
break;
|
2001-08-14 10:54:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// default / no context yet: create child context by base class
|
|
|
|
if( !pContext )
|
|
|
|
{
|
|
|
|
pContext = SvXMLPropertySetContext::CreateChildContext(
|
|
|
|
nPrefix, rLocalName, xAttrList, rProperties, rProp );
|
|
|
|
}
|
|
|
|
|
|
|
|
return pContext;
|
|
|
|
}
|
2010-10-12 15:53:47 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|