Changeset 749 in ntrip for trunk/BNS/bnswindow.h


Ignore:
Timestamp:
Mar 30, 2008, 2:39:19 PM (16 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNS/bnswindow.h

    r748 r749  
    33
    44#include <QtGui>
     5#include <QWhatsThis>
     6
     7class bnsAboutDlg : public QDialog {
     8 Q_OBJECT
     9 public:
     10  bnsAboutDlg(QWidget* parent);
     11  ~bnsAboutDlg();
     12};
    513
    614class bnsWindow : public QMainWindow {
     
    1422
    1523 private slots:
     24  void slotHelp();
     25  void slotAbout();
     26  void slotFontSel();
     27  void slotSaveOptions();
     28  void slotWhatsThis();
    1629
    1730 protected:
    18    virtual void closeEvent(QCloseEvent *);
     31  virtual void closeEvent(QCloseEvent *);
    1932
    2033 private:
     34  void CreateMenu();
     35  void AddToolbar();
    2136
     37  QMenu*     _menuHlp;
     38  QMenu*     _menuFile;
     39
     40  QAction*   _actHelp;
     41  QAction*   _actAbout;
     42  QAction*   _actFontSel;
     43  QAction*   _actSaveOpt;
     44  QAction*   _actQuit;
     45  QAction*   _actwhatsthis;
     46
     47  QWidget*   _canvas;
    2248};
    2349#endif
Note: See TracChangeset for help on using the changeset viewer.