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 | Q_OBJECT
|
---|
15 | public:
|
---|
16 | t_inpEdit();
|
---|
17 | ~t_inpEdit();
|
---|
18 | private slots:
|
---|
19 | void slotOpenFile();
|
---|
20 | void slotSaveFile();
|
---|
21 | private:
|
---|
22 | t_tabWidget* _tabWidget;
|
---|
23 | };
|
---|
24 |
|
---|
25 | class t_inpEditFactory : public QObject, public t_pluginFactoryInterface {
|
---|
26 | Q_OBJECT
|
---|
27 | Q_INTERFACES(GnssCenter::t_pluginFactoryInterface)
|
---|
28 | public:
|
---|
29 | virtual QWidget* create() {return new t_inpEdit();}
|
---|
30 | virtual QString getName() const {return QString("Edit Input");}
|
---|
31 | };
|
---|
32 |
|
---|
33 | } // namespace GnssCenter
|
---|
34 |
|
---|
35 | #endif
|
---|
36 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.