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
|
/***************************************************************************
begin : Tue Apr 2 20:43:44 2002 UTC
copyright : (C) 2003, 2004, 2005 by Carsten Niehaus
email : 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. *
* *
***************************************************************************/
#ifndef _DETAILINFODLG_H_
#define _DETAILINFODLG_H_
#include <kdialogbase.h>
#include <tqmap.h>
class DetailedGraphicalOverview;
class Element;
class OrbitsWidget;
class SpectrumViewImpl;
class TQMouseEvent;
class TQFrame;
class TQLabel;
class TQVBoxLayout;
class KActionCollection;
class KHTMLPart;
/**
* @short The dialog which shows all available information of an element
* @author Carsten Niehaus
*/
class DetailedInfoDlg : public KDialogBase
{
Q_OBJECT
TQ_OBJECT
public:
DetailedInfoDlg( Element *el , TQWidget *parent=0, const char *name=0);
void setElement(Element *el);
private:
enum DATATYPE
{
CHEMICAL = 0,
MISC,
ENERGY
};
Element *m_element;
int m_elementNumber;
KActionCollection* m_actionCollection;
SpectrumViewImpl *m_spectrumview;
TQString isotopeTable();
TQMap<TQString, KHTMLPart*> m_htmlpages;
TQLabel *piclabel;
TQWidgetStack* m_spectrumStack;
TQLabel* m_spectrumLabel;
DetailedGraphicalOverview *dTab;
OrbitsWidget *wOrbits;
/**
* Create the inital set of tabs. Used it *ONLY* once in the
* constructor.
*/
void createContent();
void reloadContent();
TQString getHtml(DATATYPE);
TQString m_baseHtml;
TQString m_picsdir;
/**
* Add a new HTML page to the dialog.
*
* @param title The title of the tab, appears above the htmlview
* @param icontext The name of the tab, appears belov or instead
* of the icon
* @param iconname The name of the icon
* @returns the pointer to the resulting KHTMLPart, needed for
* writing HTML code on it
*/
KHTMLPart* addHTMLTab( const TQString& title, const TQString& icontext, const TQString& iconname );
/**
* Change the HTML code in an HTML page.
*
* @param htmlpart the KHTMLPart to edit
* @param htmlcode the HTML code to display
*/
void fillHTMLTab( KHTMLPart* htmlpart, const TQString& htmlcode );
protected slots:
virtual void slotUser1();
virtual void slotUser2();
/**
* invoke the help of the correct chapter
*/
virtual void slotHelp();
protected:
virtual void wheelEvent ( TQWheelEvent * ev );
signals:
void elementChanged( int );
};
#endif
|