1
0
Fork 0
x64dbg/x64_dbg_gui/Project/Src/Gui/ThreadView.h

22 lines
429 B
C++

#ifndef THREADVIEW_H
#define THREADVIEW_H
#include "StdTable.h"
#include "Bridge.h"
class ThreadView : public StdTable
{
Q_OBJECT
public:
explicit ThreadView(StdTable* parent = 0);
QString paintContent(QPainter* painter, int_t rowBase, int rowOffset, int col, int x, int y, int w, int h);
public slots:
void updateThreadList();
private:
int mCurrentThread;
};
#endif // THREADVIEW_H