You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.9 KiB
59 lines
1.9 KiB
/***************************************************************************
|
|
knewbankdlg.h
|
|
-------------------
|
|
copyright : (C) 2000 by Michael Edwardes
|
|
email : mte@users.sourceforge.net
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef KNEWBANKDLG_H
|
|
#define KNEWBANKDLG_H
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// QT Includes
|
|
|
|
#include <tqdialog.h>
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// KDE Includes
|
|
|
|
#include <tdelocale.h>
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Project Includes
|
|
|
|
#include "../mymoney/mymoneyinstitution.h"
|
|
#include "../mymoney/mymoneykeyvaluecontainer.h"
|
|
|
|
#include "../dialogs/knewbankdlgdecl.h"
|
|
|
|
/// This dialog lets the user create or edit an institution
|
|
class KNewBankDlg : public KNewBankDlgDecl
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
KNewBankDlg(MyMoneyInstitution& institution, TQWidget *parent = 0, const char *name = 0);
|
|
~KNewBankDlg();
|
|
const MyMoneyInstitution& institution(void);
|
|
|
|
protected slots:
|
|
void okClicked();
|
|
void institutionNameChanged( const TQString &);
|
|
|
|
private:
|
|
MyMoneyInstitution m_institution;
|
|
|
|
};
|
|
|
|
#endif
|