diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-06-12 23:47:17 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-06-29 14:09:46 +0200 |
| commit | 05b2584fa4d773f5a88ed3ce98f5dd8304e11c34 (patch) | |
| tree | f72e73c3259b8100e886f49f67ecc669b7667502 /accounts.ui | |
| parent | 3b8fafc4122848219898245d52dabd669cacb4ba (diff) | |
First commit
Diffstat (limited to 'accounts.ui')
| -rw-r--r-- | accounts.ui | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/accounts.ui b/accounts.ui new file mode 100644 index 0000000..7687c73 --- /dev/null +++ b/accounts.ui @@ -0,0 +1,98 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>accounts</class> + <widget class="QDialog" name="accounts"> + <property name="windowModality"> + <enum>Qt::ApplicationModal</enum> + </property> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>188</width> + <height>215</height> + </rect> + </property> + <property name="sizePolicy"> + <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> + <horstretch>100</horstretch> + <verstretch>100</verstretch> + </sizepolicy> + </property> + <property name="windowTitle"> + <string>xxcc - Accounts</string> + </property> + <layout class="QVBoxLayout" name="verticalLayout_2"> + <item> + <widget class="QPushButton" name="close"> + <property name="maximumSize"> + <size> + <width>32</width> + <height>16777215</height> + </size> + </property> + <property name="text"> + <string><</string> + </property> + </widget> + </item> + <item> + <widget class="QLabel" name="label"> + <property name="text"> + <string><html><head/><body><p align="center"><span style=" font-size:12pt; font-weight:600;">Accounts</span></p></body></html></string> + </property> + </widget> + </item> + <item> + <widget class="QListWidget" name="accounts_list"> + <property name="verticalScrollMode"> + <enum>QAbstractItemView::ScrollPerPixel</enum> + </property> + <property name="horizontalScrollMode"> + <enum>QAbstractItemView::ScrollPerPixel</enum> + </property> + </widget> + </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout"> + <item> + <widget class="QPushButton" name="rm"> + <property name="enabled"> + <bool>false</bool> + </property> + <property name="text"> + <string>Remove</string> + </property> + </widget> + </item> + <item> + <widget class="QPushButton" name="add"> + <property name="text"> + <string>Add</string> + </property> + </widget> + </item> + </layout> + </item> + </layout> + </widget> + <resources/> + <connections> + <connection> + <sender>close</sender> + <signal>released()</signal> + <receiver>accounts</receiver> + <slot>close()</slot> + <hints> + <hint type="sourcelabel"> + <x>48</x> + <y>147</y> + </hint> + <hint type="destinationlabel"> + <x>138</x> + <y>86</y> + </hint> + </hints> + </connection> + </connections> +</ui> |
