|
CenGen - Генератор ценников
1.1
|
00001 #ifndef IMAGEBOX_H 00002 #define IMAGEBOX_H 00003 00004 //определение размера текста на сцене 00005 00006 #include <QGraphicsScene> 00007 #include <QGraphicsTextItem> 00008 #include <QFont> 00009 #include <QString> 00010 #include <QRectF> 00011 00012 00013 class ImageBox { 00014 public: 00015 ImageBox(); 00016 ~ImageBox(); 00017 00018 public slots: 00019 QRectF imagebox(QFont font, QString textline, QGraphicsScene *scene); 00020 QStringList mysplit(QString text); 00021 QString superSplit(QString text); 00022 }; 00023 00024 #endif // IMAGEBOX_H