Rivendellaudio/rdadmin/edit_svc.h
Fred Gleason 98957e1d62 2022-10-18 Fred Gleason <fredg@paravelsystems.com>
* Added values for the `IMPORTER_TEMPLATES.TRANS_TYPE_*` and
	`TIMPORTER_TEMPLATES.TIME_TYPE_*` parser settings for the
	'Rivendell Standard Import' profile.
	* Incremented the database version to 364.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
2022-10-18 16:08:47 -04:00

104 lines
2.9 KiB
C++

// edit_svc.h
//
// Edit a Rivendell Service
//
// (C) Copyright 2002-2022 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>
#include <QComboBox>
#include <QLabel>
#include <QLineEdit>
#include <QSpinBox>
#include <rddialog.h>
#include <rdsvc.h>
#include "importfields.h"
#include "test_import.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 bypassModeChangedData(int n);
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_bypass_box;
QLabel *svc_sub_event_inheritance_label;
QComboBox *svc_sub_event_inheritance_box;
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;
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_mus_import_markers_check;
QCheckBox *svc_tfc_import_markers_check;
QPushButton *svc_tfc_copy_button;
QPushButton *svc_mus_copy_button;
bool import_changed;
TestImport *svc_test_import_dialog;
};
#endif // EDIT_SVC_H