Added multiple breakpoints feature and their key bindings
[clinton/Virtual-Jaguar-Rx.git] / src / debugger / NewFnctBreakpointWin.h
CommitLineData
1081a838
JPM
1//
2// NewFnctBreakpointWin.h: New function breakpoint
3//
4// by Jean-Paul Mari
5//
6
7#ifndef __NEWFNCTBREAKPOINTWIN_H__
8#define __NEWFNCTBREAKPOINTWIN_H__
9
10#include <QtWidgets>
11#include <stdint.h>
12
13class NewFnctBreakpointWindow: public QWidget
14{
15 Q_OBJECT
16
17 public:
18 NewFnctBreakpointWindow(QWidget * parent = 0);
19
20 public slots:
21
22 protected:
23 void keyPressEvent(QKeyEvent *);
24
25 protected slots:
26 void AddBreakpointAddress(void);
27
28 private:
29 QVBoxLayout *layout;
30 QLineEdit *address;
31 QPushButton *add;
32};
33
34#endif // __NEWFNCTBREAKPOINTWIN_H__