Skip to main content

QT UI Extension

Project description

https://travis-ci.org/SF-Zhou/quite.svg?branch=master https://app.wercker.com/status/36678b75b4b166a5a73b75de82bdbbd2/s/master

A simple extension for PySide.

I hope it is useful for you, too. :D

Powerful Signal-Slot

import quite

signal = quite.SignalSender()
executed = [False]

def slot(a: int, b: int, c: int):
    assert a == 1
    assert b == 2
    assert c == 3
    executed[0] = True

signal.connect(slot)
signal.emit(1, 2, 3)
assert executed[0]

User Friendly Widget Classes

import quite

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

And you will get that:

Simple Widget

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.0.8.zip (23.6 kB view hashes)

Uploaded Source

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