You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.6 KiB
45 lines
1.6 KiB
/***************************************************************************
|
|
lineitem.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 LINEITEM_H
|
|
#define LINEITEM_H
|
|
#include <tqstring.h>
|
|
#include "documentitem.h"
|
|
#include "tqcolor.h"
|
|
|
|
/**
|
|
* Class LineItem
|
|
* Implements a line on screen or printer
|
|
*/
|
|
class LineItem : public DocumentItem {
|
|
public:
|
|
LineItem ();
|
|
|
|
virtual int rtti() const { return eRtti_Line; }
|
|
virtual void draw(TQPainter* painter);
|
|
virtual void drawZpl( TQTextStream* stream );
|
|
virtual void drawIpl( TQTextStream* stream, IPLUtils* utils );
|
|
virtual void drawEPcl( TQTextStream* stream );
|
|
virtual void loadXML(TQDomElement* element);
|
|
virtual void saveXML(TQDomElement* element);
|
|
|
|
private:
|
|
void init();
|
|
};
|
|
#endif //LINEITEM_H
|
|
|