]> Dogcows Code - chaz/homebank/blob - src/hb-account.h
import homebank-5.1.7
[chaz/homebank] / src / hb-account.h
1 /* HomeBank -- Free, easy, personal accounting for everyone.
2 * Copyright (C) 1995-2018 Maxime DOYEN
3 *
4 * This file is part of HomeBank.
5 *
6 * HomeBank is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * HomeBank is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #ifndef __HB_ACCOUNT_H__
21 #define __HB_ACCOUNT_H__
22
23
24
25 typedef struct _account Account;
26
27
28 struct _account
29 {
30 guint32 key;
31 gushort flags;
32 gushort type;
33 guint32 pos; //display position
34 guint32 kcur;
35 gchar *name;
36 gchar *number;
37 gchar *bankname;
38 gdouble initial;
39 gdouble warning;
40 gdouble minimum;
41 guint32 cheque1;
42 guint32 cheque2;
43 gchar *notes;
44
45
46 /* unsaved datas */
47 GQueue *txn_queue;
48 GtkWindow *window; //dsp_account window opened
49
50 gdouble bal_bank; //bank balance (reconciled transaction)
51 gdouble bal_today; //today balance (every transaction until today)
52 gdouble bal_future; //future balance (every transaction)
53
54 gboolean filter; //true if selected into filter
55
56 // import datas
57 gboolean imported;
58 guint32 imp_key; // 0 create new / x to map to existing
59 gchar *imp_name; // name in the file
60 };
61
62 // 0 is free
63 #define AF_CLOSED (1<<1)
64 #define AF_ADDED (1<<2)
65 #define AF_CHANGED (1<<3)
66 #define AF_NOSUMMARY (1<<4)
67 #define AF_NOBUDGET (1<<5)
68 #define AF_NOREPORT (1<<6)
69
70 #define AF_OLDBUDGET (1<<0)
71
72 enum
73 {
74 ACC_TYPE_NONE = 0,
75 ACC_TYPE_BANK = 1, //Banque
76 ACC_TYPE_CASH = 2, //Espèce
77 ACC_TYPE_ASSET = 3, //Actif (avoir)
78 ACC_TYPE_CREDITCARD = 4, //Carte crédit
79 ACC_TYPE_LIABILITY = 5, //Passif (dettes)
80 // ACC_TYPE_STOCK = 6, //Actions
81 // ACC_TYPE_MUTUALFUND = 7, //Fond de placement
82 // ACC_TYPE_INCOME = 8, //Revenus
83 // ACC_TYPE_EXPENSE = 9, //Dépenses
84 // ACC_TYPE_EQUITY = 10, //Capitaux propres
85 // ACC_TYPE_,
86 ACC_TYPE_MAXVALUE
87 };
88
89
90
91 Account *da_acc_malloc(void);
92 void da_acc_free(Account *item);
93 Account *da_acc_malloc(void);
94
95 void da_acc_destroy(void);
96 void da_acc_new(void);
97
98 guint da_acc_length(void);
99 gboolean da_acc_create_none(void);
100 gboolean da_acc_remove(guint32 key);
101 gboolean da_acc_insert(Account *acc);
102 gboolean da_acc_append(Account *item);
103 guint32 da_acc_get_max_key(void);
104 Account *da_acc_get_by_name(gchar *name);
105 Account *da_acc_get_by_imp_name(gchar *name);
106 Account *da_acc_get(guint32 key);
107 void da_acc_consistency(Account *item);
108
109
110 gboolean account_is_used(guint32 key);
111 gboolean account_exists(gchar *name);
112 gboolean account_rename(Account *item, gchar *newname);
113 void account_set_currency(Account *item, guint32 kcur);
114 void account_compute_balances(void);
115 gboolean account_balances_add(Transaction *trn);
116 gboolean account_balances_sub(Transaction *trn);
117
118 GList *account_glist_sorted(gint column);
119
120 void account_convert_euro(Account *acc);
121 #endif
This page took 0.036745 seconds and 4 git commands to generate.