Skip to content

Commit

Permalink
Merge pull request #7342 from spycrab/qt_dbg_scroll
Browse files Browse the repository at this point in the history
Qt/Debugger: Improve scrolling
  • Loading branch information
delroth committed Aug 20, 2018
2 parents 183fb9b + 5b992f1 commit d440871
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 8 deletions.
16 changes: 12 additions & 4 deletions Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp
Expand Up @@ -29,6 +29,10 @@
#include "DolphinQt/Resources.h"
#include "DolphinQt/Settings.h"

// "Most mouse types work in steps of 15 degrees, in which case the delta value is a multiple of
// 120; i.e., 120 units * 1/8 = 15 degrees." (http://doc.qt.io/qt-5/qwheelevent.html#angleDelta)
constexpr double SCROLL_FRACTION_DEGREES = 15.;

constexpr size_t VALID_BRANCH_LENGTH = 10;

CodeViewWidget::CodeViewWidget()
Expand Down Expand Up @@ -484,11 +488,11 @@ void CodeViewWidget::keyPressEvent(QKeyEvent* event)
switch (event->key())
{
case Qt::Key_Up:
m_address -= 3 * sizeof(u32);
m_address -= sizeof(u32);
Update();
return;
case Qt::Key_Down:
m_address += 3 * sizeof(u32);
m_address += sizeof(u32);
Update();
return;
case Qt::Key_PageUp:
Expand All @@ -507,9 +511,13 @@ void CodeViewWidget::keyPressEvent(QKeyEvent* event)

void CodeViewWidget::wheelEvent(QWheelEvent* event)
{
int delta = event->delta() > 0 ? -1 : 1;
auto delta =
-static_cast<int>(std::round((event->angleDelta().y() / (SCROLL_FRACTION_DEGREES * 8))));

if (delta == 0)
return;

m_address += delta * 3 * sizeof(u32);
m_address += delta * sizeof(u32);
Update();
}

Expand Down
16 changes: 12 additions & 4 deletions Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp
Expand Up @@ -22,6 +22,10 @@
#include "DolphinQt/Resources.h"
#include "DolphinQt/Settings.h"

// "Most mouse types work in steps of 15 degrees, in which case the delta value is a multiple of
// 120; i.e., 120 units * 1/8 = 15 degrees." (http://doc.qt.io/qt-5/qwheelevent.html#angleDelta)
constexpr double SCROLL_FRACTION_DEGREES = 15.;

MemoryViewWidget::MemoryViewWidget(QWidget* parent) : QTableWidget(parent)
{
horizontalHeader()->hide();
Expand Down Expand Up @@ -236,11 +240,11 @@ void MemoryViewWidget::keyPressEvent(QKeyEvent* event)
switch (event->key())
{
case Qt::Key_Up:
m_address -= 3 * 16;
m_address -= 16;
Update();
return;
case Qt::Key_Down:
m_address += 3 * 16;
m_address += 16;
Update();
return;
case Qt::Key_PageUp:
Expand Down Expand Up @@ -297,9 +301,13 @@ void MemoryViewWidget::ToggleBreakpoint()

void MemoryViewWidget::wheelEvent(QWheelEvent* event)
{
int delta = event->delta() > 0 ? -1 : 1;
auto delta =
-static_cast<int>(std::round((event->angleDelta().y() / (SCROLL_FRACTION_DEGREES * 8))));

if (delta == 0)
return;

m_address += delta * 3 * 16;
m_address += delta * 16;
Update();
}

Expand Down

0 comments on commit d440871

Please sign in to comment.