summaryrefslogtreecommitdiffstats
path: root/kdbg/threadlist.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdbg/threadlist.h')
-rw-r--r--kdbg/threadlist.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/kdbg/threadlist.h b/kdbg/threadlist.h
new file mode 100644
index 0000000..e936d89
--- /dev/null
+++ b/kdbg/threadlist.h
@@ -0,0 +1,39 @@
+/*
+ * Copyright Johannes Sixt
+ * This file is licensed under the GNU General Public License Version 2.
+ * See the file COPYING in the toplevel directory of the source directory.
+ */
+
+#ifndef THREADLIST_H
+#define THREADLIST_H
+
+#include <qlistview.h>
+#include <qpixmap.h>
+#include <list>
+
+class ThreadInfo;
+class ThreadEntry;
+
+class ThreadList : public QListView
+{
+ Q_OBJECT
+public:
+ ThreadList(QWidget* parent, const char* name);
+ ~ThreadList();
+
+public slots:
+ void updateThreads(const std::list<ThreadInfo>&);
+ void slotCurrentChanged(QListViewItem*);
+
+signals:
+ void setThread(int);
+
+protected:
+ ThreadEntry* threadById(int id);
+ void makeNoFocusIcon();
+
+ QPixmap m_focusIcon;
+ QPixmap m_noFocusIcon;
+};
+
+#endif // THREADLIST_H