GnuCash 2.4.99
assistant-qif-import.h
00001 /********************************************************************\
00002  * assistant-qif-import.h -- window for import of QIF data          *
00003  *                       (GnuCash)                                  *
00004  * Copyright (C) 2000 Bill Gribble <grib@billgribble.com>           *
00005  * Copyright (c) 2011 Robert Fewell                                 *
00006  *                                                                  *
00007  * This program is free software; you can redistribute it and/or    *
00008  * modify it under the terms of the GNU General Public License as   *
00009  * published by the Free Software Foundation; either version 2 of   *
00010  * the License, or (at your option) any later version.              *
00011  *                                                                  *
00012  * This program is distributed in the hope that it will be useful,  *
00013  * but WITHOUT ANY WARRANTY; without even the implied warranty of   *
00014  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    *
00015  * GNU General Public License for more details.                     *
00016  *                                                                  *
00017  * You should have received a copy of the GNU General Public License*
00018  * along with this program; if not, contact:                        *
00019  *                                                                  *
00020  * Free Software Foundation           Voice:  +1-617-542-5942       *
00021  * 51 Franklin Street, Fifth Floor    Fax:    +1-617-542-2652       *
00022  * Boston, MA  02110-1301,  USA       gnu@gnu.org                   *
00023 \********************************************************************/
00024 
00025 #ifndef ASSISTANT_QIF_IMPORT_H
00026 #define ASSISTANT_QIF_IMPORT_H
00027 
00028 #include <libguile.h>
00029 #include <gtk/gtk.h>
00030 
00031 /* QIF Import Windows ***********************************************/
00032 
00033 typedef struct _qifimportwindow QIFImportWindow;
00034 
00035 SCM               gnc_ui_qif_import_assistant_get_mappings(QIFImportWindow * w);
00036 
00037 /* The gnc_file_qif_import() routine will pop up a standard file
00038  *     selection dialogue asking the user to pick a QIF file. If one
00039  *     is selected then the QIF file is opened and read. It's contents
00040  *     are merged into the existing session (if any). The current
00041  *     session continues to remain open for editing. */
00042 void              gnc_file_qif_import (void);
00043 void              gnc_ui_qif_import_create_plugin(void);
00044 
00045 #endif
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines