|
aqbanking
5.0.22
|
Modules | |
| Generic File Import Dialog | |
| Select a Backend | |
| Bank Finder Dialog | |
| Online Banking Setup Dialog | |
| Generic New User Dialog | |
Dialogs are only available if the application created and set a GWEN_GUI object with support for the GWEN_DIALOG framework.
Currently these are the following implementations:
The following is a demonstration of the use of AqBankings new dialogs (using the generic file importer):
GWEN_DIALOG *dlg; AB_IMEXPORTER_CONTEXT *ctx; int rv; ctx=AB_ImExporterContext_new(); dlg=AB_ImporterDialog_new(banking, ctx, I18N("Your file has been successfully imported.\n" "Click the finish button below to import the " "data into the application\n")); if (dlg==NULL) { fprintf(stderr, "Could not create dialog\n"); return 1; } rv=GWEN_Gui_ExecDialog(dlg, 0); if (rv==0) { GWEN_Dialog_free(dlg); AB_ImExporterContext_free(ctx); return 1; } GWEN_Dialog_free(dlg);
1.7.6.1