]> Dogcows Code - chaz/homebank/blob - src/ui-account.h
add gitignore
[chaz/homebank] / src / ui-account.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_ACCOUNT_GTK_H__
21 #define __HB_ACCOUNT_GTK_H__
22
23 enum
24 {
25 LST_DEFACC_TOGGLE,
26 LST_DEFACC_DATAS,
27 NUM_LST_DEFACC
28 };
29
30 enum
31 {
32 ACC_LST_INSERT_NORMAL,
33 ACC_LST_INSERT_REPORT
34 };
35
36
37 gchar *ui_acc_comboboxentry_get_name(GtkComboBox *entry_box);
38 guint32 ui_acc_comboboxentry_get_key(GtkComboBox *entry_box);
39 gboolean ui_acc_comboboxentry_set_active(GtkComboBox *entry_box, guint32 key);
40 void ui_acc_comboboxentry_add(GtkComboBox *entry_box, Account *acc);
41 void ui_acc_comboboxentry_populate(GtkComboBox *entry_box, GHashTable *hash, gint insert_type);
42 void ui_acc_comboboxentry_populate_except(GtkComboBox *entry_box, GHashTable *hash, guint except_key, gint insert_type);
43 GtkWidget *ui_acc_comboboxentry_new(GtkWidget *label);
44
45 /* = = = = = = = = = = */
46
47 void ui_acc_listview_add(GtkTreeView *treeview, Account *item);
48 guint32 ui_acc_listview_get_selected_key(GtkTreeView *treeview);
49 void ui_acc_listview_remove_selected(GtkTreeView *treeview);
50 void ui_acc_listview_populate(GtkWidget *view, gint insert_type);
51 GtkWidget *ui_acc_listview_new(gboolean withtoggle);
52
53 /* = = = = = = = = = = */
54
55 enum
56 {
57 ACTION_NEW,
58 ACTION_MODIFY,
59 ACTION_REMOVE,
60 };
61
62 enum
63 {
64 FIELD_NAME,
65 //todo: for stock account
66 //FIELD_TYPE,
67 FIELD_BANK,
68 FIELD_NUMBER,
69 FIELD_BUDGET,
70 FIELD_CLOSED,
71 FIELD_INITIAL,
72 FIELD_MINIMUM,
73 FIELD_CHEQUE1,
74 FIELD_CHEQUE2,
75 MAX_ACC_FIELD
76 };
77
78
79 struct ui_acc_manage_data
80 {
81 GList *tmp_list;
82 gint change;
83 gint action;
84 guint32 lastkey;
85
86 GtkWidget *window;
87
88 GtkWidget *LV_acc;
89 GtkWidget *BT_add, *BT_rem;
90
91 //GtkWidget *CY_curr;
92 GtkWidget *CY_type;
93
94 GtkWidget *ST_bank;
95 GtkWidget *ST_number;
96 GtkWidget *CM_nosummary;
97 GtkWidget *CM_nobudget;
98 GtkWidget *CM_noreport;
99 GtkWidget *CM_closed;
100 GtkWidget *ST_initial;
101 GtkWidget *ST_minimum;
102 GtkWidget *ST_cheque1;
103 GtkWidget *ST_cheque2;
104 };
105
106
107 struct accPopContext
108 {
109 GtkTreeModel *model;
110 guint32 except_key;
111 guint32 kcur;
112 gint insert_type;
113 };
114
115
116 GtkWidget *ui_acc_manage_dialog (void);
117
118
119 #endif
120
This page took 0.033699 seconds and 4 git commands to generate.