forked from tkalbitz/NaoFinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.h
46 lines (33 loc) · 813 Bytes
/
mainwindow.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QtGui>
#include <QtNetwork/QtNetwork>
#include <QMap>
#include "robotwidget.h"
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
protected:
void closeEvent(QCloseEvent *event);
private slots:
void readPendingDatagrams();
void iconActivated(QSystemTrayIcon::ActivationReason reason);
private:
Ui::MainWindow *ui;
QHostAddress groupAdress;
QUdpSocket* udpSocket;
QVBoxLayout* panelLayout;
QSystemTrayIcon *trayIcon;
QRect savedGeometry;
QMap<QString, RobotWidget*> panelMap;
void createUdpSocket();
void createTrayIcon();
void processInfocast(Infocast& i);
};
#endif // MAINWINDOW_H