diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:54:04 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:54:04 +0000 |
commit | dc6b8e72fed2586239e3514819238c520636c9d9 (patch) | |
tree | 88b200df0a0b7fab9d6f147596173556f1ed9a13 /kxsldbg/kxsldbgpart/xsldbgdebugger.h | |
parent | 6927d4436e54551917f600b706a8d6109e49de1c (diff) | |
download | tdewebdev-dc6b8e72fed2586239e3514819238c520636c9d9.tar.gz tdewebdev-dc6b8e72fed2586239e3514819238c520636c9d9.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdewebdev@1157656 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kxsldbg/kxsldbgpart/xsldbgdebugger.h')
-rw-r--r-- | kxsldbg/kxsldbgpart/xsldbgdebugger.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/kxsldbg/kxsldbgpart/xsldbgdebugger.h b/kxsldbg/kxsldbgpart/xsldbgdebugger.h index 3e9c267f..b4be5b5e 100644 --- a/kxsldbg/kxsldbgpart/xsldbgdebugger.h +++ b/kxsldbg/kxsldbgpart/xsldbgdebugger.h @@ -18,7 +18,7 @@ #ifndef XSLDBGDEBUGGER_H #define XSLDBGDEBUGGER_H -#include <qevent.h> +#include <tqevent.h> #include "libxsldbg/xsldbgmsg.h" /* needed for XsldbgMessageEnum */ #include "libqtnotfier/xsldbgdebuggerbase.h" @@ -44,27 +44,27 @@ public: void setInspector(XsldbgInspector *inspector); /** Get the name of source file from xsldbg*/ - QString sourceFileName(); + TQString sourceFileName(); /** Get the name of data file from xsldbg*/ - QString dataFileName(); + TQString dataFileName(); /** Get the name of output file from xsldbg*/ - QString outputFileName(); + TQString outputFileName(); /** Tell quanta to move its cursor to file and line number supplied */ - void gotoLine(QString fileName, int lineNo, bool breakpoint = false); + void gotoLine(TQString fileName, int lineNo, bool breakpoint = false); /** Set a xsldbg option */ void setOption(const char *name, bool value); - bool event(QEvent *e); - void timerEvent(QTimerEvent *e); + bool event(TQEvent *e); + void timerEvent(TQTimerEvent *e); void setOutputFileActive(bool b) {outputFileActive = b;}; /* helper function to handle differences between URI's in Qt/KDE and libxml2 */ - static QString fixLocalPaths(QString & file); + static TQString fixLocalPaths(TQString & file); private: /** */ @@ -78,7 +78,7 @@ public slots: bool stop(); /** send text to xsldbg, if wait is true then wait for the reply */ - void fakeInput(QString text, bool wait); + void fakeInput(TQString text, bool wait); /** Display configure dialog */ void slotConfigure(); @@ -112,19 +112,19 @@ public slots: void slotTraceCmd(); /** Add breakpoint at given file and line number */ - void slotBreakCmd(QString fileName, int lineNumber); + void slotBreakCmd(TQString fileName, int lineNumber); /** Add breakpoint at given template name*/ - void slotBreakCmd(QString templateName, QString modeName); + void slotBreakCmd(TQString templateName, TQString modeName); /** Toggle the enabling of break point at given file and line number */ - void slotEnableCmd(QString fileName, int lineNumber); + void slotEnableCmd(TQString fileName, int lineNumber); /** Enable break point for given breakpoint id */ void slotEnableCmd(int id); /** Delete break point at given file and line number */ - void slotDeleteCmd(QString fileName, int lineNumber); + void slotDeleteCmd(TQString fileName, int lineNumber); /** Delete break point for given breakpoint id */ void slotDeleteCmd(int id); @@ -142,13 +142,13 @@ public slots: void slotExitCmd(); /** Print the result of evaluating xPathExpression to the message window */ - void slotCatCmd(QString xPathExpression); + void slotCatCmd(TQString xPathExpression); /** Move to line specified by xPathExpression */ - void slotCdCmd(QString xPathExpression); + void slotCdCmd(TQString xPathExpression); /** Set a libxslt variable to xPathExpression */ - void slotSetVariableCmd(QString variableName, QString xPathExpression); + void slotSetVariableCmd(TQString variableName, TQString xPathExpression); signals: // Signals // generated after first message is received from xsldbg void debuggerReady(); @@ -169,7 +169,7 @@ private: int updateTimerID; bool addMsg; - QStringList commandQue; + TQStringList commandQue; }; |