| 925 | } |
| 926 | |
| 927 | void MemoryView::wheelEvent(QWheelEvent* event) |
| 928 | { |
| 929 | if (event->angleDelta().y() < 0) |
| 930 | { |
| 931 | m_table.UpdateStartAddress(m_table.startAddress + 0x10); |
| 932 | } |
| 933 | else if (event->angleDelta().y() > 0) |
| 934 | { |
| 935 | m_table.UpdateStartAddress(m_table.startAddress - 0x10); |
| 936 | } |
| 937 | update(); |
| 938 | } |
| 939 | |
| 940 | void MemoryView::keyPressEvent(QKeyEvent* event) |
| 941 | { |
nothing calls this directly
no test coverage detected