mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-07 01:13:50 +02:00
* Added a 'DROPBOXES.SEND_EMAIL' field to the database. * Incremented the database version to 345. * Added 'RDDropbox::sendEmail()' and 'RDDropbox::setSendEmail()' methods. * Added a 'Send e-mail reports' checkbox to the 'Dropbox Configuration' dialog in rdadmin(1). Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
94 lines
3.0 KiB
C++
94 lines
3.0 KiB
C++
// rddropbox.h
|
|
//
|
|
// Abstract a Rivendell Dropbox Configuration
|
|
//
|
|
// (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 <qsqldatabase.h>
|
|
|
|
|
|
#ifndef RDDROPBOX_H
|
|
#define RDDROPBOX_H
|
|
|
|
class RDDropbox
|
|
{
|
|
public:
|
|
RDDropbox(int id,const QString &stationname="");
|
|
int id() const;
|
|
int duplicate() const;
|
|
QString stationName() const;
|
|
void setStationName(const QString &name) const;
|
|
QString groupName() const;
|
|
void setGroupName(const QString &name) const;
|
|
QString path() const;
|
|
void setPath(const QString &path) const;
|
|
int normalizationLevel() const;
|
|
void setNormalizationLevel(int lvl) const;
|
|
int autotrimLevel() const;
|
|
void setAutotrimLevel(int lvl) const;
|
|
bool singleCart() const;
|
|
void setSingleCart(bool state) const;
|
|
bool forceToMono() const;
|
|
void setForceToMono(bool state) const;
|
|
unsigned toCart() const;
|
|
void setToCart(unsigned cart) const;
|
|
bool useCartchunkId() const;
|
|
void setUseCartchunkId(bool state) const;
|
|
bool titleFromCartchunkId() const;
|
|
void setTitleFromCartchunkId(bool state) const;
|
|
bool deleteCuts() const;
|
|
void setDeleteCuts(bool state) const;
|
|
bool deleteSource() const;
|
|
void setDeleteSource(bool state) const;
|
|
bool sendEmail() const;
|
|
void setSendEmail(bool state) const;
|
|
QString metadataPattern() const;
|
|
void setMetadataPattern(const QString &str) const;
|
|
QString userDefined() const;
|
|
void setUserDefined(const QString &str) const;
|
|
int startdateOffset() const;
|
|
void setStartdateOffset(int offset) const;
|
|
int enddateOffset() const;
|
|
void setEnddateOffset(int offset) const;
|
|
bool fixBrokenFormats() const;
|
|
void setFixBrokenFormats(bool state) const;
|
|
bool logToSyslog() const;
|
|
void setLogToSyslog(bool state) const;
|
|
QString logPath() const;
|
|
void setLogPath(const QString &path) const;
|
|
bool createDates() const;
|
|
void setCreateDates(bool state) const;
|
|
int createStartdateOffset() const;
|
|
void setCreateStartdateOffset(int offset) const;
|
|
int createEnddateOffset() const;
|
|
void setCreateEnddateOffset(int offset) const;
|
|
int segueLevel() const;
|
|
void setSegueLevel(int level) const;
|
|
int segueLength() const;
|
|
void setSegueLength(int length) const;
|
|
|
|
private:
|
|
void SetRow(const QString ¶m,int value) const;
|
|
void SetRow(const QString ¶m,unsigned value) const;
|
|
void SetRow(const QString ¶m,const QString &value) const;
|
|
void SetRow(const QString ¶m,bool value) const;
|
|
int box_id;
|
|
};
|
|
|
|
|
|
#endif // RDDROPBOX_H
|