2008-05-03 09:37:10 -05:00
|
|
|
#ifndef _MAIN_WINDOW_H
|
|
|
|
#define _MAIN_WINDOW_H
|
|
|
|
|
|
|
|
#include <QMainWindow>
|
2009-04-05 02:19:37 -05:00
|
|
|
#include <QDockWidget>
|
|
|
|
|
2008-05-03 09:37:10 -05:00
|
|
|
#include "ui_mainwindow.h"
|
|
|
|
|
2009-04-05 02:19:37 -05:00
|
|
|
#include "portswindow.h"
|
|
|
|
#include "portstatswindow.h"
|
|
|
|
|
2008-05-03 09:37:10 -05:00
|
|
|
class MainWindow : public QMainWindow, private Ui::MainWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2009-04-05 02:19:37 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
PortsWindow *portsWindow;
|
|
|
|
PortStatsWindow *statsWindow;
|
|
|
|
QDockWidget *portsDock;
|
|
|
|
QDockWidget *statsDock;
|
|
|
|
|
2008-05-03 09:37:10 -05:00
|
|
|
public:
|
|
|
|
MainWindow(QWidget *parent = 0);
|
2009-04-05 02:19:37 -05:00
|
|
|
~MainWindow();
|
2008-05-03 09:37:10 -05:00
|
|
|
|
|
|
|
public slots:
|
2009-04-05 02:19:37 -05:00
|
|
|
void on_actionHelpAbout_triggered();
|
2008-05-03 09:37:10 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|