2018-05-13 23:21:43 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<ui version="4.0">
|
|
|
|
<class>PasswordEditWidget</class>
|
|
|
|
<widget class="QWidget" name="PasswordEditWidget">
|
|
|
|
<property name="geometry">
|
|
|
|
<rect>
|
|
|
|
<x>0</x>
|
|
|
|
<y>0</y>
|
|
|
|
<width>571</width>
|
|
|
|
<height>78</height>
|
|
|
|
</rect>
|
|
|
|
</property>
|
|
|
|
<layout class="QFormLayout" name="formLayout">
|
|
|
|
<property name="leftMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="topMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="rightMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="bottomMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<item row="0" column="0">
|
|
|
|
<widget class="QLabel" name="enterPasswordLabel">
|
|
|
|
<property name="text">
|
|
|
|
<string>Enter password:</string>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item row="0" column="1">
|
|
|
|
<layout class="QHBoxLayout" name="horizontalLayout">
|
|
|
|
<item>
|
|
|
|
<widget class="PasswordEdit" name="enterPasswordEdit">
|
2019-08-30 20:18:41 -04:00
|
|
|
<property name="accessibleName">
|
|
|
|
<string>Password field</string>
|
|
|
|
</property>
|
2018-05-13 23:21:43 +02:00
|
|
|
<property name="echoMode">
|
|
|
|
<enum>QLineEdit::Password</enum>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item>
|
|
|
|
<widget class="QToolButton" name="togglePasswordButton">
|
2019-08-30 20:18:41 -04:00
|
|
|
<property name="accessibleName">
|
|
|
|
<string>Toggle password visibility</string>
|
|
|
|
</property>
|
2018-05-13 23:21:43 +02:00
|
|
|
<property name="checkable">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
</layout>
|
|
|
|
</item>
|
|
|
|
<item row="1" column="1">
|
|
|
|
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
|
|
|
<item>
|
|
|
|
<widget class="PasswordEdit" name="repeatPasswordEdit">
|
2019-08-30 20:18:41 -04:00
|
|
|
<property name="accessibleName">
|
|
|
|
<string>Repeat password field</string>
|
|
|
|
</property>
|
2018-05-13 23:21:43 +02:00
|
|
|
<property name="echoMode">
|
|
|
|
<enum>QLineEdit::Password</enum>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item>
|
2019-08-30 20:18:41 -04:00
|
|
|
<widget class="QToolButton" name="passwordGeneratorButton">
|
|
|
|
<property name="accessibleName">
|
|
|
|
<string>Toggle password generator</string>
|
|
|
|
</property>
|
|
|
|
</widget>
|
2018-05-13 23:21:43 +02:00
|
|
|
</item>
|
|
|
|
</layout>
|
|
|
|
</item>
|
|
|
|
<item row="1" column="0">
|
|
|
|
<widget class="QLabel" name="repeatPasswordLabel">
|
|
|
|
<property name="text">
|
|
|
|
<string>Confirm password:</string>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
</layout>
|
|
|
|
</widget>
|
|
|
|
<customwidgets>
|
|
|
|
<customwidget>
|
|
|
|
<class>PasswordEdit</class>
|
|
|
|
<extends>QLineEdit</extends>
|
|
|
|
<header>gui/PasswordEdit.h</header>
|
|
|
|
<container>1</container>
|
|
|
|
</customwidget>
|
|
|
|
</customwidgets>
|
|
|
|
<tabstops>
|
|
|
|
<tabstop>enterPasswordEdit</tabstop>
|
|
|
|
<tabstop>repeatPasswordEdit</tabstop>
|
|
|
|
<tabstop>togglePasswordButton</tabstop>
|
|
|
|
<tabstop>passwordGeneratorButton</tabstop>
|
|
|
|
</tabstops>
|
|
|
|
<resources/>
|
|
|
|
<connections/>
|
|
|
|
</ui>
|