View Single Post
Dave999's Avatar
Posts: 7,075 | Thanked: 9,073 times | Joined on Oct 2009 @ Moon! It's not the East or the West side... it's the Dark Side
#27
Im the winner?

from PyQt4 import QtGui

class Sailfish(QtGui.QWidget):
def __init__(self, parent=None):
super(Sailfish, self).__init__(parent)
Label = QtGui.QLabel("hello sailfish!")
LineEdit = QtGui.QLineEdit()

mainLayout = QtGui.QGridLayout()
mainLayout.addWidget(Label, 0, 0)
mainLayout.addWidget(LineEdit, 0, 1)

self.setLayout(mainLayout)
self.setWindowTitle("Super useless sailfish app")

if __name__ == '__main__':
import sys

app = QtGui.QApplication(sys.argv)

PythonWidget = Sailfish()
PythonWidget.show()

sys.exit(app.exec_())
__________________
Do something for the climate today! Anything!

I don't trust poeple without a Nokia n900...

Last edited by Dave999; 2013-01-16 at 12:51.