| Line | |
|---|
| 1 | #ifndef GnssCenter_INPEDIT_H
|
|---|
| 2 | #define GnssCenter_INPEDIT_H
|
|---|
| 3 |
|
|---|
| 4 | #include <QtGui>
|
|---|
| 5 | #include "plugininterface.h"
|
|---|
| 6 | #include "tabwidget.h"
|
|---|
| 7 |
|
|---|
| 8 | namespace GnssCenter {
|
|---|
| 9 |
|
|---|
| 10 | class t_keyword;
|
|---|
| 11 | class t_panel;
|
|---|
| 12 |
|
|---|
| 13 | class t_inpEdit : public QMainWindow {
|
|---|
| 14 | public:
|
|---|
| 15 | t_inpEdit();
|
|---|
| 16 | ~t_inpEdit();
|
|---|
| 17 | private:
|
|---|
| 18 | t_tabWidget* _tabWidget;
|
|---|
| 19 | };
|
|---|
| 20 |
|
|---|
| 21 | class t_inpEditFactory : public QObject, public t_pluginFactoryInterface {
|
|---|
| 22 | Q_OBJECT
|
|---|
| 23 | Q_INTERFACES(GnssCenter::t_pluginFactoryInterface)
|
|---|
| 24 | public:
|
|---|
| 25 | virtual QWidget* create() {return new t_inpEdit();}
|
|---|
| 26 | virtual QString getName() const {return QString("Edit Input");}
|
|---|
| 27 | };
|
|---|
| 28 |
|
|---|
| 29 | } // namespace GnssCenter
|
|---|
| 30 |
|
|---|
| 31 | #endif
|
|---|
| 32 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.