Introduction
'app' is the base widget from which all applications are derived. It connects to the shell and sends messages back and forth between the shell and application. It also handles speech and sets up the base context menu for an application.
Import Command
from levelstar.sbtk.app import App
Functions
__init__ function:
def __init__ (self, args=[], id=None, title=None, brailleTitle=None):
The init function initializes an application. It takes 4 arguments. 'args' is a list of arguments passed to the application. 'id' is the ID assigned to the application. 'title' is the title of the application. 'brailleTitle' is the title for a braille display, but is not currently in use.
