summaryrefslogtreecommitdiffstats
path: root/quanta/components/debugger/gubed/quantadebuggergubed.h
diff options
context:
space:
mode:
Diffstat (limited to 'quanta/components/debugger/gubed/quantadebuggergubed.h')
-rw-r--r--quanta/components/debugger/gubed/quantadebuggergubed.h58
1 files changed, 29 insertions, 29 deletions
diff --git a/quanta/components/debugger/gubed/quantadebuggergubed.h b/quanta/components/debugger/gubed/quantadebuggergubed.h
index 62acac0b..0f41b804 100644
--- a/quanta/components/debugger/gubed/quantadebuggergubed.h
+++ b/quanta/components/debugger/gubed/quantadebuggergubed.h
@@ -19,21 +19,21 @@
#include <kserversocket.h>
#include <kstreamsocket.h>
-#include <qptrlist.h>
+#include <tqptrlist.h>
#include <kurl.h>
-#include <qdom.h>
+#include <tqdom.h>
#include "debuggerclient.h"
-typedef QValueList<QString> WatchList;
-typedef QMap<QString, QString> StringMap;
+typedef TQValueList<TQString> WatchList;
+typedef TQMap<TQString, TQString> StringMap;
class QuantaDebuggerGubed : public DebuggerClient
{
Q_OBJECT
public:
- QuantaDebuggerGubed(QObject *parent, const char* name, const QStringList&);
+ QuantaDebuggerGubed(TQObject *parent, const char* name, const TQStringList&);
~QuantaDebuggerGubed();
// Execution states
@@ -76,14 +76,14 @@ class QuantaDebuggerGubed : public DebuggerClient
void endSession();
// Return name of debugger
- QString getName();
+ TQString getName();
// New file opened in quanta
- void fileOpened(const QString& file);
+ void fileOpened(const TQString& file);
// Settings
- void readConfig(QDomNode node);
- void showConfig(QDomNode node);
+ void readConfig(TQDomNode node);
+ void showConfig(TQDomNode node);
// Breakpoints
void addBreakpoint(DebuggerBreakpoint* breakpoint);
@@ -91,22 +91,22 @@ class QuantaDebuggerGubed : public DebuggerClient
void showCondition(const StringMap &args);
// Variables
- void addWatch(const QString &variable);
+ void addWatch(const TQString &variable);
void removeWatch(DebuggerVariable *var);
void variableSetValue(const DebuggerVariable &variable);
private:
KNetwork::KStreamSocket *m_socket;
KNetwork::KServerSocket *m_server;
- QString m_command, m_buffer;
+ TQString m_command, m_buffer;
long m_datalen;
- QString m_serverBasedir;
- QString m_localBasedir;
- QString m_serverPort;
- QString m_serverHost;
- QString m_startsession;
- QString m_listenPort;
+ TQString m_serverBasedir;
+ TQString m_localBasedir;
+ TQString m_serverPort;
+ TQString m_serverHost;
+ TQString m_startsession;
+ TQString m_listenPort;
bool m_useproxy;
State m_executionState, m_defaultExecutionState;
long m_errormask;
@@ -114,28 +114,28 @@ class QuantaDebuggerGubed : public DebuggerClient
WatchList m_watchlist;
-// bool sendCommand(const QString&, const QString&);
- bool sendCommand(const QString& command, StringMap args);
- bool sendCommand(const QString& command, char * firstarg, ...);
+// bool sendCommand(const TQString&, const TQString&);
+ bool sendCommand(const TQString& command, StringMap args);
+ bool sendCommand(const TQString& command, char * firstarg, ...);
- void processCommand(const QString&);
+ void processCommand(const TQString&);
void sendWatches();
void sendBreakpoints();
void debuggingState(bool enable);
void connected();
- QString mapServerPathToLocal(const QString& serverpath);
- QString mapLocalPathToServer(const QString& localpath);
- QString bpToGubed(DebuggerBreakpoint* breakpoint);
+ TQString mapServerPathToLocal(const TQString& serverpath);
+ TQString mapLocalPathToServer(const TQString& localpath);
+ TQString bpToGubed(DebuggerBreakpoint* breakpoint);
// Communication helpers
- QString phpSerialize(StringMap args);
- StringMap parseArgs(const QString &args);
+ TQString phpSerialize(StringMap args);
+ StringMap parseArgs(const TQString &args);
// Variables
- DebuggerVariable* parsePHPVariables(const QString &varstring);
- DebuggerVariable* parsePHPVariables(QString &str);
- void showWatch(const QString& data);
+ DebuggerVariable* parsePHPVariables(const TQString &varstring);
+ DebuggerVariable* parsePHPVariables(TQString &str);
+ void showWatch(const TQString& data);
public slots: