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

0001 /*
0002  *  SPDX-License-Identifier: GPL-3.0-or-later
0003  */
0004 
0005 #ifndef KOTOSCONTAINER_P_H
0006 #define KOTOSCONTAINER_P_H
0007 
0008 #include "kritaflake_export.h"
0009 #include "KoShapeContainer_p.h"
0010 
0011 #include "KoTosContainer.h"
0012 #include <QSharedData>
0013 #include <QRect>
0014 
0015 class KoTosContainer::Private : public QSharedData
0016 {
0017 public:
0018 
0019     explicit Private();
0020     explicit Private(const Private &rhs);
0021 
0022     virtual ~Private();
0023 
0024     KoTosContainer::ResizeBehavior resizeBehavior;
0025     QRectF preferredTextRect;
0026     Qt::Alignment alignment;
0027 };
0028 
0029 #endif // KOTOSCONTAINER_P_H