UASListWidget.h 2.2 KB
Newer Older
pixhawk's avatar
pixhawk committed
1
2
/*=====================================================================

3
QGroundControl Open Source Ground Control Station
pixhawk's avatar
pixhawk committed
4

5
(c) 2009, 2010 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
pixhawk's avatar
pixhawk committed
6

7
This file is part of the QGROUNDCONTROL project
pixhawk's avatar
pixhawk committed
8

9
    QGROUNDCONTROL is free software: you can redistribute it and/or modify
pixhawk's avatar
pixhawk committed
10
11
12
13
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

14
    QGROUNDCONTROL is distributed in the hope that it will be useful,
pixhawk's avatar
pixhawk committed
15
16
17
18
19
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
20
    along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.
pixhawk's avatar
pixhawk committed
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35

======================================================================*/

/**
 * @file
 *   @brief List of unmanned vehicles
 *   @author Lorenz Meier <mavteam@student.ethz.ch>
 *
 */

#ifndef _UASLISTWIDGET_H_
#define _UASLISTWIDGET_H_

#include <QWidget>
#include <QMap>
36
#include <QList>
pixhawk's avatar
pixhawk committed
37
#include <QVBoxLayout>
38
#include <QGroupBox>
pixhawk's avatar
pixhawk committed
39
40
#include "UASInterface.h"
#include "UASView.h"
41
#include "QGCUnconnectedInfoWidget.h"
pixhawk's avatar
pixhawk committed
42
43
44
45
46
47
48
49
50
51
52
53
54
#include "ui_UASList.h"

class UASListWidget : public QWidget
{
    Q_OBJECT

public:
    UASListWidget(QWidget *parent = 0);
    ~UASListWidget();

public slots:
    void addUAS(UASInterface* uas);
    void activeUAS(UASInterface* uas);
55
    void removeUAS(UASInterface* uas);
Lorenz Meier's avatar
Lorenz Meier committed
56
    void removeLink(LinkInterface* link);
pixhawk's avatar
pixhawk committed
57
58

protected:
59
60
    // Keep a mapping from UASes to their GroupBox. Useful for determining when groupboxes are empty.
    QMap<UASInterface*, QGroupBox*> uasToBoxMapping;
61
62
    // Keep a mapping from Links to GroupBoxes for adding new links.
    QMap<LinkInterface*, QGroupBox*> linkToBoxMapping;
63
    // Tie each view to their UAS object so they can be removed easily.
pixhawk's avatar
pixhawk committed
64
    QMap<UASInterface*, UASView*> uasViews;
65
    QGCUnconnectedInfoWidget* uWidget;
66
    QTimer* updateTimer;
pixhawk's avatar
pixhawk committed
67
68
69
70
    void changeEvent(QEvent *e);

private:
    Ui::UASList* m_ui;
71
72
73

private slots:
    void updateStatus();
pixhawk's avatar
pixhawk committed
74
75
76
};

#endif // _UASLISTWIDGET_H_