mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-12 07:35:55 +01:00
2021-09-16 Fred Gleason <fredg@paravelsystems.com>
* Removed the vestigal 'Hot Keys' capability. * Modified the 'Start on SpaceBar' action in rdairplay(1) so as to activate upon *release* of the spacebar. * Fixed a regression that broke the Alt-X keybinding in rdairplay(1). Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -727,14 +727,6 @@ MainWidget::MainWidget(RDConfig *config,QWidget *parent)
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// Create the HotKeyList object
|
||||
//
|
||||
air_keylist=new RDHotKeyList();
|
||||
air_hotkeys=new RDHotkeys(rda->config()->stationName(),"rdairplay");
|
||||
AltKeyHit=false;
|
||||
CtrlKeyHit=false;
|
||||
|
||||
//
|
||||
// Set Signal Handlers
|
||||
//
|
||||
@@ -1790,50 +1782,8 @@ void MainWidget::transportChangedData()
|
||||
}
|
||||
|
||||
|
||||
void MainWidget::keyPressEvent(QKeyEvent *e)
|
||||
{
|
||||
switch(e->key()) {
|
||||
case Qt::Key_Space:
|
||||
if(rda->airplayConf()->barAction()&&(air_log[0]->nextLine()>=0)) {
|
||||
air_log[0]->play(air_log[0]->nextLine(),RDLogLine::StartManual);
|
||||
}
|
||||
break;
|
||||
|
||||
case Qt::Key_X:
|
||||
if(((e->modifiers()&Qt::AltModifier)!=0)&&
|
||||
((e->modifiers()&Qt::ShiftModifier)==0)&&
|
||||
((e->modifiers()&Qt::ControlModifier)==0)) {
|
||||
QCloseEvent *ce=new QCloseEvent();
|
||||
closeEvent(ce);
|
||||
delete ce;
|
||||
}
|
||||
break;
|
||||
|
||||
case Qt::Key_Alt:
|
||||
keystrokecount++;
|
||||
AltKeyHit = true;
|
||||
break;
|
||||
|
||||
case Qt::Key_Control:
|
||||
keystrokecount++;
|
||||
CtrlKeyHit = true;
|
||||
break;
|
||||
|
||||
default:
|
||||
QWidget::keyPressEvent(e);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void MainWidget::keyReleaseEvent(QKeyEvent *e)
|
||||
{
|
||||
int keyhit = e->key();
|
||||
QString mystring=(*air_keylist).GetKeyCode(keyhit);
|
||||
QString hotkeystrokes;
|
||||
QString hot_label;
|
||||
QString temp_string;
|
||||
|
||||
switch(e->key()) {
|
||||
case Qt::Key_Space:
|
||||
switch(air_bar_action) {
|
||||
@@ -1848,131 +1798,16 @@ void MainWidget::keyReleaseEvent(QKeyEvent *e)
|
||||
break;
|
||||
}
|
||||
break;
|
||||
}
|
||||
// Try to figure out if this is a hot key combination
|
||||
if ( (e->key() == Qt::Key_Shift) ||
|
||||
(e->key() == Qt::Key_Up) ||
|
||||
(e->key() == Qt::Key_Left) ||
|
||||
(e->key() == Qt::Key_Right) ||
|
||||
(e->key() == Qt::Key_Down) ) {
|
||||
QWidget::keyReleaseEvent(e);
|
||||
keystrokecount = 0;
|
||||
hotkeystrokes = QString ("");
|
||||
return;
|
||||
}
|
||||
|
||||
if ((e->key() == Qt::Key_Alt) ||
|
||||
(e->key() == Qt::Key_Control)) {
|
||||
if (keystrokecount != 0 ) hotkeystrokes = QString ("");
|
||||
if (AltKeyHit) {
|
||||
AltKeyHit = false;
|
||||
if (keystrokecount > 0) keystrokecount--;
|
||||
}
|
||||
if (CtrlKeyHit) {
|
||||
CtrlKeyHit = false;
|
||||
if (keystrokecount > 0) keystrokecount--;
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
if (!e->isAutoRepeat()) {
|
||||
if (keystrokecount == 0)
|
||||
hotkeystrokes = QString ("");
|
||||
if (AltKeyHit) {
|
||||
hotkeystrokes = (*air_keylist).GetKeyCode(Qt::Key_Alt);
|
||||
hotkeystrokes += QString(" + ");
|
||||
}
|
||||
if (CtrlKeyHit) {
|
||||
if (AltKeyHit) {
|
||||
hotkeystrokes += (*air_keylist).GetKeyCode(Qt::Key_Control);
|
||||
hotkeystrokes += QString (" + ");
|
||||
}
|
||||
else {
|
||||
hotkeystrokes = (*air_keylist).GetKeyCode(Qt::Key_Control);
|
||||
hotkeystrokes += QString (" + ");
|
||||
}
|
||||
}
|
||||
|
||||
hotkeystrokes += mystring;
|
||||
keystrokecount = 0 ;
|
||||
}
|
||||
|
||||
// Have any Hot Key Combinations now...
|
||||
|
||||
if (hotkeystrokes.length() > 0) {
|
||||
|
||||
hot_label=(*air_hotkeys).GetRowLabel(RDEscapeString(rda->config()->stationName()),
|
||||
"airplay",hotkeystrokes.toUtf8().constData());
|
||||
|
||||
if (hot_label.length()>0) {
|
||||
|
||||
// "we found a keystroke label
|
||||
|
||||
if (hot_label=="Add")
|
||||
{
|
||||
addButtonData();
|
||||
return;
|
||||
}
|
||||
|
||||
if (hot_label=="Delete")
|
||||
{
|
||||
deleteButtonData();
|
||||
return;
|
||||
}
|
||||
|
||||
if (hot_label=="Copy")
|
||||
{
|
||||
copyButtonData();
|
||||
return;
|
||||
}
|
||||
|
||||
if (hot_label=="Move")
|
||||
{
|
||||
moveButtonData();
|
||||
return;
|
||||
}
|
||||
|
||||
if (hot_label=="Sound Panel")
|
||||
{
|
||||
panelButtonData();
|
||||
return;
|
||||
}
|
||||
|
||||
if (hot_label=="Main Log")
|
||||
{
|
||||
fullLogButtonData(0);
|
||||
return;
|
||||
}
|
||||
|
||||
if ((hot_label=="Aux Log 1") &&
|
||||
(rda->airplayConf()->showAuxButton(0) ) )
|
||||
{
|
||||
fullLogButtonData(1);
|
||||
return;
|
||||
}
|
||||
|
||||
if ((hot_label=="Aux Log 2") &&
|
||||
(rda->airplayConf()->showAuxButton(1) ) )
|
||||
{
|
||||
fullLogButtonData(2);
|
||||
return;
|
||||
}
|
||||
|
||||
for (int i = 1; i < 8 ; i++)
|
||||
{
|
||||
temp_string = QString::asprintf("Start Line %d",i);
|
||||
if (hot_label==temp_string)
|
||||
air_button_list->startButton(i-1);
|
||||
|
||||
temp_string = QString::asprintf("Stop Line %d",i);
|
||||
if (hot_label==temp_string)
|
||||
air_button_list->stopButtonHotkey(i-1);
|
||||
|
||||
temp_string = QString::asprintf("Pause Line %d",i);
|
||||
if (hot_label==temp_string)
|
||||
air_button_list->pauseButtonHotkey(i-1);
|
||||
}
|
||||
}
|
||||
case Qt::Key_X:
|
||||
if(((e->modifiers()&Qt::AltModifier)!=0)&&
|
||||
((e->modifiers()&Qt::ShiftModifier)==0)&&
|
||||
((e->modifiers()&Qt::ControlModifier)==0)) {
|
||||
QCloseEvent *ce=new QCloseEvent();
|
||||
closeEvent(ce);
|
||||
delete ce;
|
||||
}
|
||||
break;
|
||||
}
|
||||
QWidget::keyReleaseEvent(e);
|
||||
}
|
||||
|
||||
@@ -22,8 +22,6 @@
|
||||
#define RDAIRPLAY_H
|
||||
|
||||
#include <rdemptycart.h>
|
||||
#include <rdhotkeylist.h>
|
||||
#include <rdhotkeys.h>
|
||||
#include <rdinstancelock.h>
|
||||
#include <rdmainwindow.h>
|
||||
#include <rdmeterstrip.h>
|
||||
@@ -86,7 +84,6 @@ class MainWidget : public RDMainWindow
|
||||
void transportChangedData();
|
||||
|
||||
protected:
|
||||
void keyPressEvent(QKeyEvent *e);
|
||||
void keyReleaseEvent(QKeyEvent *e);
|
||||
void closeEvent(QCloseEvent *);
|
||||
void resizeEvent(QResizeEvent *e);
|
||||
@@ -158,9 +155,6 @@ class MainWidget : public RDMainWindow
|
||||
QDateTime air_startup_datetime;
|
||||
QPixmap *air_refresh_pixmap;
|
||||
QString air_editor_cmd;
|
||||
int keystrokecount;
|
||||
bool AltKeyHit ;
|
||||
bool CtrlKeyHit;
|
||||
QFont air_message_fonts[AIR_MESSAGE_FONT_QUANTITY];
|
||||
QFontMetrics *air_message_metrics[AIR_MESSAGE_FONT_QUANTITY];
|
||||
int air_audio_channels[RDAirPlayConf::LastChannel];
|
||||
@@ -177,8 +171,6 @@ class MainWidget : public RDMainWindow
|
||||
RDEmptyCart *air_empty_cart;
|
||||
RDCartDialog *air_cart_dialog;
|
||||
RDEventPlayer *air_event_player;
|
||||
RDHotKeyList *air_keylist;
|
||||
RDHotkeys *air_hotkeys;
|
||||
TopStrip *air_top_strip;
|
||||
QLabel *air_bug_label;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user