https://github.com/meteran/pyqtflowlayout
Scrollable flow layout
https://github.com/meteran/pyqtflowlayout
Last synced: 9 months ago
JSON representation
Scrollable flow layout
- Host: GitHub
- URL: https://github.com/meteran/pyqtflowlayout
- Owner: meteran
- Fork: true (cgdougm/PyQtFlowLayout)
- Created: 2016-04-12T09:12:11.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-02-26T05:53:58.000Z (over 12 years ago)
- Last Synced: 2024-10-02T09:14:08.225Z (over 1 year ago)
- Language: Python
- Size: 141 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
**PyQtFlowLayout**
The flow layout that many have shared from the given examples needs additional methods to become really useful, in particular, I needed it to be able to propagate up into a scrollable wrapper.
**Example**

Usage:
scroller = ScrollingFlowWidget()
scroller.addWidget( QtGui.QPushButton("Push Me") )
scroller.addWidget( QtGui.QPushButton("Don't push") )
...