summaryrefslogtreecommitdiffstats
path: root/kivio/kiviopart/kiviosdk/kivio_text_style.h
blob: 5ce3afe99e27bb4bf3cf13924dafdc57545f165d (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
#ifndef KIVIO_TEXT_STYLE_H
#define KIVIO_TEXT_STYLE_H

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <qfont.h>

class QDomDocument;
class QPainter;


class KivioTextStyle
{
protected:
    QString m_text;                                 // The text inside this shape
    QColor m_color;                                 // The text color
    QFont m_font;                                   // The text font
    bool m_isHtml;                                  // Is the text HTML formatted?
    int m_hTextAlign, m_vTextAlign;                 // Horizontal and vertical text alignment flags

public:
    KivioTextStyle();
    virtual ~KivioTextStyle();

    QDomElement saveXML( QDomDocument & );
    bool loadXML( const QDomElement & );

    void copyInto( KivioTextStyle * );




    inline QString text() { return m_text; }
    inline void setText( QString s ) { m_text=s; }

    inline QColor color() { return m_color; }
    inline void setColor( QColor c ) { m_color=c; }

    inline QFont font() { return m_font; }
    inline void setFont( QFont f ) { m_font=f; }

    inline bool isHtml() { return m_isHtml; }
    inline void setIsHtml( bool b ) { m_isHtml=b; }

    inline int hTextAlign() { return m_hTextAlign; }
    inline void setHTextAlign(int i) { m_hTextAlign=i; }

    inline int vTextAlign() { return m_vTextAlign; }
    inline void setVTextAlign(int i) { m_vTextAlign=i; }

};

#endif