Wed, 17 Jul 2024 16:48:46 +0200
Reorganized and fixed the WebAuth related dialog and moved it in a new package.
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>WebBrowserWebAuthDialog</class> <widget class="QDialog" name="WebBrowserWebAuthDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>500</width> <height>400</height> </rect> </property> <property name="sizePolicy"> <sizepolicy hsizetype="Fixed" vsizetype="Expanding"> <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> <property name="windowTitle"> <string>Web Authentication</string> </property> <property name="sizeGripEnabled"> <bool>true</bool> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="QLabel" name="headerLabel"> <property name="text"> <string notr="true">Header</string> </property> </widget> </item> <item> <widget class="QLabel" name="descriptionLabel"> <property name="text"> <string notr="true">Description</string> </property> <property name="wordWrap"> <bool>true</bool> </property> </widget> </item> <item> <widget class="QGroupBox" name="pinGroupBox"> <property name="flat"> <bool>true</bool> </property> <layout class="QGridLayout" name="gridLayout"> <item row="0" column="0"> <widget class="QLabel" name="pinLabel"> <property name="text"> <string>PIN:</string> </property> </widget> </item> <item row="0" column="1"> <widget class="QLineEdit" name="pinEdit"> <property name="toolTip"> <string>Enter the PIN</string> </property> <property name="echoMode"> <enum>QLineEdit::Password</enum> </property> </widget> </item> <item row="0" column="2"> <widget class="QToolButton" name="pinButton"> <property name="toolTip"> <string>Press to show or hide the PIN.</string> </property> <property name="checkable"> <bool>true</bool> </property> </widget> </item> <item row="1" column="0"> <widget class="QLabel" name="confirmPinLabel"> <property name="text"> <string>Confirm PIN:</string> </property> </widget> </item> <item row="1" column="1"> <widget class="QLineEdit" name="confirmPinEdit"> <property name="toolTip"> <string>Enter the same PIN again.</string> </property> <property name="echoMode"> <enum>QLineEdit::Password</enum> </property> </widget> </item> <item row="2" column="1" colspan="2"> <widget class="QLabel" name="confirmPinErrorLabel"> <property name="text"> <string>PINs do not match!</string> </property> </widget> </item> <item row="3" column="0" colspan="3"> <widget class="QLabel" name="pinErrorLabel"> <property name="text"> <string notr="true">PIN Error</string> </property> <property name="wordWrap"> <bool>true</bool> </property> </widget> </item> </layout> </widget> </item> <item> <widget class="QScrollArea" name="selectAccountArea"> <property name="horizontalScrollBarPolicy"> <enum>Qt::ScrollBarAlwaysOff</enum> </property> <widget class="QWidget" name="selectAccountWidget"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>450</width> <height>150</height> </rect> </property> </widget> </widget> </item> <item> <widget class="QDialogButtonBox" name="buttonBox"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="standardButtons"> <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok|QDialogButtonBox::Retry</set> </property> </widget> </item> </layout> </widget> <tabstops> <tabstop>pinEdit</tabstop> <tabstop>pinButton</tabstop> <tabstop>confirmPinEdit</tabstop> <tabstop>selectAccountArea</tabstop> </tabstops> <resources/> <connections/> </ui>