summaryrefslogtreecommitdiffstats
path: root/kdbg/brkpt.h
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-07-03 02:22:47 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-07-03 02:22:47 +0200
commit9dab0e253ecf583a2cc6ca22e068d4f4022ca4d3 (patch)
tree63c2afb5cbab9420e0d43683e09ddb0092663d49 /kdbg/brkpt.h
parent1ace27a9852850ad348dd28679c2fe2b7d2ddc73 (diff)
downloadkdbg-9dab0e253ecf583a2cc6ca22e068d4f4022ca4d3.tar.gz
kdbg-9dab0e253ecf583a2cc6ca22e068d4f4022ca4d3.zip
Initial TQt conversion
Diffstat (limited to 'kdbg/brkpt.h')
-rw-r--r--kdbg/brkpt.h48
1 files changed, 24 insertions, 24 deletions
diff --git a/kdbg/brkpt.h b/kdbg/brkpt.h
index c72785b..f529248 100644
--- a/kdbg/brkpt.h
+++ b/kdbg/brkpt.h
@@ -7,45 +7,45 @@
#ifndef BRKPT_H
#define BRKPT_H
-#include <qlistview.h>
-#include <qlayout.h>
-#include <qpushbutton.h>
-#include <qlineedit.h>
-#include <qvaluevector.h>
+#include <ntqlistview.h>
+#include <ntqlayout.h>
+#include <ntqpushbutton.h>
+#include <ntqlineedit.h>
+#include <ntqvaluevector.h>
class KDebugger;
class BreakpointItem;
-class BreakpointTable : public QWidget
+class BreakpointTable : public TQWidget
{
Q_OBJECT
public:
- BreakpointTable(QWidget* parent, const char* name);
+ BreakpointTable(TQWidget* parent, const char* name);
~BreakpointTable();
void setDebugger(KDebugger* deb) { m_debugger = deb; }
protected:
KDebugger* m_debugger;
- QLineEdit m_bpEdit;
- QListView m_list;
- QPushButton m_btAddBP;
- QPushButton m_btAddWP;
- QPushButton m_btRemove;
- QPushButton m_btEnaDis;
- QPushButton m_btViewCode;
- QPushButton m_btConditional;
- QHBoxLayout m_layout;
- QVBoxLayout m_listandedit;
- QVBoxLayout m_buttons;
- QValueVector<QPixmap> m_icons;
+ TQLineEdit m_bpEdit;
+ TQListView m_list;
+ TQPushButton m_btAddBP;
+ TQPushButton m_btAddWP;
+ TQPushButton m_btRemove;
+ TQPushButton m_btEnaDis;
+ TQPushButton m_btViewCode;
+ TQPushButton m_btConditional;
+ TQHBoxLayout m_layout;
+ TQVBoxLayout m_listandedit;
+ TQVBoxLayout m_buttons;
+ TQValueVector<TQPixmap> m_icons;
- void insertBreakpoint(int num, bool temp, bool enabled, QString location,
- QString fileName = 0, int lineNo = -1,
+ void insertBreakpoint(int num, bool temp, bool enabled, TQString location,
+ TQString fileName = 0, int lineNo = -1,
int hits = 0, uint ignoreCount = 0,
- QString condition = QString());
+ TQString condition = TQString());
void initListAndIcons();
- virtual bool eventFilter(QObject* ob, QEvent* ev);
+ virtual bool eventFilter(TQObject* ob, TQEvent* ev);
friend class BreakpointItem;
@@ -60,7 +60,7 @@ signals:
* @param lineNo specifies the line number (0-based!).
* @param address specifies the exact address of the breakpoint.
*/
- void activateFileLine(const QString& file, int lineNo, const DbgAddr& address);
+ void activateFileLine(const TQString& file, int lineNo, const DbgAddr& address);
public slots:
virtual void addBP();
virtual void addWP();