superqt
superqt copied to clipboard
Missing widgets and components for Qt-python
updates: - [github.com/myint/autoflake: v1.4 → v1.5.1](https://github.com/myint/autoflake/compare/v1.4...v1.5.1)
**Describe the bug** lack of possibility to stop timer behind throttling mechanism may lead to failing of strict tests like in napari by keep objects alive https://github.com/napari/napari/runs/8043907763?check_suite_focus=true#step:8:377 **To Reproduce** Steps...
To import `SignalInstance` from `qtpy.QtCore` the minimum version of qtpy is `1.10`
**Describe the bug** Using global stylesheets (such as qdarkstyle) breaks the QRangeSlider visualization. **To Reproduce** Steps to reproduce the behavior: Used the example stylesheet for QLabeledRangeSlider and then set the...
This fixes a bug where rangeChanged expected integers. The _GenericSlider class uses floats for the range and so QLabeledRangeSlider needs to have the _frangeChanged signal This moves it from QLabeledDoubleRangeSlider
This PR ports the `_BaseEventedItemModel`, an adapter between the `QAbstractItemModel` and our `SelectableEventedList`, from napari to superqt. This is a first step towards a psygnal backed `QtListView` in superqt Original...
Hi, What is the signal when a handle value is changed by enter double-click on its label ?
This implements the QCheckComboBox that is discussed in #89. A few notes: - `addItems` and `addItem` included `checked` parameters to quickly initializes the items while adding. We can remove that...
``` Traceback (most recent call last): [30](https://github.com/tlambert03/app-model/runs/7313156399?check_suite_focus=true#step:6:31) File "/Users/runner/hostedtoolcache/Python/3.9.13/x64/lib/python3.9/site-packages/superqt/fonticon/_qfont_icon.py", line 246, in pixmap [31](https://github.com/tlambert03/app-model/runs/7313156399?check_suite_focus=true#step:6:32) pm = QPixmapCache.find(pmckey) if pmckey else None [32](https://github.com/tlambert03/app-model/runs/7313156399?check_suite_focus=true#step:6:33) DeprecationWarning: QPixmapCache.find(const QString & key) is deprecated ```...
**update values the second time removes all labels** When I create my_slider QLabeledRangeSlider object then set the values with my_slider.setValue(mylist_1) every thing works fine but when I set a new...