Remplacing the DMA viewer by a registers viewer

This commit is contained in:
Anonymus Raccoon
2020-05-28 14:51:44 +02:00
parent 5e0f6104fe
commit 3fb36e1be3
9 changed files with 119 additions and 170 deletions
-125
View File
@@ -1,125 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>DMAView</class>
<widget class="QMainWindow" name="DMAView">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>795</width>
<height>534</height>
</rect>
</property>
<property name="windowTitle">
<string>DMA's Debugger</string>
</property>
<property name="windowIcon">
<iconset resource="../resources/appResources.qrc">
<normaloff>:/resources/Logo.png</normaloff>:/resources/Logo.png</iconset>
</property>
<widget class="QWidget" name="centralwidget">
<layout class="QGridLayout" name="gridLayout">
<item row="0" column="0">
<widget class="QTableWidget" name="tableWidget">
<property name="sizeAdjustPolicy">
<enum>QAbstractScrollArea::AdjustIgnored</enum>
</property>
<attribute name="horizontalHeaderMinimumSectionSize">
<number>28</number>
</attribute>
<attribute name="horizontalHeaderDefaultSectionSize">
<number>86</number>
</attribute>
<attribute name="verticalHeaderDefaultSectionSize">
<number>61</number>
</attribute>
<row>
<property name="text">
<string>Channel 1</string>
</property>
</row>
<row>
<property name="text">
<string>Channel 2</string>
</property>
</row>
<row>
<property name="text">
<string>Channel 3</string>
</property>
</row>
<row>
<property name="text">
<string>Channel 4</string>
</property>
</row>
<row>
<property name="text">
<string>Channel 5</string>
</property>
</row>
<row>
<property name="text">
<string>Channel 6</string>
</property>
</row>
<row>
<property name="text">
<string>Channel 7</string>
</property>
</row>
<row>
<property name="text">
<string>Channel 8</string>
</property>
</row>
<column>
<property name="text">
<string>Mode</string>
</property>
</column>
<column>
<property name="text">
<string>Fixed</string>
</property>
</column>
<column>
<property name="text">
<string>Increment</string>
</property>
</column>
<column>
<property name="text">
<string>Direction</string>
</property>
</column>
<column>
<property name="text">
<string>Port</string>
</property>
</column>
<column>
<property name="text">
<string>A Address</string>
</property>
</column>
<column>
<property name="text">
<string>Count</string>
</property>
</column>
<column>
<property name="text">
<string>Enabled</string>
</property>
</column>
</widget>
</item>
</layout>
</widget>
</widget>
<resources>
<include location="../resources/appResources.qrc"/>
</resources>
<connections/>
</ui>
+75
View File
@@ -0,0 +1,75 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>RegistersView</class>
<widget class="QMainWindow" name="RegistersView">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>431</width>
<height>646</height>
</rect>
</property>
<property name="windowTitle">
<string>Registers's Debugger</string>
</property>
<property name="windowIcon">
<iconset resource="../resources/appResources.qrc">
<normaloff>:/resources/Logo.png</normaloff>:/resources/Logo.png</iconset>
</property>
<widget class="QWidget" name="centralwidget">
<layout class="QGridLayout" name="gridLayout">
<item row="0" column="0">
<widget class="QTabWidget" name="tabWidget">
<property name="currentIndex">
<number>0</number>
</property>
<property name="documentMode">
<bool>false</bool>
</property>
<property name="tabsClosable">
<bool>false</bool>
</property>
<property name="movable">
<bool>true</bool>
</property>
<widget class="QWidget" name="cpu">
<attribute name="title">
<string>CPU</string>
</attribute>
<layout class="QGridLayout" name="gridLayout_2">
<item row="0" column="0">
<layout class="QFormLayout" name="formLayout"/>
</item>
</layout>
</widget>
<widget class="QWidget" name="ppu">
<attribute name="title">
<string>PPU</string>
</attribute>
<layout class="QGridLayout" name="gridLayout_3">
<item row="0" column="0">
<layout class="QFormLayout" name="formLayout_2"/>
</item>
</layout>
</widget>
<widget class="QWidget" name="dma">
<attribute name="title">
<string>DMA</string>
</attribute>
<layout class="QGridLayout" name="gridLayout_4">
<item row="0" column="0">
<layout class="QFormLayout" name="formLayout_3"/>
</item>
</layout>
</widget>
</widget>
</item>
</layout>
</widget>
</widget>
<resources>
<include location="../resources/appResources.qrc"/>
</resources>
<connections/>
</ui>