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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
|
/***************************************************************************
mymoneysecurity.h - description
-------------------
begin : Tue Jan 29 2002
copyright : (C) 2000-2002 by Michael Edwardes
email : mte@users.sourceforge.net
Javier Campos Morales <javi_c@users.sourceforge.net>
Felix Rodriguez <frodriguez@users.sourceforge.net>
John C <thetacoturtle@users.sourceforge.net>
Thomas Baumgart <ipwizard@users.sourceforge.net>
Kevin Tambascio <ktambascio@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 MYMONEYSECURITY_H
#define MYMONEYSECURITY_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
// ----------------------------------------------------------------------------
// QT Includes
#include <tqdatetime.h>
#include <tqmap.h>
// ----------------------------------------------------------------------------
// KDE Includes
// ----------------------------------------------------------------------------
// Project Includes
#include <kmymoney/export.h>
#include <kmymoney/mymoneymoney.h>
#include <kmymoney/mymoneyutils.h>
#include <kmymoney/mymoneyobject.h>
#include <kmymoney/mymoneykeyvaluecontainer.h>
/**
* Class that holds all the required information about a security that the user
* has entered information about. A security can be a stock, a mutual fund, a bond
* or a currency.
*
* @author Kevin Tambascio
* @author Thomas Baumgart
*/
class KMYMONEY_EXPORT MyMoneySecurity : public MyMoneyObject, public MyMoneyKeyValueContainer
{
public:
MyMoneySecurity();
MyMoneySecurity(const TQString& id, const MyMoneySecurity& equity);
MyMoneySecurity(const TQString& id, const TQString& name, const TQString& symbol = TQString(), const int partsPerUnit = 100, const int smallestCashFraction = 100, const int smallestAccountFraction = 0);
MyMoneySecurity(const TQDomElement& node);
virtual ~MyMoneySecurity();
bool operator < (const MyMoneySecurity&) const;
/**
* This operator tests for equality of two MyMoneySecurity objects
*/
bool operator == (const MyMoneySecurity&) const;
/**
* This operator tests for inequality of this MyMoneySecurity object
* and the one passed by @p r
*
* @param r the right side of the comparison
*/
bool operator != (const MyMoneySecurity& r) const { return !(*this == r); }
public:
typedef enum {
SECURITY_STOCK,
SECURITY_MUTUALFUND,
SECURITY_BOND,
SECURITY_CURRENCY,
SECURITY_NONE
} eSECURITYTYPE;
const TQString& name() const { return m_name; }
void setName(const String& str) { m_name = str; }
const TQString& tradingSymbol() const { return m_tradingSymbol; }
void setTradingSymbol(const String& str) { m_tradingSymbol = str; }
eSECURITYTYPE securityType() const { return m_securityType; }
void setSecurityType(const eSECURITYTYPE& s) { m_securityType = s; }
bool isCurrency(void) const { return m_securityType == SECURITY_CURRENCY; };
const TQString& tradingMarket() const { return m_tradingMarket; }
void setTradingMarket(const TQString& str) { m_tradingMarket = str; }
const TQString& tradingCurrency(void) const { return m_tradingCurrency; };
void setTradingCurrency(const TQString& str) { m_tradingCurrency = str; };
int smallestAccountFraction(void) const { return m_smallestAccountFraction; };
void setSmallestAccountFraction(const int sf) { m_smallestAccountFraction = sf; };
int partsPerUnit(void) const { return m_partsPerUnit; };
int smallestCashFraction(void) const { return m_smallestCashFraction; };
void setPartsPerUnit(const int ppu) { m_partsPerUnit = ppu; };
void setSmallestCashFraction(const int sf) { m_smallestCashFraction = sf; };
void writeXML(TQDomDocument& document, TQDomElement& parent) const;
/**
* This method checks if a reference to the given object exists. It returns,
* a @p true if the object is referencing the one requested by the
* parameter @p id. If it does not, this method returns @p false.
*
* @param id id of the object to be checked for references
* @retval true This object references object with id @p id.
* @retval false This object does not reference the object with id @p id.
*/
bool hasReferenceTo(const TQString& id) const;
/**
* This method is used to convert the internal representation of
* an security type into a human readable format
*
* @param securityType enumerated representation of the security type.
* For possible values, see MyMoneySecurity::eSECURITYTYPE
*
* @return TQString representing the human readable form
*/
static TQString securityTypeToString(const MyMoneySecurity::eSECURITYTYPE securityType);
protected:
TQString m_name;
TQString m_tradingSymbol;
TQString m_tradingMarket;
TQString m_tradingCurrency;
eSECURITYTYPE m_securityType;
int m_smallestAccountFraction;
int m_smallestCashFraction;
int m_partsPerUnit;
};
#endif
|