Added multiple breakpoints feature and their key bindings
[clinton/Virtual-Jaguar-Rx.git] / src / gui / debug / memorybrowser.h
CommitLineData
cf76e892
JPM
1//
2// memorybrowser.h: Jaguar memory browser
3//
4// by James Hammons
5// (C) 2012 Underground Software
6//
7
8#ifndef __MEMORYBROWSER_H__
9#define __MEMORYBROWSER_H__
10
11#include <QtWidgets>
12#include <stdint.h>
13
14class MemoryBrowserWindow: public QWidget
15{
16 Q_OBJECT
17
18 public:
19 MemoryBrowserWindow(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 int32_t memBase;
39};
40
41#endif // __MEMORYBROWSER_H__