PyQt vertical tab widget (text is horizontal)
Project description
pyqt-vertical-tab-widget
PyQt vertical tab widget (text is horizontal)
Requirements
PyQt5 >= 5.8
Setup
python -m pip install pyqt-vertical-tab-widget
Example
Code Example
from PyQt5.QtCore import Qt
from PyQt5.QtGui import QFont
from PyQt5.QtWidgets import QApplication, QLabel
from pyqt_vertical_tab_widget.verticalTabWidget import VerticalTabWidget
if __name__ == "__main__":
import sys
app = QApplication(sys.argv)
myWindow = VerticalTabWidget()
for i in range(3):
label = QLabel()
label.setAlignment(Qt.AlignCenter)
label.setText(f'Widget {i}')
label.setFont(QFont('Arial', 30, QFont.Bold))
myWindow.addTab(label, f'Tab {i}')
myWindow.show()
sys.exit(app.exec_())
Result
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyqt-vertical-tab-widget-0.0.12.tar.gz.
File metadata
- Download URL: pyqt-vertical-tab-widget-0.0.12.tar.gz
- Upload date:
- Size: 2.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/0.0.0 CPython/3.7.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84e3ed69616f65c5c702d7a6209bce6a4250af33bae0cd5d4c475785f561e778
|
|
| MD5 |
5c24e95a10f0b9995f3022359f3280dd
|
|
| BLAKE2b-256 |
40c8f2d605260910a6f7e0ef94cf140df58ca5659b0ff35ca257ecb78f2c03a3
|
File details
Details for the file pyqt_vertical_tab_widget-0.0.12-py3-none-any.whl.
File metadata
- Download URL: pyqt_vertical_tab_widget-0.0.12-py3-none-any.whl
- Upload date:
- Size: 3.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/0.0.0 CPython/3.7.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ba1d90181c33cea8ed726d8150d3e9799d70069792dc87cd83494f77d0670e3
|
|
| MD5 |
a483b856f8e6ebbdff85d0a9d0333333
|
|
| BLAKE2b-256 |
610da37f716fb39d034f5cdec7c78de8d82b66c2900d0554c47fe5b4da8f9993
|