aqbanking  5.7.8
Modules
Platform-indepentent Dialogs

Modules

 Generic File Import Dialog
 
 Select a Backend
 
 Bank Finder Dialog
 
 Online Banking Setup Dialog
 
 Generic New User Dialog
 

Detailed Description

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;
int rv;
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);
return 1;
}
GWEN_Dialog_free(dlg);