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/keditscheduledlg.h

105 lines
3.1 KiB

/***************************************************************************
keditscheduledlg.h - description
-------------------
begin : Mon Sep 3 2007
copyright : (C) 2007 by Thomas Baumgart
email : Thomas Baumgart <ipwizard@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 KEDITSCHEDULEDLG_H
#define KEDITSCHEDULEDLG_H
// ----------------------------------------------------------------------------
// TQt Includes
// ----------------------------------------------------------------------------
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes
#include <kmymoney/mymoneyfile.h>
#include <kmymoney/mymoneyscheduled.h>
#include "../dialogs/keditscheduledlgdecl.h"
class TransactionEditor;
/**
* @author Thomas Baumgart
*/
class KEditScheduleDlg : public KEditScheduleDlgDecl
{
TQ_OBJECT
public:
/**
* Standard TQWidget constructor.
**/
KEditScheduleDlg(const MyMoneySchedule& schedule, TQWidget *parent=0, const char *name=0);
/**
* Standard destructor.
**/
~KEditScheduleDlg();
TransactionEditor* startEdit(void);
/**
* Returns the edited schedule.
*
* @return MyMoneySchedule The schedule details.
**/
const MyMoneySchedule& schedule(void) const;
protected:
MyMoneyTransaction transaction(void) const;
/**
* This method adjusts @a _date according to the rules specified by
* the schedule's weekend option.
*/
TQDate adjustDate(const TQDate& _date) const;
/// Overridden for internal reasons. No API changes.
bool focusNextPrevChild(bool next);
/// Overridden for internal reasons. No API changes.
void resizeEvent(TQResizeEvent* ev);
private slots:
void slotSetupSize(void);
void slotRemainingChanged(int);
void slotEndDateChanged(const TQDate& date);
void slotPostDateChanged(const TQDate& date);
void slotSetPaymentMethod(int);
void slotFrequencyChanged(int item);
void slotShowHelp(void);
void slotOccurenceMultiplierChanged(int mult);
/// Overridden for internal reasons. No API changes.
void accept(void);
private:
/**
* Helper method to recalculate and update Transactions Remaining
* when other values are changed
*/
void updateTransactionsRemaining(void);
/// \internal d-pointer class.
class Private;
/// \internal d-pointer instance.
Private* const d;
};
#endif