forked from mavlink/qgroundcontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Working WP manager -> map waypoint updates. List reordering does not …
…work yet. Next steps: List reordering, map -> WP manager updates, better waypoint graphs
- Loading branch information
1 parent
6a9f84b
commit 9683bd1
Showing
9 changed files
with
388 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#include "QGCMapToolbar.h" | ||
#include "ui_QGCMapToolbar.h" | ||
|
||
QGCMapToolbar::QGCMapToolbar(QWidget *parent) : | ||
QWidget(parent), | ||
ui(new Ui::QGCMapToolbar) | ||
{ | ||
ui->setupUi(this); | ||
} | ||
|
||
QGCMapToolbar::~QGCMapToolbar() | ||
{ | ||
delete ui; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#ifndef QGCMAPTOOLBAR_H | ||
#define QGCMAPTOOLBAR_H | ||
|
||
#include <QWidget> | ||
|
||
namespace Ui { | ||
class QGCMapToolbar; | ||
} | ||
|
||
class QGCMapToolbar : public QWidget | ||
{ | ||
Q_OBJECT | ||
|
||
public: | ||
explicit QGCMapToolbar(QWidget *parent = 0); | ||
~QGCMapToolbar(); | ||
|
||
private: | ||
Ui::QGCMapToolbar *ui; | ||
}; | ||
|
||
#endif // QGCMAPTOOLBAR_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ui version="4.0"> | ||
<class>QGCMapToolbar</class> | ||
<widget class="QWidget" name="QGCMapToolbar"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>0</x> | ||
<y>0</y> | ||
<width>617</width> | ||
<height>28</height> | ||
</rect> | ||
</property> | ||
<property name="windowTitle"> | ||
<string>Form</string> | ||
</property> | ||
<layout class="QHBoxLayout" name="horizontalLayout"> | ||
<property name="spacing"> | ||
<number>12</number> | ||
</property> | ||
<property name="margin"> | ||
<number>2</number> | ||
</property> | ||
<item> | ||
<widget class="QPushButton" name="goToLatLonButton"> | ||
<property name="text"> | ||
<string>Lat/Lon</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item> | ||
<widget class="QPushButton" name="goToHomeButton"> | ||
<property name="text"> | ||
<string>Home</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item> | ||
<widget class="QPushButton" name="editButton"> | ||
<property name="text"> | ||
<string>Edit</string> | ||
</property> | ||
<property name="checkable"> | ||
<bool>true</bool> | ||
</property> | ||
</widget> | ||
</item> | ||
<item> | ||
<widget class="QPushButton" name="setHomeButton"> | ||
<property name="text"> | ||
<string>Set Home</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item> | ||
<widget class="QLabel" name="latLonLabel"> | ||
<property name="text"> | ||
<string>Mouse Coordinate</string> | ||
</property> | ||
</widget> | ||
</item> | ||
</layout> | ||
</widget> | ||
<resources/> | ||
<connections/> | ||
</ui> |
Oops, something went wrong.