Skip to main content

PyQt QTabWidget which is the most common type. This has a lot of common features such as close a tab, close tabs to the left/right, close other tabs and so on.

Project description

pyqt-tab-widget

PyQt QTabWidget which is the most common type (if you doubt it, see the 'feature' section below). This has a lot of common features such as close a tab, close tabs to the left/right, close other tabs and so on.

Requirements

  • PyQt5 >= 5.8

Setup

python -m pip install pyqt-tab-widget

Feature

  • List which is able to do with context menu

    • close a tab

    • close tabs to the left

    • close tabs to the right

    • close other tabs

    • close all tabs

    • reopen closed tab

  • Alt+Left to change the current tab to the very left tab

  • Alt+Right to change the current tab to the very right tab

  • Ctrl+F4 to close current tab

  • Close any tabs with clicking the close button (close button's style is defaut, i will customize it)

Example

Code Sample

from PyQt5.QtWidgets import QApplication, QWidget, QMainWindow

from pyqt_tab_widget import TabWidget





class MainWindow(QMainWindow):

  def __init__(self):

    super().__init__()

    self.__initUi()



  def __initUi(self):

    tabWidget = TabWidget()

    tabWidget.addTab(QWidget(), 'A')

    tabWidget.addTab(QWidget(), 'B')

    tabWidget.addTab(QWidget(), 'C')

    tabWidget.addTab(QWidget(), 'D')

    tabWidget.addTab(QWidget(), 'E')

    self.setCentralWidget(tabWidget)





if __name__ == "__main__":

  import sys



  app = QApplication(sys.argv)

  mainWindow = MainWindow()

  mainWindow.show()

  sys.exit(app.exec_())

Result

image

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyqt-tab-widget-0.0.1.tar.gz (3.6 kB view hashes)

Uploaded Source

Built Distribution

pyqt_tab_widget-0.0.1-py3-none-any.whl (4.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page