Sat, 07 Sep 2019 17:35:43 +0200
Closed branch after it was merged into 'default'.
<ui version="4.0" > <class>AuthenticationDialog</class> <widget class="QDialog" name="AuthenticationDialog" > <property name="geometry" > <rect> <x>0</x> <y>0</y> <width>400</width> <height>154</height> </rect> </property> <property name="sizePolicy" > <sizepolicy vsizetype="Minimum" hsizetype="Preferred" > <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> <property name="windowTitle" > <string>Authentication Required</string> </property> <property name="sizeGripEnabled" > <bool>true</bool> </property> <layout class="QGridLayout" name="gridLayout" > <item row="0" column="0" colspan="2" > <layout class="QHBoxLayout" name="horizontalLayout" > <item> <widget class="QLabel" name="iconLabel" > <property name="text" > <string>Icon</string> </property> </widget> </item> <item> <widget class="QLabel" name="infoLabel" > <property name="sizePolicy" > <sizepolicy vsizetype="MinimumExpanding" hsizetype="MinimumExpanding" > <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> <property name="text" > <string>Info</string> </property> <property name="wordWrap" > <bool>true</bool> </property> </widget> </item> </layout> </item> <item row="1" column="0" > <widget class="QLabel" name="label" > <property name="text" > <string>Username:</string> </property> </widget> </item> <item row="1" column="1" > <widget class="QLineEdit" name="usernameEdit" > <property name="toolTip" > <string>Enter username</string> </property> </widget> </item> <item row="2" column="0" > <widget class="QLabel" name="label_2" > <property name="text" > <string>Password:</string> </property> </widget> </item> <item row="2" column="1" > <widget class="QLineEdit" name="passwordEdit" > <property name="toolTip" > <string>Enter password</string> </property> <property name="echoMode" > <enum>QLineEdit::Password</enum> </property> </widget> </item> <item row="3" column="0" colspan="2" > <widget class="QCheckBox" name="saveCheckBox" > <property name="toolTip" > <string>Select to save the login data</string> </property> <property name="text" > <string>Save login data</string> </property> </widget> </item> <item row="4" column="0" colspan="2" > <widget class="QDialogButtonBox" name="buttonBox" > <property name="orientation" > <enum>Qt::Horizontal</enum> </property> <property name="standardButtons" > <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> </property> </widget> </item> </layout> </widget> <tabstops> <tabstop>usernameEdit</tabstop> <tabstop>passwordEdit</tabstop> <tabstop>saveCheckBox</tabstop> <tabstop>buttonBox</tabstop> </tabstops> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>accepted()</signal> <receiver>AuthenticationDialog</receiver> <slot>accept()</slot> <hints> <hint type="sourcelabel" > <x>29</x> <y>111</y> </hint> <hint type="destinationlabel" > <x>23</x> <y>117</y> </hint> </hints> </connection> <connection> <sender>buttonBox</sender> <signal>rejected()</signal> <receiver>AuthenticationDialog</receiver> <slot>reject()</slot> <hints> <hint type="sourcelabel" > <x>87</x> <y>111</y> </hint> <hint type="destinationlabel" > <x>81</x> <y>117</y> </hint> </hints> </connection> </connections> </ui>