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 #include <q4banking/qbanking.h>
00017 #include <q4banking/qbaccountlist.h>
00018
00019 #include "qbmapaccount.ui.h"
00020
00021
00022 class QBanking;
00023
00024
00025 class Q4BANKING_API QBMapAccount: public QDialog, public Ui_QBMapAccountUi {
00026 Q_OBJECT
00027 public:
00028 QBMapAccount(QBanking *kb,
00029 const char *bankCode,
00030 const char *accountId,
00031 QWidget* parent=0,
00032 const char* name=0,
00033 bool modal=FALSE,
00034 Qt::WFlags fl=0);
00035 ~QBMapAccount();
00036
00037 AB_ACCOUNT *getAccount();
00038
00039 void accept();
00040
00041 protected slots:
00042 void slotSelectionChanged();
00043 void slotHelpClicked();
00044
00045 private:
00046 QBanking *_banking;
00047 AB_ACCOUNT *_account;
00048 QBAccountListView *_accountList;
00049 };
00050
00051
00052
00053
00054
00055 #endif
00056