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

It seems the current approach for managing config is with `.get` and `.set` methods. I believe it would make sense to also implement `__getitem__` and `__setitem__` dunder methods in addition...

In settings_dialog_demo.py line 48: config_dialog = ConfigDialog(self.config, self, cols=2, f=Qt.WindowCloseButtonHint) needs to be: config_dialog = ConfigDialog(self.config, self, cols=2, flags=Qt.WindowType.WindowCloseButtonHint) The PySide6 QDialog docs [here]( https://doc.qt.io/qtforpython-6/PySide6/QtWidgets/QDialog.html#PySide6.QtWidgets.PySide6.QtWidgets.QDialog) indicates that the "flags=" parameter...

Hi, I want to save the dict to a database as soon as a value in the dict changed. To do so I need to know when the config dict...

Hello, I was looking through the source for pyqtconfig to get an idea of how to make hooks, and I noticed that there are hooks for `QTabWidget`, and was curious...

It seems that wrong files are uploaded at version 0.9.1 which can be downloaded with 'pip install pyqtconfig' There is difference in config.py file which is lacking of filename path...

Looks like you updated code to support pyside6 etc a while ago, however pypi does not have that version. Could you cut a new release? If you want to automate...

I’m getting — File "/Users/ajr/Projects/NET/zad/zad/views/settings.py", line 178, in setup sc.add_handler("gen/ignored_nets", sd.ignoredListWidget) File "/usr/local/py_env/zad/lib/python3.9/site-packages/pyqtconfig/config.py", line 877, in add_handler handler.setter(self._get(key)) File "/usr/local/py_env/zad/lib/python3.9/site-packages/pyqtconfig/config.py", line 428, in _set_QListWidget self.findItems( IndexError: list index out of...

Hi Martin, In the introduction it would be nice to know up front what problem this package solves for PyQt GUI developers. Why should someone invest the time to learn...

I am unable to import or run the `pyqtconfig `module. Below is example of error I get. I have PySide2 and PyQt5 installed already. ``` PS C:\Users\MyUsername> python -m pyqtconfig.demo...