mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-11 00:53:53 +02:00
2021-03-08 Fred Gleason <fredg@paravelsystems.com>
* Removed Qt3-style accelerators from rdadmin(1). * Removed Qt3-style accelerators from rdairplay(1). * Removed Qt3-style accelerators from rdcastmanager(1). * Removed Qt3-style accelerators from rdcatch(1). * Removed Qt3-style accelerators from rdlibrary(1). * Removed Qt3-style accelerators from rdlogedit(1). * Removed Qt3-style accelerators from rdlogin(1). * Removed Qt3-style accelerators from rdlogmanager(1). * Removed Qt3-style accelerators from rdselect(1). * Removed Qt3-style accelerators from rddbconfig(8). Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -58,7 +58,7 @@ AddRecording::AddRecording(QString *filter,QWidget *parent)
|
||||
QPushButton *button=new QPushButton(this);
|
||||
button->setGeometry(10,30,sizeHint().width()-20,50);
|
||||
button->setFont(buttonFont());
|
||||
button->setText(tr("&Recording"));
|
||||
button->setText(tr("Recording"));
|
||||
button->setDisabled(true);
|
||||
QString sql=QString("select CHANNEL from DECKS \
|
||||
where (CARD_NUMBER>=0)&&(CHANNEL>0)&&(CHANNEL<=9)");
|
||||
@@ -75,7 +75,7 @@ AddRecording::AddRecording(QString *filter,QWidget *parent)
|
||||
button=new QPushButton(this);
|
||||
button->setGeometry(10,80,sizeHint().width()-20,50);
|
||||
button->setFont(buttonFont());
|
||||
button->setText(tr("&Playout"));
|
||||
button->setText(tr("Playout"));
|
||||
button->setDisabled(true);
|
||||
sql=QString("select CHANNEL from DECKS where (CARD_NUMBER>=0)&&")+
|
||||
"(PORT_NUMBER>=0)&&(CHANNEL>128)&&(CHANNEL<=137)";
|
||||
@@ -92,7 +92,7 @@ AddRecording::AddRecording(QString *filter,QWidget *parent)
|
||||
button=new QPushButton(this);
|
||||
button->setGeometry(10,130,sizeHint().width()-20,50);
|
||||
button->setFont(buttonFont());
|
||||
button->setText(tr("&Download"));
|
||||
button->setText(tr("Download"));
|
||||
connect(button,SIGNAL(clicked()),this,SLOT(downloadData()));
|
||||
|
||||
//
|
||||
@@ -101,7 +101,7 @@ AddRecording::AddRecording(QString *filter,QWidget *parent)
|
||||
button=new QPushButton(this);
|
||||
button->setGeometry(10,180,sizeHint().width()-20,50);
|
||||
button->setFont(buttonFont());
|
||||
button->setText(tr("&Upload"));
|
||||
button->setText(tr("Upload"));
|
||||
connect(button,SIGNAL(clicked()),this,SLOT(uploadData()));
|
||||
|
||||
//
|
||||
@@ -110,7 +110,7 @@ AddRecording::AddRecording(QString *filter,QWidget *parent)
|
||||
button=new QPushButton(this);
|
||||
button->setGeometry(10,230,sizeHint().width()-20,50);
|
||||
button->setFont(buttonFont());
|
||||
button->setText(tr("&Macro Cart"));
|
||||
button->setText(tr("Macro Cart"));
|
||||
connect(button,SIGNAL(clicked()),this,SLOT(macroData()));
|
||||
|
||||
//
|
||||
@@ -119,7 +119,7 @@ AddRecording::AddRecording(QString *filter,QWidget *parent)
|
||||
button=new QPushButton(this);
|
||||
button->setGeometry(10,280,sizeHint().width()-20,50);
|
||||
button->setFont(buttonFont());
|
||||
button->setText(tr("&Switch Event"));
|
||||
button->setText(tr("Switch Event"));
|
||||
connect(button,SIGNAL(clicked()),this,SLOT(switchData()));
|
||||
|
||||
//
|
||||
@@ -128,7 +128,7 @@ AddRecording::AddRecording(QString *filter,QWidget *parent)
|
||||
button=new QPushButton(this);
|
||||
button->setGeometry(10,350,sizeHint().width()-20,50);
|
||||
button->setFont(buttonFont());
|
||||
button->setText(tr("&Cancel"));
|
||||
button->setText(tr("Cancel"));
|
||||
button->setDefault(true);
|
||||
connect(button,SIGNAL(clicked()),this,SLOT(cancelData()));
|
||||
}
|
||||
|
Reference in New Issue
Block a user