python_qt_binding and QStringList,QStringListModel missing
I recently incorporated an Rviz widget into my custom GUI, and the Rviz Python bindings require the use of 'python_qt_binding' (I used to just directly import PyQt4). Unfortunately, this is causing some problems in the rest of my code. When using from python_qt_binding.QtCore import *
, I am now getting a NameError when attempting to create QStringList or QStringListModel objects (NameError: global name 'QStringList' is not defined
).
Am I doing something wrong, or am I expected to work around this?