#include <AccountsForm.h>
Inheritance diagram for AccountsForm:
Public Methods | |
AccountsForm () FORM_SECTION1 | |
constructor; does nothing. More... | |
Private Methods | |
void | displayTotals () FORM_SECTION1 |
calculates the totals (if necessary) and draws them on the screen. More... | |
void | updatePopupTrigger (void) FORM_SECTION1 |
reflect choice of visible accounts on popup trigger. More... | |
void | resetIEAccounts () FORM_SECTION1 |
sets the balances of Income and Expense accounts to 0. More... | |
Boolean | handleKeyDownEvent (WChar key_id, UInt16 modifiers) FORM_SECTION1 |
called when key down event occurs. More... | |
Boolean | handleOpenEvent () FORM_SECTION1 |
called when form open event occurs. More... | |
Boolean | handleCtlSelectEvent (UInt16 control_id) FORM_SECTION1 |
called when ctl select event occurs. More... | |
Boolean | handleTblSelectEvent (tblSelect &tbl_select) FORM_SECTION1 |
called when a table select event occurs. More... | |
Boolean | handleMenuEvent (UInt16 menu_item_id) FORM_SECTION1 |
called when a menu event occurs. More... | |
Boolean | handleUpdateEvent (UInt16 update_code) FORM_SECTION1 |
called when a form update event occurs. More... | |
Boolean | handleCloseEvent () FORM_SECTION1 |
this function is called when the form is closed. More... | |
Boolean | handlePenDownEvent (Int16 x_coord, Int16 y_coord) FORM_SECTION1 |
handles events generated by the pen up. More... | |
Boolean | handlePopSelect (popSelect &pop_select) FORM_SECTION1 |
handles events generated by popups. More... | |
Private Attributes | |
EditTransactionForm * | _edit_trans_form |
object used to add transactions. More... | |
PreferencesForm | _pref_form |
object handling the preferences form. More... | |
PurgeTransForm | _purge_form |
object handling the form used to purge transactions. More... | |
TransactionsForm * | _transactions_form |
object to handle transaction display. More... | |
Char | cat_name [dmCategoryLength] |
name of the current category. More... | |
AccountsTable | ac_tbl |
the normal way to do this would be to declare a pointer to the object here and allocate it when the form is opened unfortunatelly memory management is not that straight forward for the palm. More... | |
Int16 | last_screenX |
store last known pen X position. More... | |
Int16 | last_screenY |
store last known pen Y position. More... |
Definition at line 33 of file AccountsForm.h.
|
constructor; does nothing.
|
|
calculates the totals (if necessary) and draws them on the screen.
|
|
this function is called when the form is closed.
Reimplemented from Form. |
|
called when ctl select event occurs.
Reimplemented from Form. |
|
called when key down event occurs.
Reimplemented from Form. |
|
called when a menu event occurs.
Reimplemented from Form. |
|
called when form open event occurs.
Reimplemented from Form. |
|
handles events generated by the pen up.
Reimplemented from Form. |
|
handles events generated by popups.
Reimplemented from Form. |
|
called when a table select event occurs.
Reimplemented from Form. |
|
called when a form update event occurs.
Reimplemented from Form. |
|
sets the balances of Income and Expense accounts to 0.
|
|
reflect choice of visible accounts on popup trigger.
|
|
object used to add transactions.
Definition at line 41 of file AccountsForm.h. |
|
object handling the preferences form.
Definition at line 43 of file AccountsForm.h. |
|
object handling the form used to purge transactions.
Definition at line 45 of file AccountsForm.h. |
|
object to handle transaction display.
Definition at line 47 of file AccountsForm.h. |
|
the normal way to do this would be to declare a pointer to the object here and allocate it when the form is opened unfortunatelly memory management is not that straight forward for the palm.
Definition at line 52 of file AccountsForm.h. |
|
name of the current category.
Definition at line 49 of file AccountsForm.h. |
|
store last known pen X position.
Definition at line 54 of file AccountsForm.h. |
|
store last known pen Y position.
Definition at line 56 of file AccountsForm.h. |