2001-03-03 02:14:18 +00:00
|
|
|
/********************************************************************\
|
2001-06-17 06:35:54 +00:00
|
|
|
* dialog-new-user.h -- new user dialog for GnuCash *
|
|
|
|
|
* Copyright (C) 2001 Dave Peticolas <dave@krondo.com> *
|
2001-03-03 02:14:18 +00:00
|
|
|
* *
|
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
|
* modify it under the terms of the GNU General Public License as *
|
|
|
|
|
* published by the Free Software Foundation; either version 2 of *
|
|
|
|
|
* the License, or (at your option) any later version. *
|
|
|
|
|
* *
|
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
|
* *
|
|
|
|
|
* You should have received a copy of the GNU General Public License*
|
|
|
|
|
* along with this program; if not, contact: *
|
|
|
|
|
* *
|
|
|
|
|
* Free Software Foundation Voice: +1-617-542-5942 *
|
2005-11-17 05:35:02 +00:00
|
|
|
* 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
|
|
|
|
|
* Boston, MA 02110-1301, USA gnu@gnu.org *
|
2001-03-03 02:14:18 +00:00
|
|
|
\********************************************************************/
|
2001-01-11 22:32:22 +00:00
|
|
|
|
2001-06-17 06:35:54 +00:00
|
|
|
#ifndef DIALOG_NEW_USER_H
|
|
|
|
|
#define DIALOG_NEW_USER_H
|
2001-01-11 22:32:22 +00:00
|
|
|
|
2013-10-07 14:07:50 +00:00
|
|
|
#define GNC_PREFS_GROUP_NEW_USER "dialogs.new_user"
|
|
|
|
|
#define GNC_PREF_FIRST_STARTUP "first_startup"
|
|
|
|
|
|
2001-06-17 06:35:54 +00:00
|
|
|
void gnc_ui_new_user_dialog (void);
|
|
|
|
|
void gnc_set_first_startup (gboolean first_startup);
|
2001-05-12 11:50:36 +00:00
|
|
|
|
2011-12-02 20:55:43 +00:00
|
|
|
/* Register the qif-import assistant */
|
|
|
|
|
void gnc_new_user_dialog_register_qif_assistant (void (*cb_fcn)(void));
|
2002-11-10 04:42:09 +00:00
|
|
|
|
2001-05-12 11:50:36 +00:00
|
|
|
/* private */
|
2001-05-21 21:27:38 +00:00
|
|
|
void gncp_new_user_finish (void);
|
2001-05-10 16:15:08 +00:00
|
|
|
|
2001-06-17 06:35:54 +00:00
|
|
|
#endif
|