Update the breakpoint feature
[clinton/Virtual-Jaguar-Rx.git] / src / debugger / NewFnctBreakpointWin.h
index eb6d3cc..ab79184 100644 (file)
@@ -7,8 +7,9 @@
 #ifndef __NEWFNCTBREAKPOINTWIN_H__
 #define __NEWFNCTBREAKPOINTWIN_H__
 
-#include <QtWidgets>
+#include <QtWidgets/QtWidgets>
 #include <stdint.h>
+#include "debugger/BreakpointsWin.h"
 
 class NewFnctBreakpointWindow: public QWidget
 {
@@ -16,6 +17,8 @@ class NewFnctBreakpointWindow: public QWidget
 
        public:
                NewFnctBreakpointWindow(QWidget * parent = 0);
+               void SetFnctBreakpointWin(BreakpointsWindow* BpW);
+               ~NewFnctBreakpointWindow();
 
        public slots:
 
@@ -24,11 +27,13 @@ class NewFnctBreakpointWindow: public QWidget
 
        protected slots:
                void AddBreakpointAddress(void);
+               void SelectBreakpointAddress(void);
 
        private:
                QVBoxLayout *layout;
                QLineEdit *address;
                QPushButton *add;
+               BreakpointsWindow* BPWin;
 };
 
 #endif // __NEWFNCTBREAKPOINTWIN_H__