#include <PalmOS.h>
#include "MiscFunc.h"
Go to the source code of this file.
Functions | |
Boolean | ApplicationHandleEvent (EventPtr event) |
loads form resources and sets the event handler for the form loaded. More... | |
void | ApplicationEventLoop (void) |
The main event loop of the application normally a C application would do something like FrmDispatchEvent(&event); but dispatch only tries to call the registered form handler and then frmhandleEvent, if that fails. More... | |
void | StartApplication (void) |
Called when the application starts/stops. More... | |
void | StopApplication (void) |
Called when the application stops. More... |
|
The main event loop of the application normally a C application would do something like FrmDispatchEvent(&event); but dispatch only tries to call the registered form handler and then frmhandleEvent, if that fails. And this is what we replicate with our own dispatch event which is aware of the Form class structure |
|
loads form resources and sets the event handler for the form loaded. returns true if the event was handled and should not be passed to a higher level handler. |
|
Called when the application starts/stops.
|
|
Called when the application stops.
|