First commit
[clinton/Virtual-Jaguar-Rx.git] / src / gui / debug / stackbrowser.h
... / ...
CommitLineData
1//
2// stackbrowser.h: Jaguar stack browser
3//
4// by Jean-Paul Mari
5// (C) 2012 Underground Software
6//
7
8#ifndef __STACKBROWSER_H__
9#define __STACKBROWSER_H__
10
11#include <QtWidgets>
12#include <stdint.h>
13
14class StackBrowserWindow: public QWidget
15{
16 Q_OBJECT
17
18 public:
19 StackBrowserWindow(QWidget * parent = 0);
20
21
22 public slots:
23// void DefineAllKeys(void);
24 void RefreshContents(void);
25 //void GoToAddress(void);
26
27 protected:
28 //void keyPressEvent(QKeyEvent *);
29
30 private:
31 QVBoxLayout * layout;
32// QTextBrowser * text;
33 QLabel * text;
34 //QPushButton * refresh;
35 //QLineEdit * address;
36 //QPushButton * go;
37
38 size_t memBase;
39};
40
41#endif // __STACKBROWSER_H__