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.
kmymoney/kmymoney2/dialogs/knewbudgetdlg.h

61 lines
2.0 KiB

/***************************************************************************
knewbudgetdlg.h
-------------------
begin : Wed Jan 18 2006
copyright : (C) 2000-2004 by Darren Gould
email : darren_gould@gmx.de
***************************************************************************/
/***************************************************************************
* *
* 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 KNEWBUDGETDLG_H
#define KNEWBUDGETDLG_H
// ----------------------------------------------------------------------------
// TQt Includes
class TQListViewItem;
// ----------------------------------------------------------------------------
// TDE Includes
#include <tqdatetime.h>
#include <tqcombobox.h>
#include <tqlineedit.h>
// ----------------------------------------------------------------------------
// Project Includes
#include "../dialogs/knewbudgetdlgdecl.h"
class KNewBudgetDlg : public KNewBudgetDlgDecl
{
TQ_OBJECT
public:
KNewBudgetDlg(TQWidget* parent, const char *name);
~KNewBudgetDlg();
TQString& getYear() {return m_year;};
TQString& getName() {return m_name;};
public slots:
virtual void m_pbCancel_clicked();
virtual void m_pbOk_clicked();
private:
// the combobox should look m_icNextYears into the future
static const int m_icFutureYears;
static const int m_icPastYears;
TQString m_year;
TQString m_name;
};
#endif // KNEWBUDGETDLG_H