mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@2103 57a11ea4-9604-0410-9ed3-97b8803252fd
78 lines
2.8 KiB
C
78 lines
2.8 KiB
C
#include <gnome.h>
|
|
|
|
|
|
void
|
|
gnc_ui_qif_import_select_loaded_file_cb
|
|
(GtkList *list,
|
|
GtkWidget *widget,
|
|
gpointer user_data);
|
|
|
|
void
|
|
gnc_ui_qif_import_select_file_cb (GtkButton *button,
|
|
gpointer user_data);
|
|
|
|
void
|
|
gnc_ui_qif_import_load_file_cb (GtkButton *button,
|
|
gpointer user_data);
|
|
|
|
void
|
|
gnc_ui_qif_import_account_line_select_cb
|
|
(GtkCList *clist,
|
|
gint row,
|
|
gint column,
|
|
GdkEvent *event,
|
|
gpointer user_data);
|
|
|
|
void
|
|
gnc_ui_qif_import_category_line_select_cb
|
|
(GtkCList *clist,
|
|
gint row,
|
|
gint column,
|
|
GdkEvent *event,
|
|
gpointer user_data);
|
|
|
|
void
|
|
gnc_ui_qif_import_ok_cb (GtkButton *button,
|
|
gpointer user_data);
|
|
|
|
void
|
|
gnc_ui_qif_import_cancel_cb (GtkButton *button,
|
|
gpointer user_data);
|
|
|
|
void
|
|
gnc_ui_qif_import_help_cb (GtkButton *button,
|
|
gpointer user_data);
|
|
|
|
void
|
|
gnc_ui_account_picker_select_cb (GtkTree *tree,
|
|
GtkWidget *widget,
|
|
gpointer user_data);
|
|
|
|
void
|
|
gnc_ui_account_picker_ok_cb (GtkButton *button,
|
|
gpointer user_data);
|
|
|
|
void
|
|
gnc_ui_account_picker_cancel_cb (GtkButton *button,
|
|
gpointer user_data);
|
|
|
|
void
|
|
gnc_ui_print_preview_OK_cb (GtkButton *button,
|
|
gpointer user_data);
|
|
|
|
void
|
|
gnc_ui_print_dialog_select_printer_cb (GtkButton *button,
|
|
gpointer user_data);
|
|
|
|
void
|
|
gnc_ui_print_dialog_preview_cb (GtkButton *button,
|
|
gpointer user_data);
|
|
|
|
void
|
|
gnc_ui_print_dialog_ok_cb (GtkButton *button,
|
|
gpointer user_data);
|
|
|
|
void
|
|
gnc_ui_print_dialog_cancel_cb (GtkButton *button,
|
|
gpointer user_data);
|