summaryrefslogtreecommitdiff
path: root/noncore/apps/tableviewer/tableviewer.h
Unidiff
Diffstat (limited to 'noncore/apps/tableviewer/tableviewer.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/tableviewer/tableviewer.h109
1 files changed, 109 insertions, 0 deletions
diff --git a/noncore/apps/tableviewer/tableviewer.h b/noncore/apps/tableviewer/tableviewer.h
new file mode 100644
index 0000000..2d4686a
--- a/dev/null
+++ b/noncore/apps/tableviewer/tableviewer.h
@@ -0,0 +1,109 @@
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#ifndef Tableviewer_H
21#define Tableviewer_H
22
23#include <qmainwindow.h>
24#include "db/common.h"
25#include "fileselector.h"
26
27/* Forward class declarations */
28class QWidgetStack;
29class QDialog;
30class QMenuBar;
31
32class TVListView;
33class TVBrowseView;
34class TVFilterView;
35class TVEditView;
36
37class DBStore;
38
39class TableViewerWindow: public QMainWindow
40{
41 Q_OBJECT
42public:
43 TableViewerWindow( QWidget *parent = 0,
44 const char *name = 0, WFlags f = 0 );
45 ~TableViewerWindow();
46
47public slots:
48 void selectDocument();
49
50 void newDocument();
51 void saveDocument();
52 void openDocument(const DocLnk &);
53
54 void nextItem();
55 void previousItem();
56
57 void listViewSlot();
58 void browseViewSlot();
59 void filterViewSlot();
60
61 void editItemSlot();
62 void newItemSlot();
63 void deleteItemSlot();
64
65 void editKeysSlot();
66
67 /* reveiw the sig. for this function TODO */
68 void searchOnKey(int, TVVariant);
69 void setPrimaryKey(int);
70
71/* TODO add new event */
72protected:
73
74/* TODO add new slots */
75private slots:
76
77/* TODO add other widgets used here */
78private:
79 bool dirty;
80
81 QMenuBar *menu;
82 QToolBar *navigation;
83
84 TVListView *listView;
85 TVBrowseView *browseView;
86 TVFilterView *filterView;
87 TVEditView *editView;
88 FileSelector *fileSelector;
89
90 DocLnk doc;
91
92 QWidgetStack *cw;
93 DBStore *ds;
94 TableState ts; /* not a pointer.. this class keeps the state */
95
96 enum UserState {
97 BrowseState = 0,
98 ListState,
99 FilterState,
100 EditState,
101 FileState,
102 };
103
104 UserState current_view;
105
106 void applyFilter();
107};
108
109#endif