1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
#!/usr/bin/env python
#############################################################################
##
## Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
## Contact: Qt Software Information (qt-info@nokia.com)
##
## This file is part of the example classes of the Qt Toolkit.
##
#############################################################################
from PyQt4 import QtCore, QtGui
class AddressBook(QtGui.QWidget):
def __init__(self, parent=None):
super(AddressBook, self).__init__(parent)
nameLabel = QtGui.QLabel("Name:")
self.nameLine = QtGui.QLineEdit()
addressLabel = QtGui.QLabel("Address:")
self.addressText = QtGui.QTextEdit()
mainLayout = QtGui.QGridLayout()
mainLayout.addWidget(nameLabel, 0, 0)
mainLayout.addWidget(self.nameLine, 0, 1)
mainLayout.addWidget(addressLabel, 1, 0, QtCore.Qt.AlignTop)
mainLayout.addWidget(self.addressText, 1, 1)
self.setLayout(mainLayout)
self.setWindowTitle("Simple Address Book")
if __name__ == '__main__':
import sys
app = QtGui.QApplication(sys.argv)
addressBook = AddressBook()
addressBook.show()
sys.exit(app.exec_())
|