00001 /*************************************************************************** 00002 $RCSfile: settings.h,v $ 00003 ------------------- 00004 cvs : $Id: settings.h,v 1.2 2005/08/08 15:24:03 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 AQBANKING_KDE_SETTINGS_H 00014 #define AQBANKING_KDE_SETTINGS_H 00015 00016 00017 00018 #include "settings.ui.h" 00019 #include "kbaccountlist.h" 00020 #include "kbplugindescrlist.h" 00021 00022 #include "kbanking.h" 00023 00024 00025 00026 class KBankingSettings: public KBankingSettingsUi { 00027 Q_OBJECT 00028 private: 00029 KBanking *_banking; 00030 KBAccountListView *_accListView; 00031 KBPluginDescrListView *_providerListView; 00032 00033 void _accountRescan(); 00034 void _backendRescan(); 00035 00036 public: 00037 KBankingSettings(KBanking *ab, 00038 QWidget* parent = 0, 00039 const char* name = 0, WFlags fl = 0); 00040 ~KBankingSettings(); 00041 00042 int init(); 00043 int fini(); 00044 00045 public slots: 00046 void slotAccountMap(); 00047 void slotBackendEnable(); 00048 void slotBackendDisable(); 00049 void slotBackendSetup(); 00050 }; 00051 00052 00053 00054 00055 00056 00057 00058 00059 00060 00061 #endif /* AQBANKING_KDE_SETTINGS_H */