mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-07 01:13:50 +02:00
* Added a 'SERVICES.SUB_EVENT_INHERITANCE' field to the database. * Incremented the database version to 339. * Added 'RDSvc::subEventInheritance()' and 'RDSvc::setSubEventInheritance()' methods. * Added an 'Inline Traffic Inheritance' control to the 'Edit Service' dialog in rdadmin(1). Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
99 lines
2.7 KiB
C++
99 lines
2.7 KiB
C++
// edit_svc.h
|
|
//
|
|
// Edit a Rivendell Service
|
|
//
|
|
// (C) Copyright 2002-2019 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.
|
|
//
|
|
|
|
#ifndef EDIT_SVC_H
|
|
#define EDIT_SVC_H
|
|
|
|
#include <qcheckbox.h>
|
|
#include <qcombobox.h>
|
|
#include <qlabel.h>
|
|
#include <qlineedit.h>
|
|
#include <qspinbox.h>
|
|
|
|
#include <rddialog.h>
|
|
#include <rdsvc.h>
|
|
|
|
#include "importfields.h"
|
|
|
|
class EditSvc : public RDDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
EditSvc(QString svc,QWidget *parent=0);
|
|
~EditSvc();
|
|
QSize sizeHint() const;
|
|
QSizePolicy sizePolicy() const;
|
|
|
|
private slots:
|
|
void autofillData();
|
|
void enableHostsData();
|
|
void trafficData();
|
|
void trafficCopyData();
|
|
void musicData();
|
|
void musicCopyData();
|
|
void textChangedData(const QString &);
|
|
void tfcTemplateActivatedData(int index);
|
|
void musTemplateActivatedData(int index);
|
|
void okData();
|
|
void cancelData();
|
|
|
|
private:
|
|
void TestDataImport(RDSvc::ImportSource src);
|
|
void Save();
|
|
RDSvc *svc_svc;
|
|
QLineEdit *svc_name_edit;
|
|
QLineEdit *svc_description_edit;
|
|
QLineEdit *svc_program_code_edit;
|
|
QLineEdit *svc_name_template_edit;
|
|
QLineEdit *svc_description_template_edit;
|
|
QComboBox *svc_voice_group_box;
|
|
QComboBox *svc_autospot_group_box;
|
|
QLineEdit *svc_tfc_path_edit;
|
|
QLineEdit *svc_tfc_preimport_cmd_edit;
|
|
QComboBox *svc_tfc_import_template_box;
|
|
QLineEdit *svc_tfc_label_cart_edit;
|
|
QLineEdit *svc_tfc_track_edit;
|
|
ImportFields *svc_tfc_fields;
|
|
ImportFields *svc_mus_fields;
|
|
QLineEdit *svc_mus_path_edit;
|
|
QLineEdit *svc_mus_preimport_cmd_edit;
|
|
QComboBox *svc_mus_import_template_box;
|
|
QLineEdit *svc_mus_label_cart_edit;
|
|
QLineEdit *svc_mus_break_edit;
|
|
QLineEdit *svc_mus_track_edit;
|
|
QComboBox *svc_sub_event_inheritance_box;
|
|
QCheckBox *svc_chain_box;
|
|
QCheckBox *svc_autorefresh_box;
|
|
QCheckBox *svc_loglife_box;
|
|
QSpinBox *svc_loglife_spin;
|
|
QLabel *svc_loglifeorigin_label;
|
|
QComboBox *svc_loglifeorigin_box;
|
|
QCheckBox *svc_shelflife_box;
|
|
QSpinBox *svc_shelflife_spin;
|
|
QCheckBox *svc_import_markers_check;
|
|
QPushButton *svc_tfc_copy_button;
|
|
QPushButton *svc_mus_copy_button;
|
|
bool import_changed;
|
|
};
|
|
|
|
|
|
#endif
|
|
|