summaryrefslogtreecommitdiffstats
path: root/kbarcode/databasebrowser.h
blob: 1968f88269c63e960860ba36d7cb7502359dba7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
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