|
|
|
@ -30,7 +30,7 @@ class TQFrame;
|
|
|
|
|
class TQLabel;
|
|
|
|
|
class TQVBoxLayout;
|
|
|
|
|
class KActionCollection;
|
|
|
|
|
class KHTMLPart;
|
|
|
|
|
class TDEHTMLPart;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @short The dialog which shows all available information of an element
|
|
|
|
@ -63,7 +63,7 @@ class DetailedInfoDlg : public KDialogBase
|
|
|
|
|
|
|
|
|
|
TQString isotopeTable();
|
|
|
|
|
|
|
|
|
|
TQMap<TQString, KHTMLPart*> m_htmlpages;
|
|
|
|
|
TQMap<TQString, TDEHTMLPart*> m_htmlpages;
|
|
|
|
|
|
|
|
|
|
TQLabel *piclabel;
|
|
|
|
|
|
|
|
|
@ -93,17 +93,17 @@ class DetailedInfoDlg : public KDialogBase
|
|
|
|
|
* @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
|
|
|
|
|
* @returns the pointer to the resulting TDEHTMLPart, needed for
|
|
|
|
|
* writing HTML code on it
|
|
|
|
|
*/
|
|
|
|
|
KHTMLPart* addHTMLTab( const TQString& title, const TQString& icontext, const TQString& iconname );
|
|
|
|
|
TDEHTMLPart* 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 htmlpart the TDEHTMLPart to edit
|
|
|
|
|
* @param htmlcode the HTML code to display
|
|
|
|
|
*/
|
|
|
|
|
void fillHTMLTab( KHTMLPart* htmlpart, const TQString& htmlcode );
|
|
|
|
|
void fillHTMLTab( TDEHTMLPart* htmlpart, const TQString& htmlcode );
|
|
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
|
virtual void slotUser1();
|
|
|
|
|