diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-04 22:38:03 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-04 22:38:03 +0000 |
commit | dadc34655c3ab961b0b0b94a10eaaba710f0b5e8 (patch) | |
tree | 99e72842fe687baea16376a147619b6048d7e441 /kmymoney2/dialogs/keditscheduledlg.h | |
download | kmymoney-dadc34655c3ab961b0b0b94a10eaaba710f0b5e8.tar.gz kmymoney-dadc34655c3ab961b0b0b94a10eaaba710f0b5e8.zip |
Added kmymoney
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kmymoney@1239792 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmymoney2/dialogs/keditscheduledlg.h')
-rw-r--r-- | kmymoney2/dialogs/keditscheduledlg.h | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/kmymoney2/dialogs/keditscheduledlg.h b/kmymoney2/dialogs/keditscheduledlg.h new file mode 100644 index 0000000..94c3101 --- /dev/null +++ b/kmymoney2/dialogs/keditscheduledlg.h @@ -0,0 +1,103 @@ +/*************************************************************************** + keditscheduledlg.h - description + ------------------- + begin : Mon Sep 3 2007 + copyright : (C) 2007 by Thomas Baumgart + email : Thomas Baumgart <[email protected]> + ***************************************************************************/ + +/*************************************************************************** + * * + * 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 + +// ---------------------------------------------------------------------------- +// QT Includes + +// ---------------------------------------------------------------------------- +// KDE Includes + +// ---------------------------------------------------------------------------- +// Project Includes + +#include <kmymoney/mymoneyfile.h> +#include <kmymoney/mymoneyscheduled.h> +#include "../dialogs/keditscheduledlgdecl.h" + +class TransactionEditor; + +/** + * @author Thomas Baumgart + */ + +class KEditScheduleDlg : public KEditScheduleDlgDecl +{ + Q_OBJECT +public: + /** + * Standard QWidget constructor. + **/ + KEditScheduleDlg(const MyMoneySchedule& schedule, QWidget *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. + */ + QDate adjustDate(const QDate& _date) const; + + /// Overridden for internal reasons. No API changes. + bool focusNextPrevChild(bool next); + + /// Overridden for internal reasons. No API changes. + void resizeEvent(QResizeEvent* ev); + +private slots: + void slotSetupSize(void); + void slotRemainingChanged(int); + void slotEndDateChanged(const QDate& date); + void slotPostDateChanged(const QDate& 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 |