2020-05-03 17:21:56 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# Form implementation generated from reading ui file 'ui_code_dialog.ui'
|
|
|
|
#
|
|
|
|
# Created by: PyQt5 UI code generator 5.14.2
|
|
|
|
#
|
|
|
|
# WARNING! All changes made in this file will be lost!
|
|
|
|
|
|
|
|
|
|
|
|
from PyQt5 import QtCore, QtGui, QtWidgets
|
|
|
|
|
|
|
|
|
2021-04-14 19:14:09 +02:00
|
|
|
class CodeDialog(object):
|
|
|
|
def setupUi(self, CodeDialog):
|
|
|
|
CodeDialog.setObjectName("CodeDialog")
|
|
|
|
CodeDialog.resize(530, 643)
|
|
|
|
self.verticalLayout_2 = QtWidgets.QVBoxLayout(CodeDialog)
|
2020-05-03 17:21:56 +02:00
|
|
|
self.verticalLayout_2.setObjectName("verticalLayout_2")
|
2021-04-14 19:14:09 +02:00
|
|
|
self.e_code = QtWidgets.QPlainTextEdit(CodeDialog)
|
2020-05-03 17:21:56 +02:00
|
|
|
font = QtGui.QFont()
|
|
|
|
font.setFamily("Monospace")
|
|
|
|
self.e_code.setFont(font)
|
|
|
|
self.e_code.setReadOnly(True)
|
|
|
|
self.e_code.setObjectName("e_code")
|
|
|
|
self.verticalLayout_2.addWidget(self.e_code)
|
|
|
|
self.horizontalLayout = QtWidgets.QHBoxLayout()
|
|
|
|
self.horizontalLayout.setObjectName("horizontalLayout")
|
|
|
|
spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
|
|
|
|
self.horizontalLayout.addItem(spacerItem)
|
2021-04-14 19:14:09 +02:00
|
|
|
self.b_copy = QtWidgets.QPushButton(CodeDialog)
|
2020-05-03 17:21:56 +02:00
|
|
|
self.b_copy.setObjectName("b_copy")
|
|
|
|
self.horizontalLayout.addWidget(self.b_copy)
|
2021-04-14 19:14:09 +02:00
|
|
|
self.b_close = QtWidgets.QPushButton(CodeDialog)
|
2020-05-03 17:21:56 +02:00
|
|
|
self.b_close.setObjectName("b_close")
|
|
|
|
self.horizontalLayout.addWidget(self.b_close)
|
|
|
|
self.verticalLayout_2.addLayout(self.horizontalLayout)
|
|
|
|
|
2021-04-14 19:14:09 +02:00
|
|
|
self.retranslateUi(CodeDialog)
|
|
|
|
QtCore.QMetaObject.connectSlotsByName(CodeDialog)
|
2020-05-03 17:21:56 +02:00
|
|
|
|
2021-04-14 19:14:09 +02:00
|
|
|
def retranslateUi(self, CodeDialog):
|
2020-05-03 17:21:56 +02:00
|
|
|
_translate = QtCore.QCoreApplication.translate
|
2021-04-14 19:14:09 +02:00
|
|
|
CodeDialog.setWindowTitle(_translate("CodeDialog", "CodeDialog"))
|
|
|
|
self.b_copy.setText(_translate("CodeDialog", "Kopieren"))
|
|
|
|
self.b_close.setText(_translate("CodeDialog", "Schließen"))
|