You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
672 B
37 lines
672 B
#ifndef QGCWAYPOINTLISTMULTI_H |
|
#define QGCWAYPOINTLISTMULTI_H |
|
|
|
#include <QWidget> |
|
#include <QMap> |
|
|
|
#include "WaypointList.h" |
|
#include "UASInterface.h" |
|
|
|
namespace Ui |
|
{ |
|
class QGCWaypointListMulti; |
|
} |
|
|
|
class QGCWaypointListMulti : public QWidget |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
explicit QGCWaypointListMulti(QWidget *parent = 0); |
|
~QGCWaypointListMulti(); |
|
|
|
public slots: |
|
void systemDeleted(QObject* uas); |
|
void systemCreated(UASInterface* uas); |
|
void systemSetActive(int uas); |
|
|
|
protected: |
|
quint16 offline_uas_id; |
|
void changeEvent(QEvent *e); |
|
QMap<int, WaypointList*> lists; |
|
|
|
private: |
|
Ui::QGCWaypointListMulti *ui; |
|
}; |
|
|
|
#endif // QGCWAYPOINTLISTMULTI_H
|
|
|