Kevin Walzer wrote:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1Hello, I'm working on my first PyQt application, and to get a feel for signals and slots, I'm trying to have my application echo the text entered into a line edit widget to stdout. However, when I test this, what is printed is "Not implemented yet," which tells me I'm doing something wrong. Here is my ui.h code: void form1::LaunchFoo() { ~ # get the text typed in the line edit ~ e = self.lineEdit1.text().ascii() ~ #show output ~ os.system('echo %s', e) ~ } I've also tried the simple statement "print %s, e", but I also get the "not implemented yet" error. Can anyone help point me in the right direction?
The ui.h file is of no use here AFAIK. What you do is to subclass your generated widget class and then override the slot method - that's all.
Diez _______________________________________________ PyKDE mailing list [email protected] http://mats.imk.fraunhofer.de/mailman/listinfo/pykde
