mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-19 03:51:07 +00:00
35 lines
1.3 KiB
Python
35 lines
1.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Form implementation generated from reading ui file 'ui/debug.ui'
|
|
#
|
|
# Created: Thu Oct 14 20:54:43 2010
|
|
# by: PyQt4 UI code generator 4.7.3
|
|
#
|
|
# WARNING! All changes made in this file will be lost!
|
|
|
|
from PyQt4 import QtCore, QtGui
|
|
|
|
class Ui_DebugDialog(object):
|
|
def setupUi(self, DebugDialog):
|
|
DebugDialog.setObjectName("DebugDialog")
|
|
DebugDialog.setWindowModality(QtCore.Qt.ApplicationModal)
|
|
DebugDialog.resize(564, 547)
|
|
self.verticalLayout = QtGui.QVBoxLayout(DebugDialog)
|
|
self.verticalLayout.setObjectName("verticalLayout")
|
|
self.frame = QtGui.QFrame(DebugDialog)
|
|
self.frame.setFrameShape(QtGui.QFrame.StyledPanel)
|
|
self.frame.setFrameShadow(QtGui.QFrame.Raised)
|
|
self.frame.setObjectName("frame")
|
|
self.verticalLayout_2 = QtGui.QVBoxLayout(self.frame)
|
|
self.verticalLayout_2.setObjectName("verticalLayout_2")
|
|
self.textBrowser = QtGui.QTextBrowser(self.frame)
|
|
self.textBrowser.setObjectName("textBrowser")
|
|
self.verticalLayout_2.addWidget(self.textBrowser)
|
|
self.verticalLayout.addWidget(self.frame)
|
|
|
|
self.retranslateUi(DebugDialog)
|
|
QtCore.QMetaObject.connectSlotsByName(DebugDialog)
|
|
|
|
def retranslateUi(self, DebugDialog):
|
|
DebugDialog.setWindowTitle(_("LinkChecker debug log"))
|
|
|