Skip to main content

QT UI Extension

Project description

Build Status

Features

  1. powerful signal-slot

  2. user friendly widget classes

User Friendly Widget Classes

Uniform wrapper on frequently-used widget, including:

container widget:

  1. Widget

  2. Dialog

  3. MainWindow

  4. GroupBox

  5. DockWidget

value widget:

  1. Label

  2. LineEdit

  3. ComboBox

  4. ListWidget

  5. SpinBox

  6. DoubleSpinBox

behavior widget:

  1. InputDialog

  2. Action

  3. Shortcut

  4. PushButton

Container Widget

Example 1: create widget

import quite

w = quite.Widget()
w.exec()
Simple Widget

Simple Widget

Example 2: nested widget

import quite


class CustomWidget(quite.Widget):
    def paint(self, painter: quite.Painter):
        painter.setFont(quite.QFont("Courier New", 14.0))
        painter.draw_text_bottom_right(quite.PointF(0, 0), "Custom Widget")
        painter.end()

main_window = quite.MainWindow()
custom_widget = CustomWidget(parent=main_window)
main_window.set_central_widget(custom_widget)
main_window.exec()
Nested Widget

Nested Widget

Example 3: widget from ui file

import os
from quite import *


class CustomWidget(Widget):
    def paint(self, painter: Painter):
        w, _ = self.size
        painter.setFont(QFont("Courier New", 14.0))
        painter.draw_text_bottom_right(PointF(0, 0), "So Cool!")
        painter.draw_text_bottom_left(PointF(w, 0), "From Custom Widget")
        painter.end()


main_window = load_ui(filename=os.path.join(os.path.dirname(__file__), 'main_window.ui'))
main_window.set_central_widget(CustomWidget(parent=main_window))
main_window.exec()

Use QtDesigner to create a ui file:

UI Design

UI Design

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

quite-0.4.8.tar.gz (20.5 kB view details)

Uploaded Source

File details

Details for the file quite-0.4.8.tar.gz.

File metadata

  • Download URL: quite-0.4.8.tar.gz
  • Upload date:
  • Size: 20.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.10.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/35.0.2 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.4.6

File hashes

Hashes for quite-0.4.8.tar.gz
Algorithm Hash digest
SHA256 6c89e408006148d0cc5f873980495741452ef0e319f4adb3b29179ba464e086f
MD5 a61a8eb3c871240dc8e88e2a3abacdb4
BLAKE2b-256 50b0eb4dc10c13830417fe30b70e184db7fbfc10e30f62b54436119ad4c39c98

See more details on using hashes here.

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