PyGameApp(screensize[,caption][,transparency][,position]) -> new PyGameApp component.
Creates a PyGameApp component that obtains a pygame display surface and provides an internal pygame event dispatch mechanism.
Subclass to implement your own pygame "app".
Keyword arguments: - screensize -- (width,height) of the display area (default = (800,600)) - caption -- Caption for the pygame window (default = "Topology Viewer") - fullscreen -- True to start up in fullscreen mode (default = False) - transparency -- None, or (r,g,b) colour to make transparent - position -- None, or (left,top) position for surface within pygame window
Warning! You should be using the inbox/outbox interface, not these methods (except construction). This documentation is designed as a roadmap as to their functionalilty for maintainers and new component developers. |