pyqt help examples and some other useful objects (overloaded pyqt classes)
Project description
pyqt_templates (current v0.1.2/)
DESCRIPTION_SHORT
pyqt help examples and some other useful objects (overloaded pyqt classes)
DESCRIPTION_LONG
Designed for ...
Features
- good template for TableView/Model/Signals
License
See the LICENSE file for license rights and limitations (MIT).
Release history
See the HISTORY.md file for release history.
Installation
pip install pyqt-templates
Import
from pyqt_templates import *
USAGE EXAMPLES
See tests, sourcecode and docstrings for other examples.
1. template-1=IMPORT_BEST.py
import sys
from PyQt5.QtCore import *
from PyQt5.QtGui import *
from PyQt5.QtWidgets import *
2. template-2=QAPP_in_cls.py
import sys
from PyQt5.QtCore import *
from PyQt5.QtGui import *
from PyQt5.QtWidgets import *
from typing import *
# =====================================================================================================================
pass
# =====================================================================================================================
class Gui(QWidget):
TITLE: str = "[GUI] Universal"
_QAPP: QApplication = QApplication([])
def __init__(self):
super().__init__()
self.wgt_create()
self.wgt_main__apply_settings()
self.slots_connect()
# GUI SHOW ----------------------------------------------------------------------------------------------------
self.show()
exit_code = self._QAPP.exec_()
if exit_code == 0:
print(f"[OK]GUI({exit_code=})closed correctly")
else:
print(f"[FAIL]GUI({exit_code=})closed INCORRECTLY")
sys.exit(exit_code)
def wgt_main__apply_settings(self) -> None:
# MAIN WINDOW -------------------------------------------------------------------------------------------------
self.setWindowTitle(self.TITLE)
self.setMinimumSize(300, 100)
# self.setMinimumWidth(300)
# self.setMinimumHeight(100)
self.resize(300, 100)
def wgt_create(self) -> None:
# GRID --------------------------------------------------------------------------------------------------------
layout_grid = QGridLayout()
layout_grid.setSpacing(2)
layout_grid.addWidget(QLabel("STLINK"), 0, 0)
layout_grid.addWidget(QLabel("0"), 0, 1)
layout_grid.addWidget(QLabel("1"), 0, 2)
# START -------------------------------------------------------------------------------------------------------
self.btn_start = QPushButton("START")
self.btn_start.setCheckable(True)
# layout ------------------------------------------------------------------------------------------------------
layout_main = QVBoxLayout()
layout_main.addLayout(layout_grid)
layout_main.addWidget(self.btn_start)
self.setLayout(layout_main)
def slots_connect(self) -> None:
self.btn_start.toggled.connect(self.btn_toggled)
def btn_toggled(self, _state: Optional[bool] = None) -> None:
print(f"btn {_state=}")
# =====================================================================================================================
if __name__ == '__main__':
Gui()
# =====================================================================================================================
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
pyqt_templates-0.1.2.tar.gz
(24.7 kB
view details)
Built Distribution
File details
Details for the file pyqt_templates-0.1.2.tar.gz
.
File metadata
- Download URL: pyqt_templates-0.1.2.tar.gz
- Upload date:
- Size: 24.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb2885c7474b0f784f20d8dcc3e92c2262af0a2632a77a2e18afa5e52b548903 |
|
MD5 | 43b3831e6b78e9917d434806a5247f7e |
|
BLAKE2b-256 | ef99964a39baad55e6d8363d1498797b785b5bed706ecba6ab654baaccbfc75d |
File details
Details for the file pyqt_templates-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: pyqt_templates-0.1.2-py3-none-any.whl
- Upload date:
- Size: 24.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ecf42db6571234408f6d0f418b38960fc679094434fe832d63361b6fb061d753 |
|
MD5 | 8e567dc2f0e8b56c7acd778864f0addc |
|
BLAKE2b-256 | 188e40120b914bfdd602d0e7fc02222f138146ed424006bb62f3715db573503e |