]> Dogcows Code - chaz/homebank/blob - src/hb-payee.h
import homebank-4.6.3
[chaz/homebank] / src / hb-payee.h
1 /* HomeBank -- Free, easy, personal accounting for everyone.
2 * Copyright (C) 1995-2014 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_PAYEE_H__
21 #define __HB_PAYEE_H__
22
23 typedef struct _payee Payee;
24
25
26 struct _payee
27 {
28 guint32 key;
29 //gushort flags;
30 gchar *name;
31
32 /* unsaved datas */
33 gboolean filter;
34 gboolean imported;
35 };
36
37 void da_pay_free(Payee *item);
38 Payee *da_pay_malloc(void);
39
40 void da_pay_destroy(void);
41 void da_pay_new(void);
42
43 guint da_pay_length(void);
44 gboolean da_pay_create_none(void);
45 gboolean da_pay_remove(guint32 key);
46 gboolean da_pay_insert(Payee *acc);
47 gboolean da_pay_append(Payee *acc);
48 guint32 da_pay_get_max_key(void);
49 Payee *da_pay_get_by_name(gchar *name);
50 Payee *da_pay_get(guint32 key);
51 void da_pay_consistency(Payee *item);
52
53 GList *payee_glist_sorted(gint column);
54
55 gboolean payee_is_used(guint32 key);
56 void payee_move(guint32 key1, guint32 key2);
57 gboolean payee_rename(Payee *item, const gchar *newname);
58 Payee *payee_append_if_new(gchar *name);
59
60 void payee_load_csv(gchar *filename);
61 void payee_save_csv(gchar *filename);
62
63 #endif
This page took 0.035917 seconds and 5 git commands to generate.