mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-11-25 14:50:11 +01:00
Initial import of CVS-v2_8_branch
This commit is contained in:
299
rdlogmanager/edit_schedrules.cpp
Normal file
299
rdlogmanager/edit_schedrules.cpp
Normal file
@@ -0,0 +1,299 @@
|
||||
// edit_schedrules.cpp
|
||||
//
|
||||
// Edit scheduler rules of a clock
|
||||
//
|
||||
// Stefan Gabriel <stg@st-gabriel.de>
|
||||
//
|
||||
//
|
||||
//
|
||||
// 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 <qdialog.h>
|
||||
#include <qstring.h>
|
||||
#include <qtextedit.h>
|
||||
#include <qpainter.h>
|
||||
#include <qmessagebox.h>
|
||||
|
||||
#include <qspinbox.h>
|
||||
#include <qcombobox.h>
|
||||
|
||||
#include <rd.h>
|
||||
#include <rddb.h>
|
||||
#include <edit_schedrules.h>
|
||||
#include <edit_schedcoderules.h>
|
||||
#include <schedruleslist.h>
|
||||
#include <list_clocks.h>
|
||||
|
||||
|
||||
EditSchedRules::EditSchedRules(QString clock,unsigned *artistsep,SchedRulesList *schedruleslist,bool *rules_modified,QWidget *parent,const char *name)
|
||||
: QDialog(parent,name,true)
|
||||
{
|
||||
edit_artistsep=artistsep;
|
||||
edit_rules_modified=rules_modified;
|
||||
sched_rules_list = schedruleslist;
|
||||
clockname = clock;
|
||||
|
||||
|
||||
|
||||
//
|
||||
// Fix the Window Size
|
||||
//
|
||||
setMinimumWidth(sizeHint().width());
|
||||
setMaximumWidth(sizeHint().width());
|
||||
setMinimumHeight(sizeHint().height());
|
||||
setMaximumHeight(sizeHint().height());
|
||||
|
||||
setCaption(tr("Scheduler Rules"));
|
||||
|
||||
//
|
||||
// Create Fonts
|
||||
//
|
||||
QFont font=QFont("Helvetica",12,QFont::Bold);
|
||||
font.setPixelSize(12);
|
||||
|
||||
artistSepLabel = new QLabel( this, "artistSepLabel" );
|
||||
artistSepLabel->setGeometry( QRect( 10, 10, 130, 20 ) );
|
||||
artistSepLabel->setFont(font);
|
||||
artistSepLabel->setText(tr("Artist Separation:"));
|
||||
|
||||
artistSepSpinBox = new QSpinBox( this, "artistSepSpinBox" );
|
||||
artistSepSpinBox->setGeometry( QRect( 160, 10, 70, 20 ) );
|
||||
artistSepSpinBox->setMaxValue( 10000 );
|
||||
artistSepSpinBox->setValue( *edit_artistsep );
|
||||
|
||||
|
||||
//
|
||||
// Edit Button
|
||||
//
|
||||
QPushButton *list_edit_button=new QPushButton(this,"list_edit_button");
|
||||
list_edit_button->setGeometry(10,sizeHint().height()-60,80,50);
|
||||
list_edit_button->setFont(font);
|
||||
list_edit_button->setText(tr("&Edit"));
|
||||
connect(list_edit_button,SIGNAL(clicked()),this,SLOT(editData()));
|
||||
|
||||
//
|
||||
// Import Button
|
||||
//
|
||||
QPushButton *list_import_button=new QPushButton(this,"list_import_button");
|
||||
list_import_button->setGeometry(100,sizeHint().height()-60,80,50);
|
||||
list_import_button->setFont(font);
|
||||
list_import_button->setText(tr("&Import"));
|
||||
connect(list_import_button,SIGNAL(clicked()),this,SLOT(importData()));
|
||||
|
||||
// Ok Button
|
||||
//
|
||||
QPushButton *ok_button=new QPushButton(this,"ok_button");
|
||||
ok_button->setGeometry(sizeHint().width()-180,sizeHint().height()-60,80,50);
|
||||
ok_button->setDefault(true);
|
||||
ok_button->setFont(font);
|
||||
ok_button->setText(tr("&OK"));
|
||||
connect(ok_button,SIGNAL(clicked()),this,SLOT(okData()));
|
||||
|
||||
//
|
||||
// Cancel Button
|
||||
//
|
||||
QPushButton *cancel_button=new QPushButton(this,"cancel_button");
|
||||
cancel_button->setGeometry(sizeHint().width()-90,sizeHint().height()-60,
|
||||
80,50);
|
||||
cancel_button->setFont(font);
|
||||
cancel_button->setText(tr("&Cancel"));
|
||||
connect(cancel_button,SIGNAL(clicked()),this,SLOT(cancelData()));
|
||||
|
||||
|
||||
// List
|
||||
list_schedCodes_view=new QListView(this,"list_schedCodes_view");
|
||||
list_schedCodes_view->setGeometry(10,60,size().width()-20,size().height()-140);
|
||||
list_schedCodes_view->setAllColumnsShowFocus(true);
|
||||
list_schedCodes_view->addColumn(tr("CODE"));
|
||||
list_schedCodes_view->addColumn(tr("MAX. IN A ROW"));
|
||||
list_schedCodes_view->addColumn(tr("MIN. WAIT"));
|
||||
list_schedCodes_view->addColumn(tr("DO NOT SCHEDULE AFTER"));
|
||||
list_schedCodes_view->addColumn(tr("OR AFTER"));
|
||||
list_schedCodes_view->addColumn(tr("OR AFTER"));
|
||||
list_schedCodes_view->addColumn(tr("DESCRIPTION"));
|
||||
|
||||
QLabel *list_box_label=new QLabel(list_schedCodes_view,tr("Scheduler Codes:"),this,"list_box_label");
|
||||
list_box_label->setFont(font);
|
||||
list_box_label->setGeometry(10,40,200,20);
|
||||
connect(list_schedCodes_view,
|
||||
SIGNAL(doubleClicked(QListViewItem *,const QPoint &,int)),
|
||||
this,
|
||||
SLOT(doubleClickedData(QListViewItem *,const QPoint &,int)));
|
||||
|
||||
edit_modified=false;
|
||||
Load();
|
||||
}
|
||||
|
||||
|
||||
EditSchedRules::~EditSchedRules()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
QSize EditSchedRules::sizeHint() const
|
||||
{
|
||||
return QSize(650,450);
|
||||
}
|
||||
|
||||
|
||||
QSizePolicy EditSchedRules::sizePolicy() const
|
||||
{
|
||||
return QSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
|
||||
}
|
||||
|
||||
void EditSchedRules::Load()
|
||||
{
|
||||
QString str;
|
||||
QListViewItem *item;
|
||||
|
||||
list_schedCodes_view->clear();
|
||||
for (int i=0; i<sched_rules_list->getNumberOfItems(); i++)
|
||||
{
|
||||
item=new QListViewItem(list_schedCodes_view);
|
||||
item->setText(0,sched_rules_list->getItemSchedCode(i));
|
||||
str=QString().sprintf("%d",sched_rules_list->getItemMaxRow(i));
|
||||
item->setText(1,str);
|
||||
str=QString().sprintf("%d",sched_rules_list->getItemMinWait(i));
|
||||
item->setText(2,str);
|
||||
item->setText(3,sched_rules_list->getItemNotAfter(i));
|
||||
item->setText(4,sched_rules_list->getItemOrAfter(i));
|
||||
item->setText(5,sched_rules_list->getItemOrAfterII(i));
|
||||
item->setText(6,sched_rules_list->getItemDescription(i));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void EditSchedRules::Close()
|
||||
{
|
||||
QListViewItem *item;
|
||||
int number_of_items;
|
||||
|
||||
number_of_items = list_schedCodes_view->childCount();
|
||||
|
||||
*edit_rules_modified=true;
|
||||
|
||||
for (int i=0; i< number_of_items; i++)
|
||||
{
|
||||
item=list_schedCodes_view->firstChild();
|
||||
sched_rules_list->insertItem(i,item->text(1).toInt(),item->text(2).toInt(),item->text(3),item->text(4),item->text(5));
|
||||
list_schedCodes_view->takeItem(item);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void EditSchedRules::editData()
|
||||
{
|
||||
QListViewItem *item=list_schedCodes_view->selectedItem();
|
||||
if(item==NULL) {
|
||||
return;
|
||||
}
|
||||
editSchedCodeRules *edit_CodeRules=new editSchedCodeRules(item,sched_rules_list,this,"edit_CodeRules");
|
||||
if(edit_CodeRules->exec()>=0)
|
||||
{
|
||||
edit_modified=true;
|
||||
}
|
||||
delete edit_CodeRules;
|
||||
edit_CodeRules=NULL;
|
||||
}
|
||||
|
||||
|
||||
void EditSchedRules::importData()
|
||||
{
|
||||
QString clockname = "";
|
||||
QString str;
|
||||
QListViewItem *item;
|
||||
QString sql;
|
||||
RDSqlQuery *q;
|
||||
|
||||
ListClocks *listclocks=new ListClocks(&clockname,this,"listclocks");
|
||||
listclocks->setCaption(tr("Import Rules from Clock"));
|
||||
if(listclocks->exec()<0) {
|
||||
delete listclocks;
|
||||
return;
|
||||
}
|
||||
delete listclocks;
|
||||
SchedRulesList *import_list=new SchedRulesList(clockname);
|
||||
|
||||
list_schedCodes_view->clear();
|
||||
for (int i=0; i<import_list->getNumberOfItems(); i++)
|
||||
{
|
||||
item=new QListViewItem(list_schedCodes_view);
|
||||
item->setText(0,import_list->getItemSchedCode(i));
|
||||
str=QString().sprintf("%d",import_list->getItemMaxRow(i));
|
||||
item->setText(1,str);
|
||||
str=QString().sprintf("%d",import_list->getItemMinWait(i));
|
||||
item->setText(2,str);
|
||||
item->setText(3,import_list->getItemNotAfter(i));
|
||||
item->setText(4,import_list->getItemOrAfter(i));
|
||||
item->setText(5,import_list->getItemOrAfterII(i));
|
||||
item->setText(6,import_list->getItemDescription(i));
|
||||
}
|
||||
delete import_list;
|
||||
|
||||
sql=QString().sprintf("select ARTISTSEP from CLOCKS where NAME=\"%s\"",(const char *)clockname);
|
||||
q=new RDSqlQuery(sql);
|
||||
if (q->first())
|
||||
{
|
||||
*edit_artistsep = q->value(0).toUInt();
|
||||
artistSepSpinBox->setValue( *edit_artistsep );
|
||||
}
|
||||
delete q;
|
||||
edit_modified=true;
|
||||
}
|
||||
|
||||
|
||||
void EditSchedRules::doubleClickedData(QListViewItem *item,const QPoint &pt,int col)
|
||||
{
|
||||
editData();
|
||||
}
|
||||
|
||||
|
||||
|
||||
void EditSchedRules::okData()
|
||||
{
|
||||
*edit_artistsep = artistSepSpinBox->value();
|
||||
Close();
|
||||
done(0);
|
||||
}
|
||||
|
||||
|
||||
void EditSchedRules::cancelData()
|
||||
{
|
||||
if(edit_modified) {
|
||||
switch(QMessageBox::question(this,tr("Rules Modified"),
|
||||
tr("The rules have been modified.\nDo you want to save?"),QMessageBox::Yes,QMessageBox::No,QMessageBox::Cancel)) {
|
||||
case QMessageBox::Yes:
|
||||
Close();
|
||||
done(0);
|
||||
break;
|
||||
|
||||
case QMessageBox::No:
|
||||
done(-1);
|
||||
break;
|
||||
|
||||
case QMessageBox::NoButton:
|
||||
return;
|
||||
}
|
||||
}
|
||||
else {
|
||||
done(-1);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void EditSchedRules::closeEvent(QCloseEvent *e)
|
||||
{
|
||||
cancelData();
|
||||
}
|
||||
Reference in New Issue
Block a user