kexi
kexidatatable.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef KEXIDATATABLE_H
00023 #define KEXIDATATABLE_H
00024
00025 #include "kexidataawareview.h"
00026
00027 class KexiMainWindow;
00028 class KexiDataTableView;
00029 class KexiTableView;
00030 class KexiTableViewData;
00031 class KPopupMenu;
00032
00033 namespace KexiDB
00034 {
00035 class Cursor;
00036 }
00037
00044 class KEXIEXTWIDGETS_EXPORT KexiDataTable : public KexiDataAwareView
00045 {
00046 Q_OBJECT
00047
00048 public:
00056 KexiDataTable(KexiMainWindow *mainWin, QWidget *parent, const char *name = 0,
00057 bool dbAware = true);
00058
00061 KexiDataTable(KexiMainWindow *mainWin, QWidget *parent,
00062 KexiDB::Cursor *cursor, const char *name = 0);
00063
00064 virtual ~KexiDataTable();
00065
00066 KexiTableView* tableView() const;
00067
00068 public slots:
00070 void setData(KexiDB::Cursor *cursor);
00071
00072 protected slots:
00074 void filter();
00075
00076 protected:
00077 void init();
00078 };
00079
00080 #endif
|