Search code examples
pythonqtpysideqstring

i can not find QString in PySide 1.1.0


I want to use QString and QStringList but can not find them in PySide 1.1.0 modules or documents. Not just QString and QStringList, I can not find QTableModel, QListModel etc. either.


Solution

  • You don't need QString or QStringList: you can use Python's native types anywhere they would be needed in C++/Qt.

    More details about this can be found in PSEP 101.

    For example,

    • QStringstr (unicode in Python 2)
    • QVariant → whatever type
    • QByteArraybytes or bytearray

    And there have never been such classes as QTableModel and QListModel in Qt.
    You're probably looking for QAbstractTableModel and QAbstractListModel.