rename to superqt (#3)

This commit is contained in:
Talley Lambert
2021-06-26 16:29:59 -04:00
committed by GitHub
parent eeb4413678
commit 7e64be7d9d
37 changed files with 78 additions and 79 deletions

View File

@@ -15,7 +15,7 @@
## Range Slider
```python
from qwidgets import QRangeSlider
from superqt import QRangeSlider
# as usual:
# you must create a QApplication before create a widget.
@@ -172,7 +172,7 @@ This package also includes two "labeled" slider variants. One for `QRangeSlider`
![labeled_range](images/labeled_range.png)
```python
from qwidgets import QLabeledRangeSlider
from superqt import QLabeledRangeSlider
```
This has the same API as `QRangeSlider` with the following additional options:
@@ -217,7 +217,7 @@ If you find that you need to fine tune the position of the handle labels:
![labeled_range](images/labeled_qslider.png)
```python
from qwidgets import QLabeledSlider
from superqt import QLabeledSlider
```
(no additional options at this point)
@@ -227,12 +227,12 @@ from qwidgets import QLabeledSlider
If you encounter any problems, please [file an issue] along with a detailed
description.
[file an issue]: https://github.com/napari/qwidgets/issues
[file an issue]: https://github.com/napari/superqt/issues
## Float Slider
just like QSlider, but supports float values
```python
from qwidgets import QDoubleSlider
from superqt import QDoubleSlider
```