summaryrefslogtreecommitdiffstats
path: root/kbarcode/barkodeengine.cpp
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/barkodeengine.cpp
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/barkodeengine.cpp')
-rw-r--r--kbarcode/barkodeengine.cpp55
1 files changed, 55 insertions, 0 deletions
diff --git a/kbarcode/barkodeengine.cpp b/kbarcode/barkodeengine.cpp
new file mode 100644
index 0000000..f05440e
--- /dev/null
+++ b/kbarcode/barkodeengine.cpp
@@ -0,0 +1,55 @@
+/***************************************************************************
+ barkodeengine.cpp - description
+ -------------------
+ begin : Fri Nov 05 2004
+ 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. *
+ * *
+ ***************************************************************************/
+
+#include "barkodeengine.h"
+#include "barkode.h"
+
+BarkodeEngine::BarkodeEngine()
+{
+ m_valid = false;
+ barkode = NULL;
+}
+
+BarkodeEngine::~BarkodeEngine()
+{
+}
+
+BarkodeEngineOptions* BarkodeEngine::options()
+{
+ return NULL;
+}
+
+EmptyEngine::EmptyEngine()
+ : BarkodeEngine()
+{
+}
+
+void EmptyEngine::update( const QPaintDevice* )
+{
+ // Do nothing
+}
+
+const QSize EmptyEngine::size() const
+{
+ return QSize( 150, 80 );
+}
+
+void EmptyEngine::drawBarcode( QPainter & painter, int x, int y )
+{
+ barkode->drawInvalid( painter, x, y );
+}
+