X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fhb-export.h;h=13d84c680a6bbd4fc3dff0de7274c8f1570f005c;hb=2ef3e601408ebaeeaf5f40d6967664b012a49979;hp=8eaf2112dbd027bfc84fe1d6ac78199fb79b5e26;hpb=27f6e3b112df235c8e9afc9911b1f6bce208a001;p=chaz%2Fhomebank diff --git a/src/hb-export.h b/src/hb-export.h index 8eaf211..13d84c6 100644 --- a/src/hb-export.h +++ b/src/hb-export.h @@ -1,5 +1,5 @@ /* HomeBank -- Free, easy, personal accounting for everyone. - * Copyright (C) 1995-2014 Maxime DOYEN + * Copyright (C) 1995-2017 Maxime DOYEN * * This file is part of HomeBank. * @@ -20,10 +20,28 @@ #ifndef __HB_EXPORT_H__ #define __HB_EXPORT_H__ +#include + + +#define PDF_NUMCOL 6 + 1 + +typedef struct _pdfprintcontext PdfPrintContext; + +struct _pdfprintcontext { + gdouble column_width[PDF_NUMCOL]; + gchar *column_txt[PDF_NUMCOL]; + + PangoFontDescription *desc; +}; + + + + void hb_export_qif_account_all(gchar *filename); void hb_export_qif_account_single(gchar *filename, Account *acc); +void hb_export_pdf_listview(GtkTreeView *treeview); #endif