Added multiple breakpoints feature and their key bindings
[clinton/Virtual-Jaguar-Rx.git] / src / debugger / NewFnctBreakpointWin.h
diff --git a/src/debugger/NewFnctBreakpointWin.h b/src/debugger/NewFnctBreakpointWin.h
new file mode 100644 (file)
index 0000000..eb6d3cc
--- /dev/null
@@ -0,0 +1,34 @@
+//
+// NewFnctBreakpointWin.h: New function breakpoint
+//
+// by Jean-Paul Mari
+//
+
+#ifndef __NEWFNCTBREAKPOINTWIN_H__
+#define __NEWFNCTBREAKPOINTWIN_H__
+
+#include <QtWidgets>
+#include <stdint.h>
+
+class NewFnctBreakpointWindow: public QWidget
+{
+       Q_OBJECT
+
+       public:
+               NewFnctBreakpointWindow(QWidget * parent = 0);
+
+       public slots:
+
+       protected:
+               void keyPressEvent(QKeyEvent *);
+
+       protected slots:
+               void AddBreakpointAddress(void);
+
+       private:
+               QVBoxLayout *layout;
+               QLineEdit *address;
+               QPushButton *add;
+};
+
+#endif // __NEWFNCTBREAKPOINTWIN_H__