[PyQt] QAxBase.dynamicCall overloaded with list as arguments

2012-11-15 Thread Knacktus
Hello everyone, calling QAxBase.dynamicCall like this works: my_comp.dynamicCall("MyMethod(const QString&, int, bool)", "test", 2, False) however, using the overloaded call (http://qt-project.org/doc/qt-4.8/qaxbase.html#dynamicCall-2) doesn't: my_comp.dynamicCall("MyMethod(const QString&, in

Re: [PyQt] Curious behaviour of slider/spin when controlled by keyboard

2012-11-15 Thread Shriramana Sharma
Hello. Could anyone please look into the curious behaviour I reported last month as seen below? (I'll also ask this on the Qt Interest list as it concerns C++ as well.) I've included the buggy PyQt program as well as a minimal test of a slider in C++ and PyQt. I note that in both the C++/PyQt mini

Re: [PyQt] QTableView Delegates

2012-11-15 Thread Laurent Coustet
Le 15/11/2012 13:58, Stephen Chapman a écrit : I have a bit of code that I'm working with for ComboBox Delegates. What I am trying to do is make the delegate on a specific cell of a QTableView. I know I can add one to a column . And add one to a row but I am not sure how I would just add one to

[PyQt] QTableView Delegates

2012-11-15 Thread Stephen Chapman
I have a bit of code that I'm working with for ComboBox Delegates. What I am trying to do is make the delegate on a specific cell of a QTableView. I know I can add one to a column . And add one to a row but I am not sure how I would just add one to a specific cell. Thank you in advance _