source: dassmodus/trunk/dassmodus/dassmodus/dassmodus/ui/Ui_htmldiffview.py@ 956

Last change on this file since 956 was 956, checked in by pstorz, on Sep 28, 2011 at 11:37:02 AM

ui files

File size: 1.4 KB
Line 
1# -*- coding: utf-8 -*-
2
3# Form implementation generated from reading ui file 'htmldiffview.ui'
4#
5# Created by: PyQt4 UI code generator 4.7.3
6#
7# WARNING! All changes made in this file will be lost!
8
9from PyQt4 import QtCore, QtGui
10
11class Ui_Dialog(object):
12 def setupUi(self, Dialog):
13 Dialog.setObjectName("Dialog")
14 Dialog.resize(1063, 426)
15 self.verticalLayout = QtGui.QVBoxLayout(Dialog)
16 self.verticalLayout.setObjectName("verticalLayout")
17 self.webView = QtWebKit.QWebView(Dialog)
18 self.webView.setUrl(QtCore.QUrl("about:blank"))
19 self.webView.setObjectName("webView")
20 self.verticalLayout.addWidget(self.webView)
21 self.buttonBox = QtGui.QDialogButtonBox(Dialog)
22 self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
23 self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok)
24 self.buttonBox.setObjectName("buttonBox")
25 self.verticalLayout.addWidget(self.buttonBox)
26
27 self.retranslateUi(Dialog)
28 QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL("accepted()"), Dialog.accept)
29 QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL("rejected()"), Dialog.reject)
30 QtCore.QMetaObject.connectSlotsByName(Dialog)
31
32 def retranslateUi(self, Dialog):
33 Dialog.setWindowTitle(QtGui.QApplication.translate("Dialog", "Dialog", None, QtGui.QApplication.UnicodeUTF8))
34
35from PyQt4 import QtWebKit
Note: See TracBrowser for help on using the repository browser.