summaryrefslogtreecommitdiffstats
path: root/kbarcode/databasebrowser.h
diff options
context:
space:
mode:
Diffstat (limited to 'kbarcode/databasebrowser.h')
-rw-r--r--kbarcode/databasebrowser.h69
1 files changed, 69 insertions, 0 deletions
diff --git a/kbarcode/databasebrowser.h b/kbarcode/databasebrowser.h
new file mode 100644
index 0000000..1968f88
--- /dev/null
+++ b/kbarcode/databasebrowser.h
@@ -0,0 +1,69 @@
+/***************************************************************************
+ databasebrowser.h - description
+ -------------------
+ begin : Mit Mai 15 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 DATABASEBROWSER_H
+#define DATABASEBROWSER_H
+
+#include "dsmainwindow.h"
+
+class KAction;
+class KEdFind;
+class KMenuBar;
+class KToolBar;
+class KPushButton;
+class KPopupMenu;
+class MyDataTable;
+/** A database browser widget. Allows small changes to SQL tables
+ * and is mostly used for having a quick look on the tables.
+ */
+class DatabaseBrowser : public DSMainWindow{
+ Q_OBJECT
+ public:
+ DatabaseBrowser( QString _database, QWidget *parent=0, const char *name=0);
+ ~DatabaseBrowser();
+
+ private:
+ void setupActions();
+
+ private slots:
+ void setupSql();
+
+ void cut();
+ void copy();
+ void paste();
+
+ void find();
+ void findNext();
+
+ void import();
+
+ protected:
+ QString database;
+ MyDataTable* table;
+
+ KAction* undoAct;
+ KAction* deleteAct;
+ KAction* newAct;
+
+ KEdFind* findDlg;
+
+ QString m_find;
+ bool m_direction;
+ bool m_case;
+};
+
+#endif