00001 /*************************************************************************** 00002 $RCSfile: gprogress.h,v $ 00003 ------------------- 00004 cvs : $Id: gprogress.h,v 1.1 2005/08/08 02:24:39 aquamaniac Exp $ 00005 begin : Mon Mar 01 2004 00006 copyright : (C) 2004 by Martin Preuss 00007 email : martin@libchipcard.de 00008 00009 *************************************************************************** 00010 * Please see toplevel file COPYING for license details * 00011 ***************************************************************************/ 00012 00013 #ifndef GBANKING_PROGRESS_H 00014 #define GBANKING_PROGRESS_H 00015 00016 00017 #include <gwenhywfar/types.h> 00018 #include <aqbanking/banking.h> 00019 00020 00021 00022 GtkWidget *GBanking_Progress_new(AB_BANKING *ab, GWEN_TYPE_UINT32 id); 00023 00024 int GBanking_Progress_Start(GtkWidget *w, 00025 const char *title, 00026 const char *text, 00027 GWEN_TYPE_UINT32 total); 00028 int GBanking_Progress_Advance(GtkWidget *w, GWEN_TYPE_UINT32 progress); 00029 int GBanking_Progress_Log(GtkWidget *w, 00030 AB_BANKING_LOGLEVEL level, 00031 const char *text); 00032 int GBanking_Progress_End(GtkWidget *w); 00033 00034 00035 GWEN_TYPE_UINT32 GBanking_Progress_GetId(GtkWidget *w); 00036 00037 00038 00039 00040 00041 00042 00043 00044 00045 00046 #endif 00047 00048 00049