Property with a list as possible values for custom widget?
-
From here:
From PyQt4 4.6+ in Python3 QString doesn't exist and you are supposed to use ordinary Python3 unicode objects (string literals). To do this so that your code will work in both Python 2.x AND Python 3.x you can do following:
try: from PyQt4.QtCore import QString except ImportError: # we are using Python3 so QString is not defined QString = type("")
Ok, this for QString.
From here:
The QList class is a template class that provides lists. available in C++ only. But in python, it have python list data-type ready to used. If you want to use behavior like list you can use python list similar QListSo how will I do it? QList = []?
(with '[]' we define a list in python)
-
I tried this:
QList = []
ContainersWidgets = QtCore.pyqtProperty(QList, getContainersWidgets, setContainersWidgets)
But I get an error:
"ContainersWidgets = QtCore.pyqtProperty(QList, getContainersWidgets, setContainersWidgets)
TypeError: bytes or ASCII string expected not 'list'"It doesn't accept a List, only bytes or ASCII.
-
I tried this:
QList = []
ContainersWidgets = QtCore.pyqtProperty(QList, getContainersWidgets, setContainersWidgets)
But I get an error:
"ContainersWidgets = QtCore.pyqtProperty(QList, getContainersWidgets, setContainersWidgets)
TypeError: bytes or ASCII string expected not 'list'"It doesn't accept a List, only bytes or ASCII.
I think you need a python head for this :)
Are you using
https://pypi.python.org/pypi/PyQt5or what version ?
-
@Panoss said in Property with a list as possible values for custom widget?:
PyQt4
ok it really should have the qstringlist
-
https://hub.qgis.org/wiki/17/Python_plugin_API_changes_from_18_to_20#Replace-QStringList-with-list
"Replace QList methods with python list function"
So both Qlist and QStringList are replaced by list.
-
https://hub.qgis.org/wiki/17/Python_plugin_API_changes_from_18_to_20#Replace-QStringList-with-list
"Replace QList methods with python list function"
So both Qlist and QStringList are replaced by list.
But is that no QGIS API ?
is that the same as
https://sourceforge.net/projects/pyqt/It looks as some other binding. So i Guess that is why its not there.
-
I tried this:
QList = []
ContainersWidgets = QtCore.pyqtProperty(QList, getContainersWidgets, setContainersWidgets)
But I get an error:
"ContainersWidgets = QtCore.pyqtProperty(QList, getContainersWidgets, setContainersWidgets)
TypeError: bytes or ASCII string expected not 'list'"It doesn't accept a List, only bytes or ASCII.
@Panoss said in Property with a list as possible values for custom widget?:
QList = []
Should be
QList = type([])
-
@Panoss said in Property with a list as possible values for custom widget?:
QList = []
Should be
QList = type([])
@jsulm said in Property with a list as possible values for custom widget?:
@Panoss said in Property with a list as possible values for custom widget?:
QList = []
Should be
QList = type([])
You re right!!!
Now the error is gone!But my property doesn't appear in Qt Designer.