summaryrefslogtreecommitdiffstats
path: root/kdbg/dbgmainwnd.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdbg/dbgmainwnd.h')
-rw-r--r--kdbg/dbgmainwnd.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/kdbg/dbgmainwnd.h b/kdbg/dbgmainwnd.h
index cac766b..fdd2753 100644
--- a/kdbg/dbgmainwnd.h
+++ b/kdbg/dbgmainwnd.h
@@ -7,15 +7,15 @@
#ifndef DBGMAINWND_H
#define DBGMAINWND_H
-#include <qtimer.h>
+#include <ntqtimer.h>
#include <kdockwidget.h>
#include "mainwndbase.h"
#include "regwnd.h"
class KRecentFilesAction;
class WinStack;
-class QListBox;
-class QCString;
+class TQListBox;
+class TQCString;
class ExprWnd;
class BreakpointTable;
class ThreadList;
@@ -29,7 +29,7 @@ public:
DebuggerMainWnd(const char* name);
~DebuggerMainWnd();
- bool debugProgram(const QString& exe, const QString& lang);
+ bool debugProgram(const TQString& exe, const TQString& lang);
protected:
// session properties
@@ -44,7 +44,7 @@ protected:
// view windows
WinStack* m_filesWindow;
- QListBox* m_btWindow;
+ TQListBox* m_btWindow;
ExprWnd* m_localVariables;
WatchWindow* m_watches;
RegisterView* m_registers;
@@ -53,7 +53,7 @@ protected:
ThreadList* m_threads;
MemoryWindow* m_memoryWindow;
- QTimer m_backTimer;
+ TQTimer m_backTimer;
// recent execs in File menu
KRecentFilesAction* m_recentExecAction;
@@ -61,19 +61,19 @@ protected:
protected:
virtual bool queryClose();
virtual TTYWindow* ttyWindow();
- virtual QString createOutputWindow();
+ virtual TQString createOutputWindow();
- KDockWidget* dockParent(QWidget* w);
- bool isDockVisible(QWidget* w);
- bool canChangeDockVisibility(QWidget* w);
- void dockUpdateHelper(QString action, QWidget* w);
+ KDockWidget* dockParent(TQWidget* w);
+ bool isDockVisible(TQWidget* w);
+ bool canChangeDockVisibility(TQWidget* w);
+ void dockUpdateHelper(TQString action, TQWidget* w);
void fixDockConfig(KConfig* c, bool upgrade);
- QString makeSourceFilter();
+ TQString makeSourceFilter();
// to avoid flicker when the status bar is updated,
// we store the last string that we put there
- QString m_lastActiveStatusText;
+ TQString m_lastActiveStatusText;
bool m_animRunning;
signals:
@@ -83,17 +83,17 @@ public slots:
virtual void updateUI();
virtual void updateLineItems();
void slotAddWatch();
- void slotAddWatch(const QString& text);
+ void slotAddWatch(const TQString& text);
void slotNewFileLoaded();
void slotNewStatusMsg();
void slotDebuggerStarting();
- void slotToggleBreak(const QString&, int, const DbgAddr&, bool);
- void slotEnaDisBreak(const QString&, int, const DbgAddr&);
+ void slotToggleBreak(const TQString&, int, const DbgAddr&, bool);
+ void slotEnaDisBreak(const TQString&, int, const DbgAddr&);
void slotTermEmuExited();
void slotProgramStopped();
void slotBackTimer();
void slotRecentExec(const KURL& url);
- void slotLocalsPopup(QListViewItem*, const QPoint& pt);
+ void slotLocalsPopup(TQListViewItem*, const TQPoint& pt);
void slotLocalsToWatch();
void slotEditValue();