Files
superqt/docs/widgets/qlargeintspinbox.md
Talley Lambert 97bb814451 Docs (#124)
* wip

* wip

* more wip

* progress

* more docs

* more changes

* add link

* more examples and improvements

* fix check-manifest

* sort members

* remove autogen images

* remove _images

* add font docs

* add link to utils
2022-10-05 08:59:27 -04:00

417 B

QLargeIntSpinBox

QSpinBox variant that allows to enter large integers, without overflow.

from qtpy.QtCore import Qt
from qtpy.QtWidgets import QApplication

from superqt import QLargeIntSpinBox

app = QApplication([])

slider = QLargeIntSpinBox()
slider.setRange(0, 4.53e8)
slider.setValue(4.53e8)
slider.show()

app.exec_()

{{ show_widget(150) }}

{{ show_members('superqt.QLargeIntSpinBox') }}