I decided to try PySide 0.3.2 today with a small program I had been developing in PyQt. PySide is our long-term choice.
I found that a number of the member functions I called with PyQt were missing from the PySide bindings. Poking around in typesystem_gui_common.xml, I see that these are marked with remove="all". In my case, I was using various functions in QStandardItemModel that were missing, such as appendColumn() and the overloaded appendRow(list), but not appendRow(QStandardItem). My guess is that these were removed due to a binding generator issue. Maybe it's anything with a QList? Should I file a bug, or just be patient and wait until they reappear? Also, confusingly, some functions are marked with remove="all" but do have a PySide binding, such as QTableWidget.isSortingEnabled(). Maybe this is just version skew between the release and what is in gitorious, but I am not sure. Thanks, Dan _______________________________________________ PySide mailing list [email protected] http://lists.openbossa.org/listinfo/pyside
