File indexing completed on 2026-01-18 12:38:05
0001 /* 0002 * This file is part of Office 2007 Filters for Calligra 0003 * 0004 * SPDX-FileCopyrightText: 2010 Nokia Corporation and /or its subsidiary(-ies). 0005 * 0006 * Contact: Suresh Chande suresh.chande@nokia.com 0007 * 0008 * SPDX-License-Identifier: LGPL-2.1-only 0009 * 0010 */ 0011 0012 #ifndef PREDEFINEDSHAPEHELPER_H 0013 #define PREDEFINEDSHAPEHELPER_H 0014 0015 #include <QHash> 0016 0017 // This class can be used to to get draw information of 0018 // predefined shapes in ooxml 0019 class PredefinedShapeHelper 0020 { 0021 public: 0022 PredefinedShapeHelper(); 0023 0024 // Container for draw:equations 0025 QHash<QString, QString> equations; 0026 0027 // Container for draw:enhanced-path attributes for shapes, these should be used in draw:enhanced-geometry 0028 QHash<QString, QString> attributes; 0029 0030 // Container for draw:text-areas attribute, should be used in draw:enhanced-geometry 0031 QHash<QString, QString> textareas; 0032 0033 }; 0034 0035 #endif