diff options
Diffstat (limited to 'kbarcode/textitem.h')
-rw-r--r-- | kbarcode/textitem.h | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/kbarcode/textitem.h b/kbarcode/textitem.h new file mode 100644 index 0000000..cec5d46 --- /dev/null +++ b/kbarcode/textitem.h @@ -0,0 +1,61 @@ +/*************************************************************************** + textitem.h - description + ------------------- + begin : Do Sep 2 2004 + copyright : (C) 2004 by Dominik Seichter + email : [email protected] + ***************************************************************************/ + +/*************************************************************************** + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + ***************************************************************************/ + +#ifndef TEXTITEM_H +#define TEXTITEM_H +#include <qstring.h> +#include "documentitem.h" + +class LabelEditor; + +/** + * Class TextItem + * Formated rich text (drawn using either DSRichText or QSimpleRichText - once it is bug free) on screen or printer. + */ +class TextItem : public DocumentItem { +public: + TextItem (); + + void draw (QPainter* painter); + void drawZpl( QTextStream* stream ); + void drawIpl( QTextStream* stream, IPLUtils* utils ); + void drawEPcl( QTextStream* stream ); + + int rtti () const { return eRtti_Text; } + + void loadXML (QDomElement* element); + void saveXML (QDomElement* element); + + void setText (const QString & text); + QString text () const; + + inline void setRotation( double rot ) { m_rotation = rot; } + inline double rotation() const { return m_rotation; } + + static bool IsQtTextRenderingBroken(); +private: + void init(); + +private: + static bool s_qt_broken; + static bool s_qt_broken_init; + + double m_rotation; + QString m_text; +}; +#endif //TEXTITEM_H + |