summaryrefslogtreecommitdiffstats
path: root/kbarcode/mycanvasitem.h
diff options
context:
space:
mode:
Diffstat (limited to 'kbarcode/mycanvasitem.h')
-rw-r--r--kbarcode/mycanvasitem.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/kbarcode/mycanvasitem.h b/kbarcode/mycanvasitem.h
new file mode 100644
index 0000000..a01d9c2
--- /dev/null
+++ b/kbarcode/mycanvasitem.h
@@ -0,0 +1,52 @@
+/***************************************************************************
+ mycanvasitem.h - description
+ -------------------
+ begin : Die Apr 23 2002
+ copyright : (C) 2002 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 MYCANVASITEM_H
+#define MYCANVASITEM_H
+
+#include <qcanvas.h>
+#include <qpoint.h>
+#include <qimage.h>
+#include <qpicture.h>
+#include "tokenprovider.h"
+
+#define SPOTSIZE 7
+
+class QPixmap;
+/** A very small singleton, which creates a pixmap
+ * for the accesor points in the label editor.
+ *
+ * @author Dominik Seichter
+ */
+class SpotProvider {
+ public:
+ static SpotProvider* getInstance();
+
+ const QPixmap* spot() const {
+ return m_spot;
+ }
+
+ private:
+ SpotProvider();
+ ~SpotProvider();
+
+ static SpotProvider* instance;
+ static QPixmap* m_spot;
+};
+
+
+#endif