summaryrefslogtreecommitdiffstats
path: root/kbarcode/textitem.h
blob: 9c0b5a21da3a424e1af259029b4626ccf05e918d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/***************************************************************************
                         textitem.h  -  description
                             -------------------
    begin                : Do Sep 2 2004
    copyright            : (C) 2004 by Dominik Seichter
    email                : domseichter@web.de
 ***************************************************************************/

/***************************************************************************
                                                                          
    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 <tqstring.h>
#include "documentitem.h"

class LabelEditor;

/**
 * Class TextItem
 * Formated rich text (drawn using either DSRichText or TQSimpleRichText - once it is bug free) on screen or printer.
 */
class TextItem : public DocumentItem {
public:
    TextItem ();
        
    void draw (TQPainter* painter);
    void drawZpl( TQTextStream* stream );
    void drawIpl( TQTextStream* stream, IPLUtils* utils );
    void drawEPcl( TQTextStream* stream );
    
    int  rtti () const { return eRtti_Text; }

    void  loadXML (TQDomElement* element);
    void  saveXML (TQDomElement* element);
    
    void  setText (const TQString & text);
    TQString  text () const;

    inline void setRotation( double rot ) { m_rotation = rot; }
    inline double rotation() const { return m_rotation; }

    static bool IsTQtTextRenderingBroken();
private:
    void init();
    
private:
    static bool s_qt_broken;
    static bool s_qt_broken_init;

    double m_rotation;
    TQString m_text;
};
#endif //TEXTITEM_H