26 lines
503 B
C++
26 lines
503 B
C++
#ifndef CALLSTACKVIEW_H
|
|
#define CALLSTACKVIEW_H
|
|
|
|
#include "StdTable.h"
|
|
|
|
class CallStackView : public StdTable
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit CallStackView(StdTable* parent = 0);
|
|
void setupContextMenu();
|
|
|
|
protected slots:
|
|
void updateCallStack();
|
|
void contextMenuSlot(const QPoint pos);
|
|
void followAddress();
|
|
void followTo();
|
|
void followFrom();
|
|
void showSuspectedCallStack();
|
|
|
|
private:
|
|
MenuBuilder* mMenuBuilder;
|
|
};
|
|
|
|
#endif // CALLSTACKVIEW_H
|