00001
00002
00003
00004
00005
00006
00007
00008 #ifndef SCHEMABROWSER_H
00009 #define SCHEMABROWSER_H
00010
00011 #include "ui_schemabrowser.h"
00012
00013
00018 class SchemaBrowser : public QWidget, public Ui::SchemaBrowser
00019 {
00020 Q_OBJECT
00021
00022 public:
00023 SchemaBrowser(QWidget * parent = 0, Qt::WindowFlags f = 0);
00024
00026 void buildPragmasTree();
00027
00028 private:
00033 void addPragma(const QString & name);
00034
00035 private slots:
00037 void pragmaTable_currentCellChanged(int currentRow, int currentColumn, int previousRow, int previousColumn);
00039 void setPragmaButton_clicked();
00040 };
00041
00042 #endif