forked from amazingfate/loongoffice
Still not perfect, but it somewhat does work. Change-Id: Ic248e20f7ab18a37f56b2034f57551dded956bab
113 lines
4.4 KiB
C++
113 lines
4.4 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* 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 .
|
|
*/
|
|
|
|
#ifndef INCLUDED_OOX_CORE_RELATIONS_HXX
|
|
#define INCLUDED_OOX_CORE_RELATIONS_HXX
|
|
|
|
#include <map>
|
|
#include <boost/shared_ptr.hpp>
|
|
#include <oox/helper/helper.hxx>
|
|
#include <oox/dllapi.h>
|
|
|
|
namespace oox {
|
|
namespace core {
|
|
|
|
|
|
|
|
/** Expands to an OUString containing an 'officeDocument' transitional relation type created
|
|
from the passed literal(!) ASCII(!) character array. */
|
|
#define CREATE_OFFICEDOC_RELATION_TYPE( ascii ) \
|
|
( "http://schemas.openxmlformats.org/officeDocument/2006/relationships/" ascii )
|
|
|
|
/** Expands to an OUString containing an 'officeDocument' strict relation type created
|
|
from the passed literal(!) ASCII(!) character array. */
|
|
#define CREATE_OFFICEDOC_RELATION_TYPE_STRICT( ascii ) \
|
|
( "http://purl.oclc.org/ooxml/officeDocument/relationships/" ascii )
|
|
|
|
/** Expands to an OUString containing a 'package' relation type created from
|
|
the passed literal(!) ASCII(!) character array. */
|
|
#define CREATE_PACKAGE_RELATION_TYPE( ascii ) \
|
|
( "http://schemas.openxmlformats.org/package/2006/relationships/" ascii )
|
|
|
|
/** Expands to an OUString containing an MS Office specific relation type
|
|
created from the passed literal(!) ASCII(!) character array. */
|
|
#define CREATE_MSOFFICE_RELATION_TYPE( ascii ) \
|
|
( "http://schemas.microsoft.com/office/2006/relationships/" ascii )
|
|
|
|
#define CREATE_XL_CONTENT_TYPE( ascii ) \
|
|
( "application/vnd.openxmlformats-officedocument.spreadsheetml." ascii "+xml" )
|
|
|
|
struct Relation
|
|
{
|
|
OUString maId;
|
|
OUString maType;
|
|
OUString maTarget;
|
|
bool mbExternal;
|
|
|
|
Relation() : mbExternal( false ) {}
|
|
};
|
|
|
|
|
|
|
|
class Relations;
|
|
typedef ::boost::shared_ptr< Relations > RelationsRef;
|
|
|
|
class OOX_DLLPUBLIC Relations : public ::std::map< OUString, Relation >
|
|
{
|
|
public:
|
|
explicit Relations( const OUString& rFragmentPath );
|
|
|
|
/** Returns the path of the fragment this relations collection is related to. */
|
|
const OUString& getFragmentPath() const { return maFragmentPath; }
|
|
|
|
/** Returns the relation with the passed relation identifier. */
|
|
const Relation* getRelationFromRelId( const OUString& rId ) const;
|
|
/** Returns the first relation with the passed type. */
|
|
const Relation* getRelationFromFirstType( const OUString& rType ) const;
|
|
/** Returns the first relation with the passed type. */
|
|
const Relation* getRelationFromFirstTypeFromOfficeDoc( const OUString& rType ) const;
|
|
/** Finds all relations associated with the passed type. */
|
|
RelationsRef getRelationsFromTypeFromOfficeDoc( const OUString& rType ) const;
|
|
|
|
/** Returns the external target of the relation with the passed relation identifier. */
|
|
OUString getExternalTargetFromRelId( const OUString& rRelId ) const;
|
|
/** Returns the internal target of the relation with the passed relation identifier. */
|
|
OUString getInternalTargetFromRelId( const OUString& rRelId ) const;
|
|
|
|
/** Returns the full fragment path for the target of the passed relation. */
|
|
OUString getFragmentPathFromRelation( const Relation& rRelation ) const;
|
|
/** Returns the full fragment path for the passed relation identifier. */
|
|
OUString getFragmentPathFromRelId( const OUString& rRelId ) const;
|
|
/** Returns the full fragment path for the first relation of the passed type. */
|
|
OUString getFragmentPathFromFirstType( const OUString& rType ) const;
|
|
OUString getFragmentPathFromFirstTypeFromOfficeDoc( const OUString& rType ) const;
|
|
|
|
private:
|
|
OUString maFragmentPath;
|
|
};
|
|
|
|
|
|
|
|
} // namespace core
|
|
} // namespace oox
|
|
|
|
#endif
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|