summaryrefslogtreecommitdiffstats
path: root/kbarcode/databasebrowser.h
blob: 198ae26bc8835bfcb08690176bb8522008d046b6 (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
70
/***************************************************************************
                          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 TDEAction;
class KEdFind;
class KMenuBar;
class TDEToolBar;
class KPushButton;
class TDEPopupMenu;
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{
    TQ_OBJECT
  
    public:
        DatabaseBrowser( TQString _database, TQWidget *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:
        TQString database;
        MyDataTable* table;

        TDEAction* undoAct;
        TDEAction* deleteAct;
        TDEAction* newAct;

        KEdFind* findDlg;

        TQString m_find;
        bool m_direction;
        bool m_case;
};

#endif