kexi
kexiqueryview.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef KEXIQUERYVIEW_H
00022 #define KEXIQUERYVIEW_H
00023
00024 #include <kexidatatable.h>
00025
00026 namespace KexiDB
00027 {
00028 class QuerySchema;
00029 }
00030 class KexiMainWindow;
00031
00032 class KexiQueryView : public KexiDataTable
00033 {
00034 Q_OBJECT
00035
00036 public:
00037 KexiQueryView(KexiMainWindow *win, QWidget *parent, const char *name=0);
00038 ~KexiQueryView();
00039
00040 protected:
00041 virtual tristate afterSwitchFrom(int mode);
00042
00043 virtual KexiDB::SchemaData* storeNewData(const KexiDB::SchemaData& sdata, bool &cancel);
00044
00045 virtual tristate storeData(bool dontAsk = false);
00046
00051 tristate executeQuery(KexiDB::QuerySchema *query);
00052
00053 class Private;
00054 Private *d;
00055 };
00056
00057 #endif
00058
|