You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
124 lines
3.1 KiB
124 lines
3.1 KiB
/***************************************************************************
|
|
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 TDEActionCollection;
|
|
class TDEHTMLPart;
|
|
|
|
/**
|
|
* @short The dialog which shows all available information of an element
|
|
* @author Carsten Niehaus
|
|
*/
|
|
class DetailedInfoDlg : public KDialogBase
|
|
{
|
|
Q_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;
|
|
|
|
TDEActionCollection* m_actionCollection;
|
|
|
|
SpectrumViewImpl *m_spectrumview;
|
|
|
|
TQString isotopeTable();
|
|
|
|
TQMap<TQString, TDEHTMLPart*> 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 TDEHTMLPart, needed for
|
|
* writing HTML code on it
|
|
*/
|
|
TDEHTMLPart* addHTMLTab( const TQString& title, const TQString& icontext, const TQString& iconname );
|
|
/**
|
|
* Change the HTML code in an HTML page.
|
|
*
|
|
* @param htmlpart the TDEHTMLPart to edit
|
|
* @param htmlcode the HTML code to display
|
|
*/
|
|
void fillHTMLTab( TDEHTMLPart* 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
|