1 /*     Copyright (C) 2007 Dominique Parisot
2  * 			zionly@free.org
3  * 			https://www.grisbi.org/
4  *
5  *     This program is free software; you can redistribute it and/or modify
6  *     it under the terms of the GNU General Public License as published by
7  *     the Free Software Foundation; either version 2 of the License, or
8  *     (at your option) any later version.
9  *
10  *     This program is distributed in the hope that it will be useful,
11  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *     GNU General Public License for more details.
14  *
15  *     You should have received a copy of the GNU General Public License
16  *     along with this program; if not, write to the Free Software
17  *     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19 
20 #ifndef _BALANCE_ESTIMATE_TAB_H
21 #define _BALANCE_ESTIMATE_TAB_H
22 
23 #include <gtk/gtk.h>
24 
25 /* START_INCLUDE_H */
26 #include "bet_data.h"
27 /* END_INCLUDE_H */
28 
29 /* START_DECLARATION */
30 GtkWidget *	bet_array_create_page (void);
31 void 		bet_array_create_transaction_from_transfert 	(TransfertData *transfert);
32 gchar *		bet_array_get_largeur_col_treeview_to_string	(void);
33 GtkWidget *	bet_array_get_toolbar							(void);
34 void		bet_array_init_largeur_col_treeview				(const gchar* description);
35 void 		bet_array_list_add_new_hist_line 				(GtkTreeModel *tab_model,
36 															 GtkTreeModel *model,
37 															 GtkTreeIter *iter,
38 															 GDate *date_min,
39 															 GDate *date_max);
40 gboolean 	bet_array_list_select_path 						(GtkWidget *tree_view,
41 															 GtkTreePath *path);
42 gboolean 	bet_array_list_set_largeur_col_treeview 		(void);
43 void 		bet_array_update_estimate_tab 					(gint account_number,
44 															 gint type_maj);
45 void 		bet_array_update_toolbar 						(gint toolbar_style);
46 /* END_DECLARATION */
47 
48 #endif /*_BALANCE_ESTIMATE_TAB_H*/
49 
50