UI modifications
[clinton/Virtual-Jaguar-Rx.git] / src / debugger / exceptionvectortablebrowser.h
index 12bf882..aaccda0 100644 (file)
@@ -7,10 +7,13 @@
 #ifndef __EXCEPTIONVECTORTABLEBROWSER_H__
 #define __EXCEPTIONVECTORTABLEBROWSER_H__
 
+//#define EV_LAYOUTTEXTS                                               // Use a layout with just texts
+
 #include <QtWidgets>
 #include <stdint.h>
 
 
+// 
 class ExceptionVectorTableBrowserWindow: public QWidget
 {
        Q_OBJECT
@@ -27,7 +30,12 @@ class ExceptionVectorTableBrowserWindow: public QWidget
 
        private:
                QVBoxLayout *layout;
+#ifdef EV_LAYOUTTEXTS
                QTextBrowser *text;
+#else
+               QTableView *TableView;
+               QStandardItemModel *model;
+#endif
                QPushButton *refresh;
 };