source:
ntrip/trunk/GnssCenter/inpedit/inpedit.h@
10539
Last change on this file since 10539 was 5099, checked in by , 12 years ago | |
---|---|
File size: 684 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" |
[5088] | 6 | #include "tabwidget.h" |
[4823] | 7 | |
[5000] | 8 | namespace GnssCenter { |
[4823] | 9 | |
[4855] | 10 | class t_keyword; |
11 | class t_panel; | |
[4823] | 12 | |
[5088] | 13 | class t_inpEdit : public QMainWindow { |
[5089] | 14 | Q_OBJECT |
[4823] | 15 | public: |
[5015] | 16 | t_inpEdit(); |
17 | ~t_inpEdit(); | |
[5089] | 18 | private slots: |
19 | void slotOpenFile(); | |
[5099] | 20 | void slotSaveFile(); |
[4823] | 21 | private: |
[5088] | 22 | t_tabWidget* _tabWidget; |
[4823] | 23 | }; |
24 | ||
[5051] | 25 | class t_inpEditFactory : public QObject, public t_pluginFactoryInterface { |
26 | Q_OBJECT | |
27 | Q_INTERFACES(GnssCenter::t_pluginFactoryInterface) | |
28 | public: | |
[5059] | 29 | virtual QWidget* create() {return new t_inpEdit();} |
[5055] | 30 | virtual QString getName() const {return QString("Edit Input");} |
[5051] | 31 | }; |
32 | ||
[5000] | 33 | } // namespace GnssCenter |
[4823] | 34 | |
35 | #endif | |
36 |
Note:
See TracBrowser
for help on using the repository browser.