/* AbiSource * * Copyright (C) 2005 Daniel d'Andrada T. de Carvalho * * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. */ #ifndef _ODI_ABI_DATA_H_ #define _ODI_ABI_DATA_H_ #include #include // External includes #include #include "ut_types.h" // AbiWord classes class PD_Document; class UT_String; class UT_ByteBuf; /** * Represents the section of the resulting AbiWord document from an * OpenDocument file import. */ class ODi_Abi_Data { public: ODi_Abi_Data(PD_Document* pDocument, GsfInfile* pGsfInfile); /** * Adds an data item ( tag) in the AbiWord document for the specified image. * * @param rDataId Receives the id that has been given to the added data item. * @param ppAtts The attributes of a element. */ bool addImageDataItem(UT_String& rDataId, const gchar** ppAtts); bool addObjectDataItem(UT_String& rDataId, const gchar** ppAtts, int& pto_Type); private: UT_Error _loadStream (GsfInfile* oo, const char* stream, UT_ByteBuf& buf); void _splitDirectoryAndFileName(const gchar* pHRef, UT_String& dirName, UT_String& fileName) const; PD_Document* m_pAbiDocument; GsfInfile* m_pGsfInfile; // Stores all added data items id's, given its hrefs. // Used to avoid adding multiple data items for the same picture. typedef std::map href_id_map_t; href_id_map_t m_href_to_id; }; #endif //_ODI_ABI_DATA_H_