Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef QBANKING_CFGTABSETTINGS_H
00014 #define QBANKING_CFGTABSETTINGS_H
00015
00016
00017 #include <gwenhywfar/types.h>
00018 #include <aqbanking/banking.h>
00019 #include <aqbanking/account.h>
00020
00021 #include "qbcfgtab.h"
00022
00023
00024 class QBCfgTab;
00025
00026
00027 class QBANKING_API QBCfgTabSettings: public QBCfgTab {
00028 Q_OBJECT
00029 private:
00030
00031 public:
00032 QBCfgTabSettings(QBanking *qb,
00033 QWidget *parent=0,
00034 const char *name=0,
00035 WFlags f=0);
00036 virtual ~QBCfgTabSettings();
00037
00038 bool toGui();
00039 bool fromGui();
00040
00041 void addAccountsPage();
00042 void addUsersPage();
00043 void addBackendsPage();
00044
00045 signals:
00046 void signalUpdate();
00047
00048 public slots:
00049 void slotUpdate();
00050 };
00051
00052
00053 #endif