2024-02-05 Fred Gleason <fredg@paravelsystems.com>

* Added a 'REPLICATORS.PROGRAM_CODE' field to the database.
	* Incremented the database version to 372.
	* Added 'RDReplicator::programCode()' and
	'RDReplicator::setProgramCode()' methods.
	* Added a 'Program Code' control to the 'Rivendell Replicators'
	dialog in rdadmin(1).
	* Renamed the 'Citadel X-Digital Portal' replicator to
	'X-Digital National ISCI Model'.
	* Added a 'X-Digital Cue Model' replicator.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2024-02-05 17:49:26 -05:00
parent db8883bf09
commit 887d297a19
16 changed files with 631 additions and 34 deletions

View File

@@ -2,7 +2,7 @@
//
// Edit a Rivendell Replicator
//
// (C) Copyright 2002-2019 Fred Gleason <fredg@paravelsystems.com>
// (C) Copyright 2002-2024 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
@@ -21,12 +21,12 @@
#ifndef EDIT_REPLICATOR_H
#define EDIT_REPLICATOR_H
#include <qcheckbox.h>
#include <qcombobox.h>
#include <qlabel.h>
#include <qlineedit.h>
#include <qpushbutton.h>
#include <qspinbox.h>
#include <QCheckBox>
#include <QComboBox>
#include <QLabel>
#include <QLineEdit>
#include <QPushButton>
#include <QSpinBox>
#include <rdlistselector.h>
#include <rddialog.h>
@@ -54,6 +54,7 @@ class EditReplicator : public RDDialog
RDReplicator *repl_replicator;
QLineEdit *repl_name_edit;
QLineEdit *repl_description_edit;
QLineEdit *repl_program_code_edit;
QComboBox *repl_type_box;
QComboBox *repl_station_box;
RDStationListModel *repl_station_model;