00001 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 00002 /* 00003 * This file is part of the libetonyek project. 00004 * 00005 * This Source Code Form is subject to the terms of the Mozilla Public 00006 * License, v. 2.0. If a copy of the MPL was not distributed with this 00007 * file, You can obtain one at http://mozilla.org/MPL/2.0/. 00008 */ 00009 00010 #ifndef KEYDICTIONARY_H_INCLUDED 00011 #define KEYDICTIONARY_H_INCLUDED 00012 00013 #include "KEYPath.h" 00014 #include "KEYStyles_fwd.h" 00015 #include "KEYStylesheet.h" 00016 #include "KEYTypes.h" 00017 00018 namespace libetonyek 00019 { 00020 00035 struct KEYDictionary 00036 { 00037 KEYCharacterStyleMap_t characterStyles; 00038 KEYGraphicStyleMap_t graphicStyles; 00039 KEYLayoutStyleMap_t layoutStyles; 00040 KEYParagraphStyleMap_t paragraphStyles; 00041 KEYPlaceholderStyleMap_t placeholderStyles; 00042 00043 KEYStylesheetMap_t stylesheets; 00044 00045 KEYPathMap_t beziers; 00046 00047 KEYDataMap_t data; 00048 KEYMediaContentMap_t unfiltereds; 00049 KEYMediaContentMap_t filteredImages; 00050 KEYImageMap_t images; 00051 00052 KEYPlaceholderMap_t bodyPlaceholders; 00053 KEYPlaceholderMap_t titlePlaceholders; 00054 00055 KEYDictionary(); 00056 }; 00057 00058 } 00059 00060 #endif // KEYDICTIONARY_H_INCLUDED 00061 00062 /* vim:set shiftwidth=2 softtabstop=2 expandtab: */