pyqtconfig icon indicating copy to clipboard operation
pyqtconfig copied to clipboard

A PyQt config manager. Keep Qt widgets in sync with an config dictionary and/or QSettings object.

Results 18 pyqtconfig issues
Sort by recently updated
recently updated
newest added

If you use a mapper dictionary and a value is missing, then if the actual values are non-string it will try and set this non-string on the QComboBox and error....

it is usefull if another imported module (like matplotlib) uses pyqt with api version 1

I write a code using this module. It works properly on Linux but does not work on windows! How can I resolve this problem in windows?

A Boolean value is retrieved as `unicode` from QSettings' storage. The line https://github.com/mfitzp/pyqtconfig/blob/master/pyqtconfig/config.py#L983 compares the type to `basestring`, which then returns `False` so the type is not munged, which causes...

Just had the rare case of having corrupt data in one of my settings. In this specific case it was the mapping of QButtonGroup where the default value is something...

Currently the mapper is not working with inherited QWidget classes. Do you have any plans for fixing this? Here is my Traceback: ``` python Traceback (most recent call last): File...

It would be nice to have a option to pass arguments to the constructor of `QSettings` in the `QSettingsManager`. I have made a quick fix for me to use a...

Reagrding: "Note: On some platforms, versions of Qt, or Qt APIs QSettings will return strings for all values which can lead to complicated code and breakage. However, PyQtConfig is smart...