summaryrefslogtreecommitdiffstats
path: root/kbarcode/rectitem.h
blob: 36868995455559c2b31c3b8113c1ceac2beecd00 (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
62
63
64
65
66
67
68
69
70
71
/***************************************************************************
                         rectitem.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 RECTITEM_H
#define RECTITEM_H
#include <tqstring.h>
#include "documentitem.h"
#include "tqcolor.h"

/**
 * Class RectItem
 * A rectangle or elipse.
 */
class RectItem : public DocumentItem {
public:
    RectItem ( );
    
    int rtti() const { return eRtti_Rect; }
    /**
     * 
     * @param c 
     */
    void  setColor (const TQColor & c=TQt::black);
    TQColor  color () const;
        
    
    /**
     * 
     * @param f 
     */
    void  setFilled (bool f=true);
    bool  filled () const;
    
    /**
     * 
     * @param b 
     */
    void  setCircle (bool b=false);
    bool  circle () const;

    void  loadXML (TQDomElement* element);
    void  saveXML (TQDomElement* element);
    void  draw (TQPainter* painter); 
    void drawZpl( TQTextStream* stream );
    void drawIpl( TQTextStream* stream, IPLUtils* utils );
    void drawEPcl( TQTextStream* stream );
    
private:    
    void init();
    
private:
     bool m_circle;
     bool m_filled;
     TQColor m_color;
};
#endif //RECTITEM_H