summaryrefslogtreecommitdiffstats
path: root/kbarcode/batchiface.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/batchiface.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/batchiface.h')
-rw-r--r--kbarcode/batchiface.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/kbarcode/batchiface.h b/kbarcode/batchiface.h
new file mode 100644
index 0000000..6eb6586
--- /dev/null
+++ b/kbarcode/batchiface.h
@@ -0,0 +1,46 @@
+/***************************************************************************
+ batchiface.h - description
+ -------------------
+ begin : Sat Dec 27 23:54:28 CET 2003
+ copyright : (C) 2003 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 BATCHIFACE_H
+#define BATCHIFACE_H
+
+#include <dcopobject.h>
+#include <qstringlist.h>
+#include "batchprinter.h"
+
+class BatchIface : virtual public DCOPObject
+{
+ K_DCOP
+
+ public:
+ k_dcop:
+ virtual void setFilename( const QString & url ) = 0;
+ virtual void setImportCsvFile( const QString & filename ) = 0;
+ virtual void setImportSqlQuery( const QString & query ) = 0;
+ virtual void setNumLabels( const int n ) = 0;
+ virtual void setOutputFormat( const int e ) = 0;
+ virtual void setSerialNumber( const QString & val, int inc ) = 0;
+
+ virtual bool addItem( const QString & article, const QString & group, int count = 1, bool msg = true ) = 0;
+ virtual bool existsArticle( const QString & article ) = 0;
+ virtual void loadFromFile( const QString & url ) = 0;
+ virtual void loadFromClipboard() = 0;
+ virtual void printNow( const QString & printer, bool bUserInteraction = true ) = 0;
+};
+
+#endif /* BATCHIFACE_H */
+