GnuCash c935c2f+
Loading...
Searching...
No Matches
Data Structures | Enumerations | Functions
assistant-csv-export.h File Reference

CSV Export Assistant. More...

#include "Account.h"
#include "Query.h"
#include <gtk/gtk.h>

Go to the source code of this file.

Data Structures

struct  CsvExportDate
 
struct  CsvExportAcc
 
struct  CsvExportInfo
 

Enumerations

enum  CsvExportType { XML_EXPORT_TREE , XML_EXPORT_TRANS , XML_EXPORT_REGISTER }
 

Functions

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 *query, Account *acc)
 The gnc_file_csv_export_register() will let the user export the active register transactions to a delimited file.
 

Detailed Description

CSV Export Assistant.

Author
Copyright (c) 2012 Robert Fewell

Definition in file assistant-csv-export.h.

Enumeration Type Documentation

◆ CsvExportType

enum CsvExportType

Definition at line 35 of file assistant-csv-export.h.

36{
37 XML_EXPORT_TREE,
38 XML_EXPORT_TRANS,
39 XML_EXPORT_REGISTER
40} CsvExportType;

Function Documentation

◆ gnc_file_csv_export()

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.

Definition at line 1032 of file assistant-csv-export.c.

1033{
1034 gnc_file_csv_export_internal (export_type, NULL, NULL);
1035}

◆ gnc_file_csv_export_register()

void gnc_file_csv_export_register ( CsvExportType  export_type,
Query query,
Account acc 
)

The gnc_file_csv_export_register() will let the user export the active register transactions to a delimited file.

Definition at line 1047 of file assistant-csv-export.c.

1048{
1049 gnc_file_csv_export_internal (export_type, q, acc);
1050}