-
Notifications
You must be signed in to change notification settings - Fork 0
/
language_widget.py
60 lines (54 loc) · 2.65 KB
/
language_widget.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'language_widget.ui',
# licensing of 'language_widget.ui' applies.
#
# Created: Sat Jun 8 18:31:37 2019
# by: pyside2-uic running on PySide2 5.12.2
#
# WARNING! All changes made in this file will be lost!
from PySide2 import QtCore, QtGui, QtWidgets
class Ui_Form(object):
def setupUi(self, Form):
Form.setObjectName("Form")
Form.resize(341, 42)
self.horizontalLayout = QtWidgets.QHBoxLayout(Form)
self.horizontalLayout.setSpacing(0)
self.horizontalLayout.setContentsMargins(0, 0, 0, 0)
self.horizontalLayout.setObjectName("horizontalLayout")
self.flag = QtWidgets.QLabel(Form)
self.flag.setMinimumSize(QtCore.QSize(16, 0))
self.flag.setMaximumSize(QtCore.QSize(16, 16777215))
self.flag.setText("")
self.flag.setObjectName("flag")
self.horizontalLayout.addWidget(self.flag)
self.label = QtWidgets.QLabel(Form)
self.label.setMinimumSize(QtCore.QSize(25, 0))
self.label.setMaximumSize(QtCore.QSize(25, 16777215))
self.label.setStyleSheet("color: black;")
self.label.setText("")
self.label.setAlignment(QtCore.Qt.AlignCenter)
self.label.setObjectName("label")
self.horizontalLayout.addWidget(self.label)
self.progressBar = QtWidgets.QProgressBar(Form)
self.progressBar.setProperty("value", 24)
self.progressBar.setObjectName("progressBar")
self.horizontalLayout.addWidget(self.progressBar)
self.pushButton = QtWidgets.QPushButton(Form)
icon = QtGui.QIcon()
icon.addPixmap(QtGui.QPixmap(":/icons/ressources/icons_famfamfam/pencil.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
self.pushButton.setIcon(icon)
self.pushButton.setObjectName("pushButton")
self.horizontalLayout.addWidget(self.pushButton)
self.pushButton_2 = QtWidgets.QPushButton(Form)
icon1 = QtGui.QIcon()
icon1.addPixmap(QtGui.QPixmap(":/icons/ressources/icons_famfamfam/delete.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
self.pushButton_2.setIcon(icon1)
self.pushButton_2.setObjectName("pushButton_2")
self.horizontalLayout.addWidget(self.pushButton_2)
self.retranslateUi(Form)
QtCore.QMetaObject.connectSlotsByName(Form)
def retranslateUi(self, Form):
Form.setWindowTitle(QtWidgets.QApplication.translate("Form", "Form", None, -1))
self.pushButton.setText(QtWidgets.QApplication.translate("Form", "edit", None, -1))
self.pushButton_2.setText(QtWidgets.QApplication.translate("Form", "delete", None, -1))
import ressources_rc