]> Dogcows Code - chaz/homebank/blob - src/ui-filter.h
import homebank-5.1.3
[chaz/homebank] / src / ui-filter.h
1 /* HomeBank -- Free, easy, personal accounting for everyone.
2 * Copyright (C) 1995-2017 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_FILTER_GTK_H__
21 #define __HB_FILTER_GTK_H__
22
23 enum
24 {
25 BUTTON_ALL,
26 BUTTON_NONE,
27 BUTTON_INVERT,
28 MAX_BUTTON
29 };
30
31
32
33
34
35 struct ui_flt_manage_data
36 {
37 Filter *filter;
38
39 GtkWidget *notebook;
40
41 GtkWidget *CY_option[FILTER_MAX];
42
43 GtkWidget *PO_mindate, *PO_maxdate;
44 GtkWidget *CY_month, *NB_year;
45
46 GtkWidget *CM_reconciled;
47 GtkWidget *CM_cleared;
48
49 GtkWidget *CM_forceadd, *CM_forcechg, *CM_forceremind;
50
51 GtkWidget *CM_paymode[NUM_PAYMODE_MAX];
52
53 GtkWidget *ST_minamount, *ST_maxamount;
54
55 GtkWidget *CM_exact;
56 GtkWidget *ST_info, *ST_wording, *ST_tag;
57
58 GtkWidget *LV_acc, *BT_acc[MAX_BUTTON];
59 GtkWidget *LV_pay, *BT_pay[MAX_BUTTON];
60 GtkWidget *LV_cat, *BT_cat[MAX_BUTTON];
61
62 gboolean show_account;
63
64
65 };
66
67
68 gint ui_flt_manage_dialog_new(GtkWidget *widget, Filter *filter, gboolean show_account);
69
70
71 #endif
This page took 0.03759 seconds and 4 git commands to generate.