Package vqt :: Module main
[hide private]
[frames] | no frames]

Module main

source code

Classes [hide private]
  VQApplication
Functions [hide private]
 
idlethread(func)
A decorator which causes the function to be called by the qt main thread rather than synchronously...
source code
 
idlethreadsync(func)
Similar to idlethread except that it is synchronous and able to return values.
source code
 
startup(css=None) source code
 
main() source code
 
eatevents() source code
Variables [hide private]
  __package__ = 'vqt'
Function Details [hide private]

idlethread(func)

source code 

A decorator which causes the function to be called by the qt main thread rather than synchronously...

NOTE: This makes the call async handled by the qt main loop code. you can NOT return anything.