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.cpp

88 lines
2.5 KiB

/***************************************************************************
knewbudgetdlg.cpp
-------------------
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. *
* *
***************************************************************************/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
// ----------------------------------------------------------------------------
// TQt Includes
#include <tqcheckbox.h>
// ----------------------------------------------------------------------------
// TDE Includes
#include <kpushbutton.h>
#include <tdelistview.h>
#include <kiconloader.h>
#include <kguiitem.h>
#include <tdelocale.h>
#include <tdemessagebox.h>
// ----------------------------------------------------------------------------
// Project Includes
#include "knewbudgetdlg.h"
const int KNewBudgetDlg::m_icFutureYears = 5;
const int KNewBudgetDlg::m_icPastYears = 2;
KNewBudgetDlg::KNewBudgetDlg(TQWidget* parent, const char *name) :
KNewBudgetDlgDecl(parent, name)
{
TQStringList slYear;
TQDate dToday = TQDate::currentDate();
int iYear = dToday.year();
for (int i=0; i<=m_icFutureYears; i++)
m_cbYear->insertItem( TQString::number(iYear++) );
iYear = dToday.year();
for (int i=0; i<=m_icFutureYears; i++)
m_cbYear->insertItem( TQString::number(--iYear) );
}
KNewBudgetDlg::~KNewBudgetDlg()
{
}
void KNewBudgetDlg::m_pbCancel_clicked()
{
reject();
}
void KNewBudgetDlg::m_pbOk_clicked()
{
// force focus change to update all data
m_pbOk->setFocus();
if (m_leBudgetName->displayText().isEmpty())
{
KMessageBox::information(this, i18n("Please specify a budget name"));
m_leBudgetName->setFocus();
return;
}
m_year = m_cbYear->currentText();
m_name = m_leBudgetName->displayText();
accept();
}
#include "knewbudgetdlg.moc"