Merge pull request #6867 from jackoalan/code-view-bg

Qt/CodeViewWidget: Dynamic background dimming for dark themes
This commit is contained in:
Léo Lam 2018-05-16 14:08:02 +02:00 committed by GitHub
commit 4de2c5040d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 8 deletions

View File

@ -100,6 +100,8 @@ void CodeViewWidget::Update()
if (Core::GetState() != Core::State::Paused && PowerPC::debug_interface.IsBreakpoint(pc))
Core::SetState(Core::State::Paused);
const bool dark_theme = qApp->palette().color(QPalette::Base).valueF() < 0.5;
for (int i = 0; i < rowCount(); i++)
{
u32 addr = m_address - ((rowCount() / 2) * 4) + i * 4;
@ -123,15 +125,14 @@ void CodeViewWidget::Update()
item->setFlags(Qt::ItemIsEnabled | Qt::ItemIsSelectable);
item->setData(Qt::UserRole, addr);
if (color != 0xFFFFFF)
{
item->setForeground(Qt::black);
item->setBackground(QColor(color));
}
if (addr == pc && item != bp_item)
{
item->setBackground(Qt::green);
item->setForeground(Qt::black);
item->setBackground(QColor(Qt::green));
item->setForeground(QColor(Qt::black));
}
else if (color != 0xFFFFFF)
{
item->setBackground(dark_theme ? QColor(color).darker(240) : QColor(color));
}
}
@ -151,7 +152,7 @@ void CodeViewWidget::Update()
}
if (ins == "blr")
ins_item->setForeground(Qt::darkGreen);
ins_item->setForeground(dark_theme ? QColor(0xa0FFa0) : Qt::darkGreen);
if (PowerPC::debug_interface.IsBreakpoint(addr))
{