Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef QBANKING_MAPACCOUNT_H
00014 #define QBANKING_MAPACCOUNT_H
00015
00016
00017 #include "qbmapaccount.ui.h"
00018 #include "qbaccountlist.h"
00019
00020
00021 class QBanking;
00022
00023
00024 class QBANKING_API QBMapAccount: public QBMapAccountUi {
00025 Q_OBJECT
00026 public:
00027 QBMapAccount(QBanking *kb,
00028 const char *bankCode,
00029 const char *accountId,
00030 QWidget* parent=0,
00031 const char* name=0,
00032 bool modal=FALSE,
00033 WFlags fl=0);
00034 ~QBMapAccount();
00035
00036 AB_ACCOUNT *getAccount();
00037
00038 void accept();
00039
00040 protected slots:
00041 void slotSelectionChanged();
00042 void slotHelpClicked();
00043
00044 private:
00045 QBanking *_banking;
00046 AB_ACCOUNT *_account;
00047 QBAccountListView *_accountList;
00048 };
00049
00050
00051
00052
00053
00054 #endif
00055