Preparation for 2 COM keys and increase/decrease volume hotkeys

Ref T672, Ref T642
This commit is contained in:
Klaus Basan
2019-05-29 00:23:04 +02:00
committed by Mat Sutcliffe
parent d509b1eb09
commit 50412aa0d1
6 changed files with 120 additions and 12 deletions

View File

@@ -22,5 +22,39 @@ namespace BlackMisc
{
return CIcons::radio16();
}
const QString &pttCom1HotkeyAction()
{
static const QString s("/Voice/Activate push-to-talk COM1");
return s;
}
const QString &pttCom2HotkeyAction()
{
static const QString s("/Voice/Activate push-to-talk COM2");
return s;
}
const QPixmap &audioVolumeDecreaseHotkeyIcon()
{
return CIcons::volumeLow16();
}
const QPixmap &audioVolumeIncreaseHotkeyIcon()
{
return CIcons::volumeHigh16();
}
const QString &audioVolumeDecreaseHotkeyAction()
{
static const QString s("/Audio/Volume decrease");
return s;
}
const QString &audioVolumeIncreaseHotkeyAction()
{
static const QString s("/Audio/Volume increase");
return s;
}
} // ns
} // ns