New target memory inspection pane and hex viewer widget

This commit is contained in:
Nav
2021-10-17 20:44:40 +01:00
parent 52a9b27519
commit 7c65e182af
18 changed files with 1435 additions and 17 deletions

View File

@@ -299,19 +299,30 @@ QScrollBar::sub-line:vertical {
border-top: 1px solid #2F2F2D;
}
#bottom-menu-bar #ram-inspection-btn {
#bottom-menu-bar #ram-inspection-btn,
#bottom-menu-bar #eeprom-inspection-btn {
position: relative;
border: none;
min-width: 90px;
min-height: 22px;
}
#bottom-menu-bar #ram-inspection-btn #ram-inspection-btn-icon {
margin-left: 9px;
#bottom-menu-bar #ram-inspection-btn {
min-width: 71px;
}
#bottom-menu-bar #ram-inspection-btn #ram-inspection-btn-label {
margin-left: 2px;
#bottom-menu-bar #eeprom-inspection-btn {
min-width: 97px;
}
#bottom-menu-bar #ram-inspection-btn #ram-inspection-btn-icon,
#bottom-menu-bar #eeprom-inspection-btn #eeprom-inspection-btn-icon {
margin-left: 7px;
margin-top: 1px;
}
#bottom-menu-bar #ram-inspection-btn #ram-inspection-btn-label,
#bottom-menu-bar #eeprom-inspection-btn #eeprom-inspection-btn-label {
margin-left: 1px;
}
#bottom-menu-bar QToolButton:hover,
@@ -324,3 +335,57 @@ QScrollBar::sub-line:vertical {
border-top: 1px solid #2F2F2D;
background-color: transparent;
}
/* Target Memory Inspection Pane */
#target-memory-inspection-pane #title-bar {
background-color: #383F43;
border-bottom: 1px solid #2F2F2D;
}
#target-memory-inspection-pane #title {
color: #afb1b3;
}
#hex-viewer-container #tool-bar,
#hex-viewer-container #search-bar {
border-bottom: 1px solid #2F2F2D;
}
#hex-viewer-container #tool-bar QToolButton {
background-color: transparent;
border: none;
padding: 0;
qproperty-buttonWidth: 24;
qproperty-buttonHeight: 20;
}
#hex-viewer-container #tool-bar QToolButton:hover {
background-color: #454541;
border: none;
padding: 0;
}
#hex-viewer-container QScrollArea,
#hex-viewer-container #byte-widget-scroll-area-container {
background-color: transparent;
border: none;
}
#hex-viewer-container #byte-widget-scroll-area-container #address-container {
background-color: transparent;
border-right: 1px solid #2F2F2D;
}
#hex-viewer-container #byte-widget-scroll-area-container #address-container QLabel {
background-color: transparent;
font-size: 12px;
color: rgba(175, 177, 179, 0.72);
}
#hex-viewer-container #byte-widget-scroll-area-container #address-container QLabel:disabled {
color: rgba(175, 177, 179, 0.3);
}
#hex-viewer-container #byte {
font-size: 11px;
}