2004-11-28 05:46:10 +00:00
|
|
|
#ifndef QGSEDITRESERVEDWORDSDIALOG_H
|
|
|
|
#define QGSEDITRESERVEDWORDSDIALOG_H
|
|
|
|
#include "qgseditreservedwordsbase.h"
|
|
|
|
class QgsEditReservedWordsDialog : public QgsEditReservedWordsBase
|
|
|
|
{
|
2005-01-21 05:30:20 +00:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2004-11-28 05:46:10 +00:00
|
|
|
QgsEditReservedWordsDialog(QWidget *parent=0, const char *name=0);
|
|
|
|
~QgsEditReservedWordsDialog();
|
|
|
|
void addColumn(QString column, bool isReserved, int index);
|
|
|
|
void setReservedWords(const QStringList &);
|
|
|
|
QStringList columnNames();
|
2005-01-21 05:30:20 +00:00
|
|
|
public slots:
|
2004-11-28 05:46:10 +00:00
|
|
|
void checkWord(QListViewItem *, int , const QString&);
|
|
|
|
void editWord(QListViewItem *);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
#endif //QGSEDITRESERVEDWORDSDIALOG_H
|