/
githubmirror
/
obs-studio
Обзор
Документация
Войти
/
githubmirror
/
obs-studio
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
frontend/forms/OBSLogViewer.ui
142 строки
3 KB
Warchamp7
frontend: Update forms to fully qualified enums
11 авг 2026, 00:48
11 авг 2026, 00:48
f5b6d8d
Код
Авторство
О чём код?
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>OBSLogViewer</class> <widget class="QDialog" name="OBSLogViewer"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>805</width> <height>300</height> </rect> </property> <property name="windowTitle"> <string>LogViewer</string> </property> <property name="sizeGripEnabled"> <bool>true</bool> </property> <layout class="QVBoxLayout" name="verticalLayout"> <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>4</number> </property> <item> <widget class="OBSPlainTextEdit" name="textArea"> <property name="readOnly"> <bool>true</bool> </property> </widget> </item> <item> <layout class="QHBoxLayout" name="buttonLayout"> <property name="leftMargin"> <number>10</number> </property> <property name="topMargin"> <number>0</number> </property> <property name="rightMargin"> <number>10</number> </property> <property name="bottomMargin"> <number>0</number> </property> <item> <widget class="QCheckBox" name="showStartup"> <property name="text"> <string>ShowOnStartup</string> </property> </widget> </item> <item> <spacer name="horizontalSpacer"> <property name="orientation"> <enum>Qt::Orientation::Horizontal</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>40</width> <height>20</height> </size> </property> </spacer> </item> <item> <widget class="QPushButton" name="openButton"> <property name="text"> <string>OpenFile</string> </property> </widget> </item> <item> <widget class="QPushButton" name="clearButton"> <property name="text"> <string>Clear</string> </property> </widget> </item> <item> <widget class="QPushButton" name="closeButton"> <property name="text"> <string>Close</string> </property> </widget> </item> </layout> </item> </layout> </widget> <customwidgets> <customwidget> <class>OBSPlainTextEdit</class> <extends>QPlainTextEdit</extends> <header>plain-text-edit.hpp</header> </customwidget> </customwidgets> <resources> <include location="obs.qrc"/> </resources> <connections> <connection> <sender>closeButton</sender> <signal>clicked()</signal> <receiver>OBSLogViewer</receiver> <slot>close()</slot> <hints> <hint type="sourcelabel"> <x>20</x> <y>20</y> </hint> <hint type="destinationlabel"> <x>20</x> <y>20</y> </hint> </hints> </connection> <connection> <sender>clearButton</sender> <signal>clicked()</signal> <receiver>textArea</receiver> <slot>clear()</slot> <hints> <hint type="sourcelabel"> <x>20</x> <y>20</y> </hint> <hint type="destinationlabel"> <x>20</x> <y>20</y> </hint> </hints> </connection> </connections> </ui>