Changeset 5055 in ntrip for trunk/GnssCenter/main/mainwin.h


Ignore:
Timestamp:
Mar 28, 2013, 7:11:20 PM (11 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GnssCenter/main/mainwin.h

    r5001 r5055  
    33
    44#include <QtGui>
     5#include "plugininterface.h"
    56
    67namespace GnssCenter {
    78
    89class t_mdiArea;
     10
     11class t_pluginAction : public QAction {
     12 public:
     13  t_pluginAction(QObject* parent, t_pluginFactoryInterface* factIface) :
     14                QAction(factIface->getName(), parent), _factIface(factIface) {}
     15  t_pluginFactoryInterface* _factIface;
     16};
    917
    1018class t_mainWin : public QMainWindow {
     
    1826  void slotFontSel();
    1927  void slotSaveOptions();
    20   void slotEditInput();
    21   void slotMap();
     28  void slotStartPlugin();
    2229  void slotHelp();
    2330  void slotAbout();
     
    3441
    3542  QMenu*     _menuFile;
    36   QMenu*     _menuNew;
     43  QMenu*     _menuPlugins;
    3744  QMenu*     _menuHlp;
    3845
     
    4047  QAction*   _actSaveOpt;
    4148  QAction*   _actQuit;
    42   QAction*   _actEditInput;
    43   QAction*   _actMap;
    4449  QAction*   _actHelp;
    4550  QAction*   _actAbout;
Note: See TracChangeset for help on using the changeset viewer.