summaryrefslogtreecommitdiff
path: root/noncore/apps/tableviewer/ui/tveditview.h
Unidiff
Diffstat (limited to 'noncore/apps/tableviewer/ui/tveditview.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/tableviewer/ui/tveditview.h62
1 files changed, 62 insertions, 0 deletions
diff --git a/noncore/apps/tableviewer/ui/tveditview.h b/noncore/apps/tableviewer/ui/tveditview.h
new file mode 100644
index 0000000..94c51d9
--- a/dev/null
+++ b/noncore/apps/tableviewer/ui/tveditview.h
@@ -0,0 +1,62 @@
1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved.
3**
4** This file is part of Qtopia Environment.
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** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15**
16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you.
18**
19**********************************************************************/
20
21#ifndef Tveditview_H
22#define Tveditview_H
23
24#include <qwidget.h>
25#include <qlist.h>
26#include <qdialog.h>
27#include <qmap.h>
28#include "../db/common.h"
29
30class QGrid;
31class QSignalMapper;
32class QCheckBox;
33
34class TVEditView : public QDialog
35{
36 Q_OBJECT
37
38public:
39 TVEditView(TableState *s, DataElem *d, QWidget* parent = 0,
40 const char* name = 0, WFlags fl = 0);
41 ~TVEditView();
42
43 static bool openEditItemDialog(TableState *s, DataElem *d, QWidget *parent);
44
45protected slots:
46 void toggleEnabled(int);
47
48protected:
49
50 void setData(TableState *s, DataElem *d);
51
52 QGrid *editDisplay;
53 QList<QWidget> edits;
54 QList<QCheckBox> buttons;
55 QSignalMapper *toggles;
56
57 QMap<int,int> keyIds;
58
59 int num_edits;
60};
61
62#endif