mirror of
https://github.com/283375/arcaea-offline-pyside-ui.git
synced 2025-07-01 20:36:26 +00:00
wip: settings
This commit is contained in:
40
ui/designer/components/settings/resettableItem.ui
Normal file
40
ui/designer/components/settings/resettableItem.ui
Normal file
@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>ResettableItem</class>
|
||||
<widget class="QWidget" name="ResettableItem">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>559</width>
|
||||
<height>42</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string notr="true">ResettableItem</string>
|
||||
</property>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||
<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>0</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QPushButton" name="resetButton">
|
||||
<property name="text">
|
||||
<string>resetButton</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<resources/>
|
||||
<connections/>
|
||||
</ui>
|
45
ui/designer/components/settings/resettableItem_ui.py
Normal file
45
ui/designer/components/settings/resettableItem_ui.py
Normal file
@ -0,0 +1,45 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
################################################################################
|
||||
## Form generated from reading UI file 'resettableItem.ui'
|
||||
##
|
||||
## Created by: Qt User Interface Compiler version 6.5.1
|
||||
##
|
||||
## WARNING! All changes made in this file will be lost when recompiling UI file!
|
||||
################################################################################
|
||||
|
||||
from PySide6.QtCore import (QCoreApplication, QDate, QDateTime, QLocale,
|
||||
QMetaObject, QObject, QPoint, QRect,
|
||||
QSize, QTime, QUrl, Qt)
|
||||
from PySide6.QtGui import (QBrush, QColor, QConicalGradient, QCursor,
|
||||
QFont, QFontDatabase, QGradient, QIcon,
|
||||
QImage, QKeySequence, QLinearGradient, QPainter,
|
||||
QPalette, QPixmap, QRadialGradient, QTransform)
|
||||
from PySide6.QtWidgets import (QApplication, QHBoxLayout, QPushButton, QSizePolicy,
|
||||
QWidget)
|
||||
|
||||
class Ui_ResettableItem(object):
|
||||
def setupUi(self, ResettableItem):
|
||||
if not ResettableItem.objectName():
|
||||
ResettableItem.setObjectName(u"ResettableItem")
|
||||
ResettableItem.resize(559, 42)
|
||||
ResettableItem.setWindowTitle(u"ResettableItem")
|
||||
self.horizontalLayout = QHBoxLayout(ResettableItem)
|
||||
self.horizontalLayout.setObjectName(u"horizontalLayout")
|
||||
self.horizontalLayout.setContentsMargins(0, 0, 0, 0)
|
||||
self.resetButton = QPushButton(ResettableItem)
|
||||
self.resetButton.setObjectName(u"resetButton")
|
||||
|
||||
self.horizontalLayout.addWidget(self.resetButton)
|
||||
|
||||
|
||||
self.retranslateUi(ResettableItem)
|
||||
|
||||
QMetaObject.connectSlotsByName(ResettableItem)
|
||||
# setupUi
|
||||
|
||||
def retranslateUi(self, ResettableItem):
|
||||
self.resetButton.setText(QCoreApplication.translate("ResettableItem", u"resetButton", None))
|
||||
pass
|
||||
# retranslateUi
|
||||
|
Reference in New Issue
Block a user