GnuCash 2.4.99
account-quickfill.h
Go to the documentation of this file.
00001 /********************************************************************\
00002  * account-quickfill.h -- Create an account-name quick-fill         *
00003  *                                                                  *
00004  * This program is free software; you can redistribute it and/or    *
00005  * modify it under the terms of the GNU General Public License as   *
00006  * published by the Free Software Foundation; either version 2 of   *
00007  * the License, or (at your option) any later version.              *
00008  *                                                                  *
00009  * This program is distributed in the hope that it will be useful,  *
00010  * but WITHOUT ANY WARRANTY; without even the implied warranty of   *
00011  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    *
00012  * GNU General Public License for more details.                     *
00013  *                                                                  *
00014  * You should have received a copy of the GNU General Public License*
00015  * along with this program; if not, contact:                        *
00016  *                                                                  *
00017  * Free Software Foundation           Voice:  +1-617-542-5942       *
00018  * 51 Franklin Street, Fifth Floor    Fax:    +1-617-542-2652       *
00019  * Boston, MA  02110-1301,  USA       gnu@gnu.org                   *
00020  *                                                                  *
00021 \********************************************************************/
00040 #ifndef QUICKFILL_ACCOUNT_H
00041 #define QUICKFILL_ACCOUNT_H
00042 
00043 #include <gtk/gtk.h>
00044 
00045 #include "Account.h"
00046 #include "QuickFill.h"
00047 
00048 typedef gboolean (*AccountBoolCB) (Account *, gpointer);
00049 
00071 QuickFill * gnc_get_shared_account_name_quickfill (Account *root,
00072         const char * key,
00073         AccountBoolCB skip_cb,
00074         gpointer cb_data);
00075 GtkListStore *
00076 gnc_get_shared_account_name_list_store (Account *root,
00077                                         const char * key,
00078                                         AccountBoolCB cb, gpointer cb_data);
00079 
00080 #endif
00081 
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines