PyPop.GUIApp#

Attributes#

ID_ABOUT

ID_OPEN_CONFIG

ID_OPEN_POP

ID_EXIT

EVT_RESULT_ID

Classes#

ResultEvent

Simple event to carry arbitrary result data

WorkerThread

A class that represents a thread of control.

MainWindow

Creates the main application window for PyPop.

Functions#

EVT_RESULT(win, func)

Module Contents#

ID_ABOUT = 101#
ID_OPEN_CONFIG = 102#
ID_OPEN_POP = 103#
ID_EXIT = 110#
EVT_RESULT_ID#
EVT_RESULT(win, func)#
class ResultEvent(data)#

Bases: wxPyEvent

Inheritance diagram of PyPop.GUIApp.ResultEvent

Simple event to carry arbitrary result data

class WorkerThread(notify_window)#

Bases: threading.Thread

Inheritance diagram of PyPop.GUIApp.WorkerThread

A class that represents a thread of control.

This class can be safely subclassed in a limited fashion. There are two ways to specify the activity: by passing a callable object to the constructor, or by overriding the run() method in a subclass.

This constructor should always be called with keyword arguments. Arguments are:

group should be None; reserved for future extension when a ThreadGroup class is implemented.

target is the callable object to be invoked by the run() method. Defaults to None, meaning nothing is called.

name is the thread name. By default, a unique name is constructed of the form “Thread-N” where N is a small decimal number.

args is a list or tuple of arguments for the target invocation. Defaults to ().

kwargs is a dictionary of keyword arguments for the target invocation. Defaults to {}.

If a subclass overrides the constructor, it must make sure to invoke the base class constructor (Thread.__init__()) before doing anything else to the thread.

run()#

Method representing the thread’s activity.

You may override this method in a subclass. The standard run() method invokes the callable object passed to the object’s constructor as the target argument, if any, with sequential and keyword arguments taken from the args and kwargs arguments, respectively.

abort()#
class MainWindow(parent, _id, title, datapath=None, altpath=None, debugFlag=0)#

Bases: wxFrame

Inheritance diagram of PyPop.GUIApp.MainWindow

Creates the main application window for PyPop.

OnAbout(_event)#
OnExit(_event)#
OnConfig(event)#

Select config file

OnPop(event)#

Select pop file

OnRun(_event)#
OnStop(_event)#
OnResult(event)#