summaryrefslogtreecommitdiffstats
path: root/kbarcode/rectitem.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-15 18:34:54 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-15 18:34:54 +0000
commit8805e6b17b1460f3316ccb28629e8ad78e4b9c2c (patch)
treedc9b702962ecf0060cc473397b9f80268c2456c9 /kbarcode/rectitem.h
downloadkbarcode-8805e6b17b1460f3316ccb28629e8ad78e4b9c2c.tar.gz
kbarcode-8805e6b17b1460f3316ccb28629e8ad78e4b9c2c.zip
Added abandoned KDE3 version of kbarcode
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kbarcode@1090667 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kbarcode/rectitem.h')
-rw-r--r--kbarcode/rectitem.h71
1 files changed, 71 insertions, 0 deletions
diff --git a/kbarcode/rectitem.h b/kbarcode/rectitem.h
new file mode 100644
index 0000000..c820db2
--- /dev/null
+++ b/kbarcode/rectitem.h
@@ -0,0 +1,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 <qstring.h>
+#include "documentitem.h"
+#include "qcolor.h"
+
+/**
+ * Class RectItem
+ * A rectangle or elipse.
+ */
+class RectItem : public DocumentItem {
+public:
+ RectItem ( );
+
+ int rtti() const { return eRtti_Rect; }
+ /**
+ *
+ * @param c
+ */
+ void setColor (const QColor & c=Qt::black);
+ QColor color () const;
+
+
+ /**
+ *
+ * @param f
+ */
+ void setFilled (bool f=true);
+ bool filled () const;
+
+ /**
+ *
+ * @param b
+ */
+ void setCircle (bool b=false);
+ bool circle () const;
+
+ void loadXML (QDomElement* element);
+ void saveXML (QDomElement* element);
+ void draw (QPainter* painter);
+ void drawZpl( QTextStream* stream );
+ void drawIpl( QTextStream* stream, IPLUtils* utils );
+ void drawEPcl( QTextStream* stream );
+
+private:
+ void init();
+
+private:
+ bool m_circle;
+ bool m_filled;
+ QColor m_color;
+};
+#endif //RECTITEM_H
+