-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2a50bb8
commit 7da7e2e
Showing
1 changed file
with
143 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ui version="4.0"> | ||
<class>TelloNetworksWidget</class> | ||
<widget class="QWidget" name="TelloNetworksWidget"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>0</x> | ||
<y>0</y> | ||
<width>800</width> | ||
<height>480</height> | ||
</rect> | ||
</property> | ||
<property name="windowTitle"> | ||
<string>Connect</string> | ||
</property> | ||
<layout class="QVBoxLayout" name="verticalLayout_2"> | ||
<property name="leftMargin"> | ||
<number>6</number> | ||
</property> | ||
<property name="topMargin"> | ||
<number>6</number> | ||
</property> | ||
<property name="rightMargin"> | ||
<number>6</number> | ||
</property> | ||
<property name="bottomMargin"> | ||
<number>0</number> | ||
</property> | ||
<item> | ||
<layout class="QHBoxLayout" name="horizontalLayout"> | ||
<item> | ||
<widget class="QListView" name="networks"> | ||
<property name="font"> | ||
<font> | ||
<pointsize>22</pointsize> | ||
</font> | ||
</property> | ||
<property name="editTriggers"> | ||
<set>QAbstractItemView::NoEditTriggers</set> | ||
</property> | ||
</widget> | ||
</item> | ||
<item> | ||
<layout class="QVBoxLayout" name="verticalLayout"> | ||
<item> | ||
<widget class="QPushButton" name="connect"> | ||
<property name="minimumSize"> | ||
<size> | ||
<width>280</width> | ||
<height>0</height> | ||
</size> | ||
</property> | ||
<property name="font"> | ||
<font> | ||
<pointsize>33</pointsize> | ||
</font> | ||
</property> | ||
<property name="text"> | ||
<string>Connect</string> | ||
</property> | ||
<property name="icon"> | ||
<iconset> | ||
<normaloff>:/icons/fontawesome/regular/icons/fontawesome/regular/handshake.svg</normaloff>:/icons/fontawesome/regular/icons/fontawesome/regular/handshake.svg</iconset> | ||
</property> | ||
<property name="iconSize"> | ||
<size> | ||
<width>25</width> | ||
<height>25</height> | ||
</size> | ||
</property> | ||
</widget> | ||
</item> | ||
<item> | ||
<widget class="QPushButton" name="other"> | ||
<property name="font"> | ||
<font> | ||
<pointsize>33</pointsize> | ||
</font> | ||
</property> | ||
<property name="text"> | ||
<string>Other...</string> | ||
</property> | ||
<property name="icon"> | ||
<iconset> | ||
<normaloff>:/icons/fontawesome/solid/icons/fontawesome/solid/podcast.svg</normaloff>:/icons/fontawesome/solid/icons/fontawesome/solid/podcast.svg</iconset> | ||
</property> | ||
<property name="iconSize"> | ||
<size> | ||
<width>25</width> | ||
<height>25</height> | ||
</size> | ||
</property> | ||
</widget> | ||
</item> | ||
<item> | ||
<spacer name="verticalSpacer"> | ||
<property name="orientation"> | ||
<enum>Qt::Vertical</enum> | ||
</property> | ||
<property name="sizeHint" stdset="0"> | ||
<size> | ||
<width>20</width> | ||
<height>40</height> | ||
</size> | ||
</property> | ||
</spacer> | ||
</item> | ||
<item> | ||
<widget class="QPushButton" name="refresh"> | ||
<property name="enabled"> | ||
<bool>false</bool> | ||
</property> | ||
<property name="font"> | ||
<font> | ||
<pointsize>33</pointsize> | ||
</font> | ||
</property> | ||
<property name="text"> | ||
<string>Refresh</string> | ||
</property> | ||
<property name="icon"> | ||
<iconset> | ||
<normaloff>:/icons/fontawesome/solid/icons/fontawesome/solid/sync-alt.svg</normaloff>:/icons/fontawesome/solid/icons/fontawesome/solid/sync-alt.svg</iconset> | ||
</property> | ||
<property name="iconSize"> | ||
<size> | ||
<width>25</width> | ||
<height>25</height> | ||
</size> | ||
</property> | ||
</widget> | ||
</item> | ||
</layout> | ||
</item> | ||
</layout> | ||
</item> | ||
</layout> | ||
</widget> | ||
<resources> | ||
<include location="../rc/icons.qrc"/> | ||
</resources> | ||
<connections/> | ||
</ui> |