summaryrefslogtreecommitdiffstats
path: root/kmymoney2/mymoney/mymoneycategory.h
blob: 3f4babc282a66730745200197e23a4fcbe829c98 (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
/***************************************************************************
                          mymoneycategory.h
                             -------------------
    copyright            : (C) 2000 by Michael Edwardes
    email                : mte@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 MYMONEYCATEGORY_H
#define MYMONEYCATEGORY_H

// ----------------------------------------------------------------------------
// QT Includes

#include <qstring.h>
#include <qstringlist.h>

/**
  * @deprecated This class represents an Income or Expense category. Please don't
  *             use it anymore, as it will be removed sooner or later.
  */
class MyMoneyCategory {
  bool m_income; // if false, m_income == expense
  QString m_name;
  QStringList m_minorCategories;

  friend QDataStream &operator<<(QDataStream &, MyMoneyCategory &);
  friend QDataStream &operator>>(QDataStream &, MyMoneyCategory &);

public:
  MyMoneyCategory();
	MyMoneyCategory(const bool income, const QString name);
	MyMoneyCategory(const bool income, const QString name, QStringList minors);
	~MyMoneyCategory();
	
	// Simple get operations
	QString name(void) { return m_name; }
	QStringList& minorCategories(void) { return m_minorCategories; }
	
	// Simple set operations
	bool isIncome(void) { return m_income; }
	void setIncome(const bool val) { m_income = val; }
	void setName(const QString val) { m_name = val; }
	
  bool setMinorCategories(QStringList values);
	bool addMinorCategory(const QString val);
	bool removeMinorCategory(const QString val);
	bool renameMinorCategory(const QString oldVal, const QString newVal);
	bool addMinorCategory(QStringList values);
	bool removeAllMinors(void);
	QString firstMinor(void);

	void clear(void);
	
  // Copy constructors
  MyMoneyCategory(const MyMoneyCategory&);
  MyMoneyCategory& operator = (const MyMoneyCategory&);
};

#endif