X-Git-Url: http://git.hcoop.net/clinton/Virtual-Jaguar-Rx.git/blobdiff_plain/0203b5fd6f49dbc4f4244417c095882eb9882d49..570dad923e20ad098263df653287a08f5473427a:/src/debugger/allwatchbrowser.h diff --git a/src/debugger/allwatchbrowser.h b/src/debugger/allwatchbrowser.h index 7c4391c..e477409 100644 --- a/src/debugger/allwatchbrowser.h +++ b/src/debugger/allwatchbrowser.h @@ -15,10 +15,8 @@ class AllWatchBrowserWindow: public QWidget Q_OBJECT // - struct WatchInfo + typedef struct WatchInfo { - //size_t TypeEncoding; - //size_t TypeByteSize; size_t addr; size_t TypeTag; char *PtrVariableName; @@ -28,25 +26,18 @@ class AllWatchBrowserWindow: public QWidget public: AllWatchBrowserWindow(QWidget *parent = 0); ~AllWatchBrowserWindow(void); + void Reset(void); public slots: -// void DefineAllKeys(void); void RefreshContents(void); -// void GoToAddress(void); protected: -// void keyPressEvent(QKeyEvent *); + void keyPressEvent(QKeyEvent *); private: QVBoxLayout *layout; -// QTextBrowser * text; -// QLabel *text; QTextBrowser *text; -// QPushButton *refresh; -// QLineEdit *address; -// QPushButton *go; WatchInfo *PtrWatchInfo; -// int32_t memBase; size_t NbWatch; };