# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file '/home/wido/src/luma/lib/luma/plugins/usermanagement/NameDialog.ui'
#
# Created: Wed Aug 17 15:23:47 2005
# by: The PyQt User Interface Compiler (pyuic) 3.14.1
#
# WARNING! All changes made in this file will be lost!
import sys
from qt import *
class NameDialog(QDialog):
def __init__(self,parent = None,name = None,modal = 0,fl = 0):
QDialog.__init__(self,parent,name,modal,fl)
if not name:
self.setName("NameDialog")
NameDialogLayout = QGridLayout(self,1,1,11,6,"NameDialogLayout")
self.line7 = QFrame(self,"line7")
self.line7.setFrameShape(QFrame.HLine)
self.line7.setFrameShadow(QFrame.Sunken)
self.line7.setFrameShape(QFrame.HLine)
NameDialogLayout.addWidget(self.line7,2,0)
spacer10 = QSpacerItem(31,16,QSizePolicy.Minimum,QSizePolicy.Expanding)
NameDialogLayout.addItem(spacer10,1,0)
layout3 = QGridLayout(None,1,1,0,6,"layout3")
self.textLabel4 = QLabel(self,"textLabel4")
self.textLabel4.setAlignment(QLabel.WordBreak | QLabel.AlignVCenter | QLabel.AlignRight)
layout3.addWidget(self.textLabel4,3,0)
self.firstEdit = QLineEdit(self,"firstEdit")
layout3.addWidget(self.firstEdit,1,1)
self.lastEdit = QLineEdit(self,"lastEdit")
layout3.addWidget(self.lastEdit,3,1)
self.textLabel2 = QLabel(self,"textLabel2")
self.textLabel2.setAlignment(QLabel.AlignVCenter | QLabel.AlignRight)
layout3.addWidget(self.textLabel2,1,0)
NameDialogLayout.addLayout(layout3,0,0)
layout2 = QHBoxLayout(None,0,6,"layout2")
spacer9 = QSpacerItem(271,21,QSizePolicy.Expanding,QSizePolicy.Minimum)
layout2.addItem(spacer9)
self.okButton = QPushButton(self,"okButton")
self.okButton.setSizePolicy(QSizePolicy(QSizePolicy.Fixed,QSizePolicy.Fixed,0,0,self.okButton.sizePolicy().hasHeightForWidth()))
self.okButton.setDefault(1)
layout2.addWidget(self.okButton)
self.cancelButton = QPushButton(self,"cancelButton")
self.cancelButton.setSizePolicy(QSizePolicy(QSizePolicy.Fixed,QSizePolicy.Fixed,0,0,self.cancelButton.sizePolicy().hasHeightForWidth()))
self.cancelButton.setAutoDefault(0)
layout2.addWidget(self.cancelButton)
NameDialogLayout.addLayout(layout2,3,0)
self.languageChange()
self.resize(QSize(280,142).expandedTo(self.minimumSizeHint()))
self.clearWState(Qt.WState_Polished)
self.connect(self.cancelButton,SIGNAL("clicked()"),self.reject)
self.connect(self.okButton,SIGNAL("clicked()"),self.accept)
self.setTabOrder(self.firstEdit,self.lastEdit)
self.setTabOrder(self.lastEdit,self.okButton)
self.setTabOrder(self.okButton,self.cancelButton)
def languageChange(self):
self.setCaption(self.__tr("Full name"))
self.textLabel4.setText(self.__tr("<b>Last:</b>"))
QToolTip.add(self.textLabel4,self.__tr("This attribute must be set."))
self.textLabel2.setText(self.__tr("First:"))
self.okButton.setText(self.__tr("&Ok"))
self.okButton.setAccel(self.__tr("Alt+O"))
self.cancelButton.setText(self.__tr("&Cancel"))
self.cancelButton.setAccel(self.__tr("Alt+C"))
def __tr(self,s,c = None):
return qApp.translate("NameDialog",s,c)
if __name__ == "__main__":
a = QApplication(sys.argv)
QObject.connect(a,SIGNAL("lastWindowClosed()"),a,SLOT("quit()"))
w = NameDialog()
a.setMainWidget(w)
w.show()
a.exec_loop()
|