Files
Portable-Computing-Toolkit-…/portable_computing_toolkit_installer/ui/downloader.ui
2019-04-23 16:46:25 -04:00

183 lines
4.4 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>800</width>
<height>600</height>
</rect>
</property>
<property name="windowTitle">
<string>MainWindow</string>
</property>
<widget class="QWidget" name="centralwidget">
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QFrame" name="frame">
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QPushButton" name="back_button">
<property name="enabled">
<bool>false</bool>
</property>
<property name="toolTip">
<string>Back</string>
</property>
<property name="text">
<string/>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="forward_button">
<property name="enabled">
<bool>false</bool>
</property>
<property name="toolTip">
<string>Forward</string>
</property>
<property name="text">
<string/>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="reload_stop_button">
<property name="toolTip">
<string>Reload</string>
</property>
<property name="text">
<string/>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="home_button">
<property name="toolTip">
<string>Home</string>
</property>
<property name="text">
<string/>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="address_bar">
<property name="placeholderText">
<string>Enter a URL</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QWebEngineView" name="web_view">
<property name="url">
<url>
<string>about:blank</string>
</url>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QMenuBar" name="menubar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>800</width>
<height>21</height>
</rect>
</property>
<widget class="QMenu" name="menuActions">
<property name="title">
<string>Actions</string>
</property>
<addaction name="actionCancel"/>
<addaction name="actionCancel_and_Open_Issue_on_Github"/>
</widget>
<addaction name="menuActions"/>
</widget>
<widget class="QStatusBar" name="statusbar"/>
<action name="actionCancel">
<property name="text">
<string>Cancel</string>
</property>
</action>
<action name="actionCancel_and_Open_Issue_on_Github">
<property name="text">
<string>Cancel and Open Issue on Github</string>
</property>
</action>
</widget>
<customwidgets>
<customwidget>
<class>QWebEngineView</class>
<extends>QWidget</extends>
<header location="global">QtWebEngineWidgets/QWebEngineView</header>
</customwidget>
</customwidgets>
<resources/>
<connections>
<connection>
<sender>back_button</sender>
<signal>clicked()</signal>
<receiver>web_view</receiver>
<slot>back()</slot>
<hints>
<hint type="sourcelabel">
<x>34</x>
<y>51</y>
</hint>
<hint type="destinationlabel">
<x>399</x>
<y>324</y>
</hint>
</hints>
</connection>
<connection>
<sender>forward_button</sender>
<signal>clicked()</signal>
<receiver>web_view</receiver>
<slot>forward()</slot>
<hints>
<hint type="sourcelabel">
<x>72</x>
<y>51</y>
</hint>
<hint type="destinationlabel">
<x>399</x>
<y>324</y>
</hint>
</hints>
</connection>
<connection>
<sender>reload_stop_button</sender>
<signal>clicked()</signal>
<receiver>web_view</receiver>
<slot>reload()</slot>
<hints>
<hint type="sourcelabel">
<x>110</x>
<y>51</y>
</hint>
<hint type="destinationlabel">
<x>399</x>
<y>324</y>
</hint>
</hints>
</connection>
</connections>
</ui>