8ae56f13788f50771a575c38148fa5914aaf8cd6
[clinton/Virtual-Jaguar-Rx.git] / src / debugger / callstackbrowser.h
1 //
2 // callstackbrowser.h: Call Stack
3 //
4 // by Jean-Paul Mari
5 //
6
7 #ifndef __CALLSTACKBROWSER_H__
8 #define __CALLSTACKBROWSER_H__
9
10 #include <QtWidgets>
11 #include <stdint.h>
12
13 class CallStackBrowserWindow : public QWidget
14 {
15 Q_OBJECT
16
17 public:
18 CallStackBrowserWindow(QWidget *parent = 0);
19 ~CallStackBrowserWindow(void);
20
21 public slots:
22 void RefreshContents(void);
23
24 protected:
25 void keyPressEvent(QKeyEvent *);
26
27 private:
28 QVBoxLayout *layout;
29 QTextBrowser * text;
30 };
31
32 #endif // __CALLSTACKBROWSER_H__