You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kdbg/kdbg/threadlist.h

40 lines
767 B

11 years ago
/*
* 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 <tqlistview.h>
#include <tqpixmap.h>
11 years ago
#include <list>
class ThreadInfo;
class ThreadEntry;
class ThreadList : public TQListView
11 years ago
{
Q_OBJECT
public:
ThreadList(TQWidget* parent, const char* name);
11 years ago
~ThreadList();
public slots:
void updateThreads(const std::list<ThreadInfo>&);
void slotCurrentChanged(TQListViewItem*);
11 years ago
signals:
void setThread(int);
protected:
ThreadEntry* threadById(int id);
void makeNoFocusIcon();
TQPixmap m_focusIcon;
TQPixmap m_noFocusIcon;
11 years ago
};
#endif // THREADLIST_H