source:
ntrip/trunk/GnssCenter/src/inpedit/inpedit.h@
5018
Last change on this file since 5018 was 5015, checked in by , 12 years ago | |
---|---|
File size: 616 bytes |
Rev | Line | |
---|---|---|
[5015] | 1 | #ifndef GnssCenter_INPEDIT_H |
2 | #define GnssCenter_INPEDIT_H | |
[4823] | 3 | |
[4826] | 4 | #include <QtGui> |
[5015] | 5 | #include "plugininterface.h" |
[4823] | 6 | |
[5000] | 7 | namespace GnssCenter { |
[4823] | 8 | |
[4855] | 9 | class t_keyword; |
10 | class t_panel; | |
[4823] | 11 | |
[5015] | 12 | class t_inpEdit : public QTabWidget, public t_pluginInterface { |
13 | Q_OBJECT | |
14 | Q_INTERFACES(GnssCenter::t_pluginInterface) | |
15 | ||
[4823] | 16 | public: |
[5015] | 17 | t_inpEdit(); |
18 | ~t_inpEdit(); | |
19 | virtual bool expectInputFile() const {return true;} | |
20 | virtual void setInputFile(const QString&); | |
21 | virtual void show() {QTabWidget::show();} | |
[4823] | 22 | |
23 | private: | |
24 | void readFile(); | |
[4871] | 25 | QString _fileName; |
26 | QMap<QString, t_keyword*> _keywords; | |
[4823] | 27 | }; |
28 | ||
[5000] | 29 | } // namespace GnssCenter |
[4823] | 30 | |
31 | #endif | |
32 |
Note:
See TracBrowser
for help on using the repository browser.