source: dassmodus/trunk/dassmodus/dassmodus/dassmodus/ui/Ui_baseconfigwizard.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: 3.9 KB
Line 
1# -*- coding: utf-8 -*-
2
3# Form implementation generated from reading ui file 'baseconfigwizard.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_Wizard(object):
12 def setupUi(self, Wizard):
13 Wizard.setObjectName("Wizard")
14 Wizard.resize(500, 377)
15 Wizard.setWizardStyle(QtGui.QWizard.ModernStyle)
16 self.wizardPage1 = QtGui.QWizardPage()
17 self.wizardPage1.setObjectName("wizardPage1")
18 self.horizontalLayout = QtGui.QHBoxLayout(self.wizardPage1)
19 self.horizontalLayout.setObjectName("horizontalLayout")
20 self.groupBox = QtGui.QGroupBox(self.wizardPage1)
21 self.groupBox.setObjectName("groupBox")
22 self.gridLayout = QtGui.QGridLayout(self.groupBox)
23 self.gridLayout.setObjectName("gridLayout")
24 self.introtextEdit = QtGui.QTextEdit(self.groupBox)
25 self.introtextEdit.setObjectName("introtextEdit")
26 self.gridLayout.addWidget(self.introtextEdit, 0, 0, 1, 1)
27 self.horizontalLayout.addWidget(self.groupBox)
28 Wizard.addPage(self.wizardPage1)
29 self.wizardPage2 = QtGui.QWizardPage()
30 self.wizardPage2.setObjectName("wizardPage2")
31 self.gridLayout_2 = QtGui.QGridLayout(self.wizardPage2)
32 self.gridLayout_2.setObjectName("gridLayout_2")
33 self.groupBox_2 = QtGui.QGroupBox(self.wizardPage2)
34 self.groupBox_2.setObjectName("groupBox_2")
35 self.gridLayout_3 = QtGui.QGridLayout(self.groupBox_2)
36 self.gridLayout_3.setObjectName("gridLayout_3")
37 self.scrollArea = QtGui.QScrollArea(self.groupBox_2)
38 self.scrollArea.setWidgetResizable(True)
39 self.scrollArea.setObjectName("scrollArea")
40 self.scrollAreaWidgetContents = QtGui.QWidget(self.scrollArea)
41 self.scrollAreaWidgetContents.setGeometry(QtCore.QRect(0, 0, 468, 115))
42 self.scrollAreaWidgetContents.setObjectName("scrollAreaWidgetContents")
43 self.gridLayout_4 = QtGui.QGridLayout(self.scrollAreaWidgetContents)
44 self.gridLayout_4.setObjectName("gridLayout_4")
45 self.scrollArea.setWidget(self.scrollAreaWidgetContents)
46 self.gridLayout_3.addWidget(self.scrollArea, 0, 0, 1, 1)
47 self.gridLayout_2.addWidget(self.groupBox_2, 0, 0, 1, 1)
48 Wizard.addPage(self.wizardPage2)
49 self.wizardPage = QtGui.QWizardPage()
50 self.wizardPage.setObjectName("wizardPage")
51 self.verticalLayout_2 = QtGui.QVBoxLayout(self.wizardPage)
52 self.verticalLayout_2.setObjectName("verticalLayout_2")
53 self.groupBox_4 = QtGui.QGroupBox(self.wizardPage)
54 self.groupBox_4.setObjectName("groupBox_4")
55 self.gridLayout_5 = QtGui.QGridLayout(self.groupBox_4)
56 self.gridLayout_5.setObjectName("gridLayout_5")
57 self.previewtextEdit = QtGui.QTextEdit(self.groupBox_4)
58 self.previewtextEdit.setEnabled(True)
59 self.previewtextEdit.setFrameShadow(QtGui.QFrame.Sunken)
60 self.previewtextEdit.setReadOnly(True)
61 self.previewtextEdit.setObjectName("previewtextEdit")
62 self.gridLayout_5.addWidget(self.previewtextEdit, 4, 0, 1, 3)
63 self.verticalLayout_2.addWidget(self.groupBox_4)
64 Wizard.addPage(self.wizardPage)
65
66 self.retranslateUi(Wizard)
67 QtCore.QMetaObject.connectSlotsByName(Wizard)
68
69 def retranslateUi(self, Wizard):
70 Wizard.setWindowTitle(QtGui.QApplication.translate("Wizard", "add bacula client", None, QtGui.QApplication.UnicodeUTF8))
71 self.groupBox.setTitle(QtGui.QApplication.translate("Wizard", "basic configuration of a resource", None, QtGui.QApplication.UnicodeUTF8))
72 self.groupBox_2.setTitle(QtGui.QApplication.translate("Wizard", "please provide the following information:", None, QtGui.QApplication.UnicodeUTF8))
73 self.groupBox_4.setTitle(QtGui.QApplication.translate("Wizard", "overview", None, QtGui.QApplication.UnicodeUTF8))
74
Note: See TracBrowser for help on using the repository browser.