blob: 172824ff7e86a33cf441da631787aae7c1b83a23 (
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
|
/***************************************************************************
selectedtransaction.h - description
-------------------
begin : Tue Jun 13 2006
copyright : (C) 2000-2006 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 SELECTEDTRANSACTION_H
#define SELECTEDTRANSACTION_H
// ----------------------------------------------------------------------------
// QT Includes
// ----------------------------------------------------------------------------
// KDE Includes
// ----------------------------------------------------------------------------
// Project Includes
#include <kmymoney/mymoneytransaction.h>
#include <kmymoney/mymoneyscheduled.h>
#include <kmymoney/mymoneysplit.h>
namespace KMyMoneyRegister {
class SelectedTransaction
{
public:
SelectedTransaction() {}
SelectedTransaction(const MyMoneyTransaction& t, const MyMoneySplit& s, const TQString& scheduleId = TQString()) :
m_transaction(t), m_split(s), m_scheduleId(scheduleId) {}
MyMoneyTransaction& transaction(void) { return m_transaction; }
const MyMoneyTransaction& transaction(void) const { return m_transaction; }
MyMoneySplit& split(void) { return m_split; }
const MyMoneySplit& split(void) const { return m_split; }
bool isScheduled(void) const { return !m_scheduleId.isEmpty(); }
const TQString& scheduleId(void) const { return m_scheduleId; }
/**
* checks the transaction for specific reasons which would
* speak against editing/modifying it.
* @retval 0 no sweat, user can modify
* @retval 1 at least one split has been reconciled already
* @retval 2 some transactions cannot be changed anymore - parts of them are frozen
* @retval 3 some transactions cannot be changed anymore - they touch closed accounts
*/
int warnLevel() const;
private:
MyMoneyTransaction m_transaction;
MyMoneySplit m_split;
TQString m_scheduleId;
};
class Register;
class SelectedTransactions:public TQValueList<SelectedTransaction>
{
public:
SelectedTransactions() {}
SelectedTransactions(const Register* r);
/**
* @return the highest warnLevel of all transactions in the list
*/
int warnLevel() const;
bool canModify() const;
bool canDuplicate() const;
};
} // namespace
#endif
|