/
MaximU
/
application
Обзор
Документация
Войти
/
MaximU
/
application
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
addressinputdialog.ui
147 строк
3 KB
user
Исправлены флаги диалога: без системного меню, фиксированный размер.
24 авг 2025, 11:49
24 авг 2025, 11:49
31f7a07
Код
Авторство
О чём код?
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>AddressInputDialogClass</class> <widget class="QDialog" name="AddressInputDialogClass"> <property name="windowModality"> <enum>Qt::ApplicationModal</enum> </property> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>500</width> <height>38</height> </rect> </property> <property name="modal"> <bool>true</bool> </property> <widget class="QLineEdit" name="lineeditPort"> <property name="geometry"> <rect> <x>46</x> <y>6</y> <width>75</width> <height>26</height> </rect> </property> <property name="sizePolicy"> <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> </widget> <widget class="QLineEdit" name="lineeditAddress"> <property name="geometry"> <rect> <x>180</x> <y>6</y> <width>141</width> <height>26</height> </rect> </property> </widget> <widget class="QLabel" name="label1"> <property name="geometry"> <rect> <x>6</x> <y>8</y> <width>34</width> <height>21</height> </rect> </property> <property name="sizePolicy"> <sizepolicy hsizetype="Preferred" vsizetype="Preferred"> <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> <property name="text"> <string>Порт</string> </property> <property name="alignment"> <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> </property> </widget> <widget class="QLabel" name="label2"> <property name="geometry"> <rect> <x>130</x> <y>8</y> <width>42</width> <height>21</height> </rect> </property> <property name="sizePolicy"> <sizepolicy hsizetype="Preferred" vsizetype="Preferred"> <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> <property name="text"> <string>Адрес</string> </property> <property name="alignment"> <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> </property> </widget> <widget class="QPushButton" name="buttonOk"> <property name="geometry"> <rect> <x>325</x> <y>6</y> <width>84</width> <height>26</height> </rect> </property> <property name="sizePolicy"> <sizepolicy hsizetype="Maximum" vsizetype="Fixed"> <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> <property name="text"> <string>Принять</string> </property> </widget> <widget class="QPushButton" name="buttonCancel"> <property name="geometry"> <rect> <x>410</x> <y>6</y> <width>84</width> <height>26</height> </rect> </property> <property name="sizePolicy"> <sizepolicy hsizetype="Maximum" vsizetype="Fixed"> <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> <property name="text"> <string>Отменить</string> </property> </widget> </widget> <resources/> <connections> <connection> <sender>buttonCancel</sender> <signal>clicked()</signal> <receiver>AddressInputDialogClass</receiver> <slot>reject()</slot> <hints> <hint type="sourcelabel"> <x>405</x> <y>12</y> </hint> <hint type="destinationlabel"> <x>224</x> <y>12</y> </hint> </hints> </connection> </connections> </ui>