blob: e95484aab584e8ded5c7cf962be1716cecb43ecc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
/***************************************************************************
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
// ----------------------------------------------------------------------------
// 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 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
|