#include <TransactionsTable.h>
Inheritance diagram for TransactionsTable:
Public Methods | |
TransactionsTable () | |
initialises the table. More... | |
void | loadData () |
loads data into the accounts table. More... | |
void | initColumns () |
inits the columns in the table. More... | |
Boolean | recordIsValid (UInt16 id) |
overloads the method in Table. More... | |
Static Public Methods | |
void | drawCurrency (void *table, Int16 row, Int16 column, RectangleType *bounds) |
draws a sum of money (callback). More... | |
void | drawDate (void *table, Int16 row, Int16 column, RectangleType *bounds) |
draws a date (callback). More... | |
void | drawAcc (void *table, Int16 row, Int16 column, RectangleType *bounds) |
draw the account name (source or dest; the one which is different from the present account) - callback. More... | |
Static Public Attributes | |
const Int16 | date_col = 0 |
code for the date column. More... | |
const Int16 | dest_col = 1 |
code for the peer name/destination account column. More... | |
const Int16 | amount_col = 2 |
code for the amount column. More... | |
const Int16 | cleared_col = 3 |
code for the column displaying the cleared status. More... |
Copyright (C) 2000-2002 Vlad Mereuta <dizzy@users.sourceforge.net>
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Definition at line 27 of file TransactionsTable.h.
|
initialises the table.
|
|
draw the account name (source or dest; the one which is different from the present account) - callback.
|
|
draws a sum of money (callback).
|
|
draws a date (callback).
|
|
inits the columns in the table.
Implements Table. |
|
loads data into the accounts table.
Implements Table. |
|
overloads the method in Table.
Implements Table. |
|
code for the amount column.
Definition at line 35 of file TransactionsTable.h. |
|
code for the column displaying the cleared status.
Definition at line 37 of file TransactionsTable.h. |
|
code for the date column.
Definition at line 31 of file TransactionsTable.h. |
|
code for the peer name/destination account column.
Definition at line 33 of file TransactionsTable.h. |