~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to kdevdesigner/designer/database.h

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2006-05-23 18:39:42 UTC
  • Revision ID: james.westby@ubuntu.com-20060523183942-hucifbvh68k2bwz7
Tags: upstream-3.3.2
Import upstream version 3.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**********************************************************************
 
2
** Copyright (C) 2000 Trolltech AS.  All rights reserved.
 
3
**
 
4
** This file is part of Qt Designer.
 
5
**
 
6
** This file may be distributed and/or modified under the terms of the
 
7
** GNU General Public License version 2 as published by the Free Software
 
8
** Foundation and appearing in the file LICENSE.GPL included in the
 
9
** packaging of this file.
 
10
**
 
11
** Licensees holding valid Qt Enterprise Edition or Qt Professional Edition
 
12
** licenses may use this file in accordance with the Qt Commercial License
 
13
** Agreement provided with the Software.
 
14
**
 
15
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
 
16
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 
17
**
 
18
** See http://www.trolltech.com/gpl/ for GPL licensing information.
 
19
** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
 
20
**   information about Qt Commercial License Agreements.
 
21
**
 
22
** Contact info@trolltech.com if any conditions of this licensing are
 
23
** not clear to you.
 
24
**
 
25
**********************************************************************/
 
26
 
 
27
#ifndef DATABASE_H
 
28
#define DATABASE_H
 
29
 
 
30
#include "qfeatures.h"
 
31
 
 
32
#ifndef QT_NO_SQL
 
33
#include <qdataview.h>
 
34
#include <qdatabrowser.h>
 
35
#include <qsqlcursor.h>
 
36
#include <qstring.h>
 
37
 
 
38
class QSqlDatabase;
 
39
class QSqlForm;
 
40
 
 
41
class DatabaseSupport
 
42
{
 
43
public:
 
44
    DatabaseSupport();
 
45
    virtual ~DatabaseSupport() {}
 
46
 
 
47
    void initPreview( const QString &connection, const QString &table, QObject *o,
 
48
                      const QMap<QString, QString> &databaseControls );
 
49
 
 
50
protected:
 
51
    QSqlDatabase* con;
 
52
    QSqlForm* frm;
 
53
    QString tbl;
 
54
    QMap<QString, QString> dbControls;
 
55
    QObject *parent;
 
56
 
 
57
};
 
58
 
 
59
class QDesignerDataBrowser : public QDataBrowser, public DatabaseSupport
 
60
{
 
61
    Q_OBJECT
 
62
 
 
63
public:
 
64
    QDesignerDataBrowser( QWidget *parent, const char *name );
 
65
 
 
66
protected:
 
67
    bool event( QEvent* e );
 
68
};
 
69
 
 
70
class QDesignerDataView : public QDataView, public DatabaseSupport
 
71
{
 
72
    Q_OBJECT
 
73
 
 
74
public:
 
75
    QDesignerDataView( QWidget *parent, const char *name );
 
76
 
 
77
protected:
 
78
    bool event( QEvent* e );
 
79
 
 
80
};
 
81
#endif
 
82
 
 
83
#endif