|
2010-07-01
, 23:01
|
|
Posts: 267 |
Thanked: 408 times |
Joined on May 2010
@ Austria
|
#2
|
The Following 5 Users Say Thank You to Nathraiben For This Useful Post: | ||
|
2010-07-01
, 23:13
|
Posts: 217 |
Thanked: 20 times |
Joined on Jan 2010
|
#3
|
|
2010-07-01
, 23:23
|
Posts: 217 |
Thanked: 20 times |
Joined on Jan 2010
|
#4
|
|
2010-07-01
, 23:26
|
|
Posts: 267 |
Thanked: 408 times |
Joined on May 2010
@ Austria
|
#5
|
|
2010-07-02
, 17:37
|
Posts: 217 |
Thanked: 20 times |
Joined on Jan 2010
|
#6
|
|
2010-07-02
, 18:13
|
|
Posts: 267 |
Thanked: 408 times |
Joined on May 2010
@ Austria
|
#7
|
class MyForm(QtGui.QMainWindow):
def __init__(self, parent=None):
#build parent user interface QtGui.QWidget.__init__(self, parent)
self.ui = Ui_MainWindow()
self.ui.setupUi(self)
if __name__ == "__main__": #This function means this was run directly, not called from another python file. app = QtGui.QApplication(sys.argv)
myapp = MyForm()
myapp.show()
sys.exit(app.exec_())
The Following User Says Thank You to Nathraiben For This Useful Post: | ||
|
2010-07-03
, 00:37
|
Posts: 217 |
Thanked: 20 times |
Joined on Jan 2010
|
#8
|
|
2010-07-03
, 00:57
|
|
Posts: 267 |
Thanked: 408 times |
Joined on May 2010
@ Austria
|
#9
|
|
2010-07-03
, 02:03
|
Posts: 217 |
Thanked: 20 times |
Joined on Jan 2010
|
#10
|
I am a semi senior php programmer.
I am trying to learn how to create GUI based apps for the N900.
There is a lot of information, I can not find any clear step by step tutorial.
Can someone please explain in a few words what are these "things" ?
Python = OO programming language
Cairo = Graphic library
PyCairo = Is a "layer" between Cairo and Python? When should I use it?
GTK = Do I need it if I use cairo? I should use it instead? It is other thing and I need both?
PyGtk = same as PyCairo?
Any guidance is welcome