summaryrefslogtreecommitdiffstats
path: root/kbarcode/kbarcodeiface.h
diff options
context:
space:
mode:
Diffstat (limited to 'kbarcode/kbarcodeiface.h')
-rw-r--r--kbarcode/kbarcodeiface.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/kbarcode/kbarcodeiface.h b/kbarcode/kbarcodeiface.h
new file mode 100644
index 0000000..b53f260
--- /dev/null
+++ b/kbarcode/kbarcodeiface.h
@@ -0,0 +1,46 @@
+/***************************************************************************
+ kbarcodeiface.h - description
+ -------------------
+ begin : Sat Dec 27 23:53: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 KBARCODEIFACE_H
+#define KBARCODEIFACE_H
+
+#include <dcopobject.h>
+
+class KBarcodeIface : virtual public DCOPObject
+{
+ K_DCOP
+
+ public:
+ k_dcop:
+ virtual void startBarcode() = 0;
+ virtual void startLabelEditor() = 0;
+ virtual void startBatchPrint() = 0;
+
+ virtual void editArticles() = 0;
+ virtual void editCustomers() = 0;
+ virtual void editCustomerText() = 0;
+ virtual void editLabelDef() = 0;
+
+ virtual void importCSV() = 0;
+
+ virtual bool isSQLConnected() const = 0;
+ virtual bool connectSQL() = 0;
+ virtual void showWizard() = 0;
+ virtual void showConfigure() = 0;
+};
+
+#endif /* KBARCODEIFACE_H */