source:
ntrip/trunk/GnssCenter/inpedit/keyword.h@
7830
| Last change on this file since 7830 was 5102, checked in by , 13 years ago | |
|---|---|
| File size: 593 bytes | |
| Rev | Line | |
|---|---|---|
| [5000] | 1 | #ifndef GnssCenter_KEYWORD_H |
| 2 | #define GnssCenter_KEYWORD_H | |
| [4823] | 3 | |
| [4867] | 4 | #include <QtGui> |
| [4823] | 5 | |
| [5000] | 6 | namespace GnssCenter { |
| [4823] | 7 | |
| [4856] | 8 | class t_keyword { |
| [4823] | 9 | public: |
| [5097] | 10 | t_keyword(QString line, QTextStream& inStream, QStringList& staticLines); |
| [4856] | 11 | ~t_keyword(); |
| [4871] | 12 | |
| 13 | const QString& name() const {return _name;} | |
| [4823] | 14 | bool ok() const {return _ok;} |
| [4882] | 15 | QWidget* createWidget(const QString& fldMask); |
| [5102] | 16 | QStringList values() const; |
| [4823] | 17 | |
| 18 | private: | |
| [5091] | 19 | bool _ok; |
| 20 | QString _name; | |
| [5101] | 21 | QStringList _origValues; |
| [5091] | 22 | QWidget* _widget; |
| 23 | QMap<QString, QString> _desc; | |
| [4823] | 24 | }; |
| 25 | ||
| [5000] | 26 | } // namespace GnssCenter |
| [4823] | 27 | |
| 28 | #endif |
Note:
See TracBrowser
for help on using the repository browser.
