Skip to main content

A package for adding a theme management window to any PyQt6/PySide6 applications using PyQtDarkTheme

Project description

PyQtThemeSettings

License Version

A package for adding a theme management window to any PyQt6/PySide6 applications using PyQtDarkTheme

Installation

PyQtThemeSettings can be installed using pip

pip install pyqtthemesettings

Usage

Without PyQtThemeSettings

if __name__ == "__main__":
    app = QApplication([]) # Initialise the App
    window = MainWindow() # Initialise Window
    window.show()
    exit(app.exec())

With PyQtThemeSettings

if __name__ == "__main__":
    app = QApplication([])
    app.setOrganizationName("MrSuspicious")
    app.setApplicationName("TestApp")
    settings = QSettings()
    appSettings = AppSettings(settings, app) # Pass in QSettings and QApplication
    window = MainWindow()
    window.show()
    exit(app.exec())

PyQtThemeSettings takes in a QSettings object, which controls where the persistent settings are stored, and a QApplication.

In order to access the settings window, connect whatever signal you wish to the AppSettings.openSettings slot.

Contribution to the Project

If you have any feature suggestions please feel free to make a pull request!

Also if you happen to test this with a version of python 3.11 and notice no issues, please let me know so i can change the entry on PyPi

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

PyQtThemeSettings-1.0.0.tar.gz (5.4 kB view hashes)

Uploaded Source

Built Distribution

PyQtThemeSettings-1.0.0-py3-none-any.whl (5.7 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