source: ntrip/trunk/GnssCenter/inpedit/inpedit.h@ 5059

Last change on this file since 5059 was 5059, checked in by mervart, 11 years ago
File size: 695 bytes
Line 
1#ifndef GnssCenter_INPEDIT_H
2#define GnssCenter_INPEDIT_H
3
4#include <QtGui>
5#include "plugininterface.h"
6
7namespace GnssCenter {
8
9class t_keyword;
10class t_panel;
11
12class t_inpEdit : public QTabWidget {
13 public:
14 t_inpEdit();
15 ~t_inpEdit();
16 void setInputFile(const QString&);
17 private:
18 void readFile();
19 QString _fileName;
20 QMap<QString, t_keyword*> _keywords;
21};
22
23class t_inpEditFactory : public QObject, public t_pluginFactoryInterface {
24 Q_OBJECT
25 Q_INTERFACES(GnssCenter::t_pluginFactoryInterface)
26 public:
27 virtual QWidget* create() {return new t_inpEdit();}
28 virtual QString getName() const {return QString("Edit Input");}
29};
30
31} // namespace GnssCenter
32
33#endif
34
Note: See TracBrowser for help on using the repository browser.