mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-20 23:03:04 +02:00
* 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>
145 lines
3.4 KiB
C++
145 lines
3.4 KiB
C++
// add_schedcodes.cpp
|
|
//
|
|
// Add scheduler codes dialog
|
|
//
|
|
// (C) Copyright 2005-2018 Stefan Gabriel <stg@st-gabriel.de>
|
|
// (C) Copyright 2018-2021 Fred Gleason <fredg@paravelsystems.com>
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License version 2 as
|
|
// published by the Free Software Foundation.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public
|
|
// License along with this program; if not, write to the Free Software
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
//
|
|
|
|
#include <QMessageBox>
|
|
#include <QPushButton>
|
|
|
|
#include <rddb.h>
|
|
#include <rdescape_string.h>
|
|
|
|
#include "edit_schedcodes.h"
|
|
#include "add_schedcodes.h"
|
|
|
|
AddSchedCode::AddSchedCode(QWidget *parent)
|
|
: RDDialog(parent)
|
|
{
|
|
//
|
|
// Fix the Window Size
|
|
//
|
|
setMinimumSize(sizeHint());
|
|
setMaximumSize(sizeHint());
|
|
|
|
setWindowTitle("RDAdmin - "+tr("Add Scheduler Code"));
|
|
|
|
//
|
|
// Code Name
|
|
//
|
|
d_code_edit=new QLineEdit(this);
|
|
d_code_edit->setGeometry(105,11,sizeHint().width()-150,19);
|
|
d_code_edit->setMaxLength(10);
|
|
QLabel *label=new QLabel(tr("New Code:"),this);
|
|
label->setGeometry(10,11,90,19);
|
|
label->setFont(labelFont());
|
|
label->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
|
|
|
|
//
|
|
// Ok Button
|
|
//
|
|
QPushButton *ok_button=new QPushButton(this);
|
|
ok_button->setGeometry(sizeHint().width()-180,sizeHint().height()-60,80,50);
|
|
ok_button->setDefault(true);
|
|
ok_button->setFont(buttonFont());
|
|
ok_button->setText(tr("OK"));
|
|
connect(ok_button,SIGNAL(clicked()),this,SLOT(okData()));
|
|
|
|
//
|
|
// Cancel Button
|
|
//
|
|
QPushButton *cancel_button=new QPushButton(this);
|
|
cancel_button->
|
|
setGeometry(sizeHint().width()-90,sizeHint().height()-60,80,50);
|
|
cancel_button->setFont(buttonFont());
|
|
cancel_button->setText(tr("Cancel"));
|
|
connect(cancel_button,SIGNAL(clicked()),this,SLOT(cancelData()));
|
|
}
|
|
|
|
|
|
AddSchedCode::~AddSchedCode()
|
|
{
|
|
delete d_code_edit;
|
|
}
|
|
|
|
|
|
QSize AddSchedCode::sizeHint() const
|
|
{
|
|
return QSize(250,120);
|
|
}
|
|
|
|
|
|
QSizePolicy AddSchedCode::sizePolicy() const
|
|
{
|
|
return QSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
|
|
}
|
|
|
|
|
|
int AddSchedCode::exec(QString *scode)
|
|
{
|
|
d_sched_code=scode;
|
|
|
|
d_code_edit->setText("");
|
|
|
|
return QDialog::exec();
|
|
}
|
|
|
|
|
|
void AddSchedCode::okData()
|
|
{
|
|
if(d_code_edit->text().isEmpty()) {
|
|
QMessageBox::warning(this,"RDAdmin - "+tr("Error"),
|
|
tr("Invalid Schedule Code!"));
|
|
return;
|
|
}
|
|
|
|
QString sql=QString("insert into SCHED_CODES set ")+
|
|
"CODE=\""+RDEscapeString(d_code_edit->text())+"\"";
|
|
if(!RDSqlQuery::apply(sql)) {
|
|
QMessageBox::warning(this,"RDAdmin - "+tr("Error"),
|
|
tr("Schedule Code Already Exists!"));
|
|
return;
|
|
}
|
|
|
|
//
|
|
// Add schedcode rules
|
|
//
|
|
sql=QString("select ")+
|
|
"NAME " // 00
|
|
"from CLOCKS "+
|
|
"order by NAME";
|
|
RDSqlQuery *q=new RDSqlQuery(sql);
|
|
while(q->next()) {
|
|
sql=QString("insert into RULE_LINES set ")+
|
|
"CLOCK_NAME=\""+RDEscapeString(q->value(0).toString())+"\","+
|
|
"CODE=\""+RDEscapeString(d_code_edit->text())+"\"";
|
|
RDSqlQuery::apply(sql);
|
|
}
|
|
delete q;
|
|
|
|
*d_sched_code=d_code_edit->text();
|
|
|
|
done(true);
|
|
}
|
|
|
|
|
|
void AddSchedCode::cancelData()
|
|
{
|
|
done(false);
|
|
}
|