GnuCash
5.6-150-g038405b370+
|
CSV Export Assistant. More...
#include <config.h>
#include <gtk/gtk.h>
#include <glib/gi18n.h>
#include "gnc-ui.h"
#include "gnc-uri-utils.h"
#include "gnc-component-manager.h"
#include "gnc-date-edit.h"
#include "gnc-prefs.h"
#include "gnc-tree-view-account.h"
#include "dialog-utils.h"
#include "Query.h"
#include "Transaction.h"
#include "assistant-csv-export.h"
#include "csv-tree-export.h"
#include "csv-transactions-export.h"
Go to the source code of this file.
Macros | |
#define | GNC_PREFS_GROUP "dialogs.export.csv" |
#define | GNC_PREF_PANED_POS "paned-position" |
#define | ASSISTANT_CSV_EXPORT_CM_CLASS "assistant-csv-export" |
Functions | |
void | csv_export_assistant_prepare (GtkAssistant *assistant, GtkWidget *page, gpointer user_data) |
void | csv_export_assistant_finish (GtkAssistant *gtkassistant, gpointer user_data) |
void | csv_export_assistant_cancel (GtkAssistant *gtkassistant, gpointer user_data) |
void | csv_export_assistant_close (GtkAssistant *gtkassistant, gpointer user_data) |
void | csv_export_assistant_start_page_prepare (GtkAssistant *assistant, gpointer user_data) |
void | csv_export_assistant_account_page_prepare (GtkAssistant *gtkassistant, gpointer user_data) |
void | csv_export_assistant_file_page_prepare (GtkAssistant *assistant, gpointer user_data) |
void | csv_export_assistant_finish_page_prepare (GtkAssistant *assistant, gpointer user_data) |
void | csv_export_assistant_summary_page_prepare (GtkAssistant *assistant, gpointer user_data) |
void | csv_export_quote_cb (GtkToggleButton *button, gpointer user_data) |
void | csv_export_simple_cb (GtkToggleButton *button, gpointer user_data) |
void | csv_export_sep_cb (GtkWidget *radio, gpointer user_data) |
void | csv_export_custom_entry_cb (GtkWidget *widget, gpointer user_data) |
void | csv_export_show_range_cb (GtkRadioButton *button, gpointer user_data) |
void | csv_export_start_date_cb (GtkWidget *radio, gpointer user_data) |
void | csv_export_end_date_cb (GtkWidget *radio, gpointer user_data) |
void | csv_export_file_chooser_file_activated_cb (GtkFileChooser *chooser, CsvExportInfo *info) |
void | csv_export_file_chooser_selection_changed_cb (GtkFileChooser *chooser, CsvExportInfo *info) |
void | gnc_file_csv_export (CsvExportType export_type) |
The gnc_file_csv_export() will let the user export the account tree or transactions to a delimited file. | |
void | gnc_file_csv_export_register (CsvExportType export_type, Query *q, Account *acc) |
The gnc_file_csv_export_register() will let the user export the active register transactions to a delimited file. | |
CSV Export Assistant.
Definition in file assistant-csv-export.c.