Sat, 07 Sep 2019 17:35:43 +0200
Closed branch after it was merged into 'default'.
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>IrcNetworkEditDialog</class> <widget class="QDialog" name="IrcNetworkEditDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>400</width> <height>321</height> </rect> </property> <property name="windowTitle"> <string>IRC Network</string> </property> <property name="sizeGripEnabled"> <bool>true</bool> </property> <layout class="QGridLayout" name="gridLayout"> <item row="0" column="0"> <widget class="QLabel" name="label"> <property name="text"> <string>Network Name:</string> </property> </widget> </item> <item row="0" column="1" colspan="2"> <widget class="QLineEdit" name="networkEdit"> <property name="toolTip"> <string>Enter the name of the IRC network</string> </property> </widget> </item> <item row="1" column="0"> <widget class="QLabel" name="label_2"> <property name="text"> <string>Identity:</string> </property> </widget> </item> <item row="1" column="1"> <widget class="QComboBox" name="identityCombo"> <property name="toolTip"> <string>Select the identity to be used for the IRC network</string> </property> </widget> </item> <item row="1" column="2"> <widget class="QToolButton" name="editIdentitiesButton"> <property name="toolTip"> <string>Press to edit the identities</string> </property> <property name="text"> <string/> </property> </widget> </item> <item row="2" column="0"> <widget class="QLabel" name="label_3"> <property name="text"> <string>Server:</string> </property> </widget> </item> <item row="2" column="2"> <widget class="QToolButton" name="editServerButton"> <property name="toolTip"> <string>Press to edit the server configuration</string> </property> <property name="text"> <string/> </property> </widget> </item> <item row="3" column="0"> <widget class="QLabel" name="label_4"> <property name="text"> <string>Channels:</string> </property> <property name="alignment"> <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set> </property> </widget> </item> <item row="3" column="1"> <widget class="QTreeWidget" name="channelList"> <property name="alternatingRowColors"> <bool>true</bool> </property> <property name="rootIsDecorated"> <bool>false</bool> </property> <property name="itemsExpandable"> <bool>false</bool> </property> <property name="expandsOnDoubleClick"> <bool>false</bool> </property> <column> <property name="text"> <string>Channel</string> </property> </column> <column> <property name="text"> <string>Join Automatically</string> </property> </column> </widget> </item> <item row="3" column="2"> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="QToolButton" name="addChannelButton"> <property name="toolTip"> <string>Press to add a new channel</string> </property> <property name="text"> <string/> </property> </widget> </item> <item> <widget class="QToolButton" name="editChannelButton"> <property name="toolTip"> <string>Press to edit the selected channel</string> </property> <property name="text"> <string/> </property> </widget> </item> <item> <widget class="QToolButton" name="deleteChannelButton"> <property name="toolTip"> <string>Press to delete the selected channel</string> </property> <property name="text"> <string/> </property> </widget> </item> <item> <spacer name="verticalSpacer"> <property name="orientation"> <enum>Qt::Vertical</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>20</width> <height>98</height> </size> </property> </spacer> </item> </layout> </item> <item row="4" column="0" colspan="3"> <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> <item row="2" column="1"> <widget class="QLineEdit" name="serverEdit"> <property name="toolTip"> <string>Shows the name of the server</string> </property> <property name="readOnly"> <bool>true</bool> </property> </widget> </item> </layout> </widget> <tabstops> <tabstop>networkEdit</tabstop> <tabstop>identityCombo</tabstop> <tabstop>editIdentitiesButton</tabstop> <tabstop>serverEdit</tabstop> <tabstop>editServerButton</tabstop> <tabstop>channelList</tabstop> <tabstop>addChannelButton</tabstop> <tabstop>editChannelButton</tabstop> <tabstop>deleteChannelButton</tabstop> <tabstop>buttonBox</tabstop> </tabstops> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>accepted()</signal> <receiver>IrcNetworkEditDialog</receiver> <slot>accept()</slot> <hints> <hint type="sourcelabel"> <x>248</x> <y>254</y> </hint> <hint type="destinationlabel"> <x>157</x> <y>274</y> </hint> </hints> </connection> <connection> <sender>buttonBox</sender> <signal>rejected()</signal> <receiver>IrcNetworkEditDialog</receiver> <slot>reject()</slot> <hints> <hint type="sourcelabel"> <x>316</x> <y>260</y> </hint> <hint type="destinationlabel"> <x>286</x> <y>274</y> </hint> </hints> </connection> </connections> </ui>