summaryrefslogtreecommitdiffstats
path: root/kalzium/src/detailinfodlg.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:39:55 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:39:55 +0000
commit0a6e0958c03e41c87b15557b6f407874f20c2f8d (patch)
tree2cdd58c4013b1be09cfcbb4ddae2b05712b9aeee /kalzium/src/detailinfodlg.h
parent83f9dfafc157ff7823804b3ff457b43d021a5b4b (diff)
downloadtdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.tar.gz
tdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1157642 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kalzium/src/detailinfodlg.h')
-rw-r--r--kalzium/src/detailinfodlg.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/kalzium/src/detailinfodlg.h b/kalzium/src/detailinfodlg.h
index d5dacc29..f633459d 100644
--- a/kalzium/src/detailinfodlg.h
+++ b/kalzium/src/detailinfodlg.h
@@ -18,7 +18,7 @@
#include <kdialogbase.h>
-#include <qmap.h>
+#include <tqmap.h>
class DetailedGraphicalOverview;
class Element;
@@ -41,7 +41,7 @@ class DetailedInfoDlg : public KDialogBase
Q_OBJECT
public:
- DetailedInfoDlg( Element *el , QWidget *parent=0, const char *name=0);
+ DetailedInfoDlg( Element *el , TQWidget *parent=0, const char *name=0);
void setElement(Element *el);
@@ -60,14 +60,14 @@ class DetailedInfoDlg : public KDialogBase
SpectrumViewImpl *m_spectrumview;
- QString isotopeTable();
+ TQString isotopeTable();
- QMap<QString, KHTMLPart*> m_htmlpages;
+ TQMap<TQString, KHTMLPart*> m_htmlpages;
- QLabel *piclabel;
+ TQLabel *piclabel;
- QWidgetStack* m_spectrumStack;
- QLabel* m_spectrumLabel;
+ TQWidgetStack* m_spectrumStack;
+ TQLabel* m_spectrumLabel;
DetailedGraphicalOverview *dTab;
@@ -80,10 +80,10 @@ class DetailedInfoDlg : public KDialogBase
void createContent();
void reloadContent();
- QString getHtml(DATATYPE);
+ TQString getHtml(DATATYPE);
- QString m_baseHtml;
- QString m_picsdir;
+ TQString m_baseHtml;
+ TQString m_picsdir;
/**
* Add a new HTML page to the dialog.
@@ -95,14 +95,14 @@ class DetailedInfoDlg : public KDialogBase
* @returns the pointer to the resulting KHTMLPart, needed for
* writing HTML code on it
*/
- KHTMLPart* addHTMLTab( const QString& title, const QString& icontext, const QString& iconname );
+ 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 QString& htmlcode );
+ void fillHTMLTab( KHTMLPart* htmlpart, const TQString& htmlcode );
protected slots:
virtual void slotUser1();
@@ -113,7 +113,7 @@ class DetailedInfoDlg : public KDialogBase
virtual void slotHelp();
protected:
- virtual void wheelEvent ( QWheelEvent * ev );
+ virtual void wheelEvent ( TQWheelEvent * ev );
signals:
void elementChanged( int );