summaryrefslogtreecommitdiffstats
path: root/kxsldbg/kxsldbgpart/xsldbgdebugger.h
diff options
context:
space:
mode:
Diffstat (limited to 'kxsldbg/kxsldbgpart/xsldbgdebugger.h')
-rw-r--r--kxsldbg/kxsldbgpart/xsldbgdebugger.h34
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;
};