File indexing completed on 2024-05-12 15:56:51

0001 /* This file is part of the KDE project
0002  * SPDX-FileCopyrightText: 2006-2010 Thomas Zander <zander@kde.org>
0003  *
0004  * SPDX-License-Identifier: LGPL-2.0-or-later
0005  */
0006 
0007 #ifndef KOTEXTSHAPEDATABASE_P_H
0008 #define KOTEXTSHAPEDATABASE_P_H
0009 
0010 #include "KoInsets.h"
0011 
0012 class QTextDocument;
0013 
0014 /// \internal
0015 class KRITAFLAKE_EXPORT KoTextShapeDataBasePrivate
0016 {
0017 public:
0018     KoTextShapeDataBasePrivate();
0019     virtual ~KoTextShapeDataBasePrivate();
0020 
0021     KoTextShapeDataBasePrivate(const KoTextShapeDataBasePrivate &rhs);
0022 
0023     QScopedPointer<QTextDocument> document;
0024     KoInsets margins;
0025     Qt::Alignment textAlignment;
0026     KoTextShapeDataBase::ResizeMethod resizeMethod;
0027 };
0028 
0029 #endif
0030