Rivendellaudio/lib/rdevent.cpp
Fred Gleason 8637def359 2020-04-18 Fred Gleason <fredg@paravelsystems.com>
* Removed the 'EVENTS.PROPERTIES' field from the database.
	* Incremented the database version to 316.
	* Removed the 'RDEventLine::properties()' and
	'RDEventLine::setProperties()' methods.
	* Added 'RDEventLine::propertiesText()' methods.
	* Added a 'Trans' column to the event list in the 'Edit Clock'
	dialog in rdlogmanager(1).
	* Added a 'Trans' column to the event list in the 'List Events'
	dialog in rdlogmanager(1).

Signed-off-by: Fred Gleason <fredg@paraelsystems.com>
2020-04-18 10:09:20 -04:00

399 lines
6.7 KiB
C++

// rdevent.cpp
//
// Abstract a Rivendell Log Manager Event.
//
// (C) Copyright 2002-2020 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 <rddb.h>
#include <rdconf.h>
#include <rdevent.h>
#include <rdescape_string.h>
//
// Global Classes
//
RDEvent::RDEvent(const QString &name,bool create)
{
RDSqlQuery *q;
QString sql;
event_name=name;
if(create) {
sql=QString("select NAME from EVENTS where ")+
"(NAME=\""+RDEscapeString(event_name)+"\")";
q=new RDSqlQuery(sql);
if(q->size()!=1) {
delete q;
sql=QString("insert into EVENTS set ")+
"NAME=\""+RDEscapeString(event_name)+"\","+
"ARTIST_SEP=15,"+
"TITLE_SEP=100";
q=new RDSqlQuery(sql);
delete q;
}
else {
delete q;
}
}
}
QString RDEvent::name() const
{
return event_name;
}
QString RDEvent::displayText(bool *ok) const
{
return GetStringValue("DISPLAY_TEXT",ok);
}
void RDEvent::setDisplayText(bool ok,const QString &text) const
{
SetRow("DISPLAY_TEXT",text,ok);
}
QString RDEvent::noteText(bool *ok) const
{
return GetStringValue("NOTE_TEXT",ok);
}
void RDEvent::setNoteText(bool ok,const QString &text) const
{
SetRow("NOTE_TEXT",text,ok);
}
int RDEvent::preposition() const
{
return GetIntValue("PREPOSITION");
}
void RDEvent::setPreposition(int offset) const
{
SetRow("PREPOSITION",offset);
}
RDLogLine::TimeType RDEvent::timeType() const
{
return (RDLogLine::TimeType)GetIntValue("TIME_TYPE");
}
void RDEvent::setTimeType(RDLogLine::TimeType type) const
{
SetRow("TIME_TYPE",(int)type);
}
int RDEvent::graceTime() const
{
return GetIntValue("GRACE_TIME");
}
void RDEvent::setGraceTime(int offset) const
{
SetRow("GRACE_TIME",offset);
}
bool RDEvent::useAutofill() const
{
bool ok;
return RDBool(GetStringValue("USE_AUTOFILL",&ok));
}
void RDEvent::setUseAutofill(bool state) const
{
SetRow("USE_AUTOFILL",RDYesNo(state),true);
}
int RDEvent::autofillSlop() const
{
return GetIntValue("AUTOFILL_SLOP");
}
void RDEvent::setAutofillSlop(int slop) const
{
SetRow("AUTOFILL_SLOP",slop);
}
bool RDEvent::useTimescale() const
{
bool ok;
return RDBool(GetStringValue("USE_TIMESCALE",&ok));
}
void RDEvent::setUseTimescale(bool state) const
{
SetRow("USE_TIMESCALE",RDYesNo(state),true);
}
RDEventLine::ImportSource RDEvent::importSource() const
{
return (RDEventLine::ImportSource)GetIntValue("IMPORT_SOURCE");
}
void RDEvent::setImportSource(RDEventLine::ImportSource src) const
{
SetRow("IMPORT_SOURCE",(int)src);
}
int RDEvent::startSlop() const
{
return GetIntValue("START_SLOP");
}
void RDEvent::setStartSlop(int slop) const
{
SetRow("START_SLOP",slop);
}
int RDEvent::endSlop() const
{
return GetIntValue("END_SLOP");
}
void RDEvent::setEndSlop(int slop) const
{
SetRow("END_SLOP",slop);
}
RDLogLine::TransType RDEvent::firstTransType() const
{
return (RDLogLine::TransType)GetIntValue("FIRST_TRANS_TYPE");
}
void RDEvent::setFirstTransType(RDLogLine::TransType trans) const
{
SetRow("FIRST_TRANS_TYPE",(int)trans);
}
RDLogLine::TransType RDEvent::defaultTransType() const
{
return (RDLogLine::TransType)GetIntValue("DEFAULT_TRANS_TYPE");
}
void RDEvent::setDefaultTransType(RDLogLine::TransType trans) const
{
SetRow("DEFAULT_TRANS_TYPE",(int)trans);
}
QColor RDEvent::color() const
{
bool ok;
QColor color;
color=QColor(GetStringValue("COLOR",&ok));
if(!ok) {
color=QColor();
}
return color;
}
void RDEvent::setColor(const QColor &color) const
{
SetRow("COLOR",color.name(),color.isValid());
}
QString RDEvent::nestedEvent() const
{
bool ok;
return GetStringValue("NESTED_EVENT",&ok);
}
void RDEvent::setNestedEvent(const QString &eventname)
{
SetRow("NESTED_EVENT",eventname,true);
}
QString RDEvent::remarks() const
{
bool ok;
return GetStringValue("REMARKS",&ok);
}
void RDEvent::setRemarks(const QString &str) const
{
SetRow("REMARKS",str,true);
}
int RDEvent::GetIntValue(const QString &field) const
{
QString sql;
RDSqlQuery *q;
int accum;
sql=QString("select ")+field+" from EVENTS where "+
"NAME=\""+RDEscapeString(event_name)+"\"";
q=new RDSqlQuery(sql);
if(q->first()) {
accum=q->value(0).toInt();
delete q;
return accum;
}
delete q;
return 0;
}
QString RDEvent::GetStringValue(const QString &field,bool *ok) const
{
QString sql;
RDSqlQuery *q;
QString accum;
sql=QString("select ")+field+" from EVENTS where "+
"NAME=\""+RDEscapeString(event_name)+"\"";
q=new RDSqlQuery(sql);
if(q->first()) {
if(q->value(0).isNull()) {
*ok=false;
}
else {
accum=q->value(0).toString();
*ok=true;
}
delete q;
return accum;
}
delete q;
return 0;
}
void RDEvent::SetRow(const QString &param,int value) const
{
RDSqlQuery *q;
QString sql;
sql=QString("update EVENTS set ")+
param+QString().sprintf("=%d where ",value)+
"NAME=\""+RDEscapeString(event_name)+"\"";
q=new RDSqlQuery(sql);
delete q;
}
void RDEvent::SetRow(const QString &param,const QString &value,bool ok) const
{
RDSqlQuery *q;
QString sql;
if(ok) {
sql=QString("update EVENTS set ")+
param+"=\""+RDEscapeString(value)+"\" where "+
"NAME=\""+RDEscapeString(event_name)+"\"";
}
else {
sql=QString("update EVENTS set ")+
param+"=NULL where "+
"NAME=\""+RDEscapeString(event_name)+"\"";
}
q=new RDSqlQuery(sql);
delete q;
}
QString RDEvent::schedGroup()
{
bool ok;
return GetStringValue("SCHED_GROUP",&ok);
}
void RDEvent::setSchedGroup(QString str)
{
SetRow("SCHED_GROUP",str,true);
}
QString RDEvent::HaveCode()
{
bool ok;
return GetStringValue("HAVE_CODE",&ok);
}
void RDEvent::setHaveCode(QString str)
{
SetRow("HAVE_CODE",str,true);
}
QString RDEvent::HaveCode2()
{
bool ok;
return GetStringValue("HAVE_CODE2",&ok);
}
void RDEvent::setHaveCode2(QString str)
{
SetRow("HAVE_CODE2",str,true);
}
int RDEvent::artistSep()
{
return GetIntValue("ARTIST_SEP");
}
void RDEvent::setArtistSep(int artistsep)
{
SetRow("ARTIST_SEP",artistsep);
}
int RDEvent::titleSep()
{
return GetIntValue("TITLE_SEP");
}
void RDEvent::setTitleSep(int titlesep)
{
SetRow("TITLE_SEP",titlesep);
}