summaryrefslogtreecommitdiffstats
path: root/kalzium/src/kalziumdataobject.h
blob: e8508276bbc1e068796472fa893bc7e1e522f3ab (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
#ifndef KALZIUMDATAOBJECT_H
#define KALZIUMDATAOBJECT_H
/***************************************************************************
 *   Copyright (C) 2005 by Carsten Niehaus                                 *
 *   cniehaus@kde.org                                                      *
 *                                                                         *
 *   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.                                   *
 *                                                                         *
 *   This program is distributed in the hope that it will be useful,       *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 *   GNU General Public License for more details.                          *
 *                                                                         *
 *   You should have received a copy of the GNU General Public License     *
 *   along with this program; if not, write to the                         *
 *   Free Software Foundation, Inc.,                                       *
 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.          *
 ***************************************************************************/

#include "element.h"

/**
 * @short This class contains all Element objects
 *
 * This singleton class collects all the information about the elements of the
 * Periodic Table as list of Element (TQValueList<Element*>).
 * Use:
 * @code
 * KalziumDataObject::instance()->ElementList;
 * @endcode
 * to get the whole list of Element, while a
 * @code
 * KalziumDataObject::instance()->element( num );
 * @endcode
 * will return you the pointer to the num'th element of the Periodic Table.
 *
 * @author Carsten Niehaus
 */
class KalziumDataObject
{
	public:
		/**
		 * @return the instance of this class
		 */
		static KalziumDataObject* instance();

		/**
		 * The list of elements in a TQValueList<Element*>
		 */
		EList ElementList;
		
		CList CoordinateList;

		/**
		 * @return the Element with the number @p number
		 * @param number the number of the Element which will be returned
		 */
		Element* element( int number );

		/**
		 * @return the number of elements we have
		 */
		int numberOfElements() const { return m_numOfElements; }

	private:
		KalziumDataObject();
		~KalziumDataObject();

		EList readData( TQDomDocument &dataDocument );

		/**
		 * Caching the number of elements
		 */
		int m_numOfElements;
};
#endif // KALZIUMDATAOBJECT_H