X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fhomebank;a=blobdiff_plain;f=src%2Fhb-export.h;fp=src%2Fhb-export.h;h=b623836b3f9ff1c062f4e3cdb4ebd9ff313bac60;hp=8eaf2112dbd027bfc84fe1d6ac78199fb79b5e26;hb=59c5e08a64798d4303ae7eb3a2713bc93d98fa7b;hpb=8988b3bef0760b4cab8144715cc3d8f55688861c diff --git a/src/hb-export.h b/src/hb-export.h index 8eaf211..b623836 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-2016 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