Rivendellaudio/rdadmin/edit_audios.h
Fred Gleason 94119b27d7 2018-05-21 Fred Gleason <fredg@paravelsystems.com>
* Added an 'AUDIO_CARDS' table to the database.
	* Dropped the 'STATIONS.CARD<n>_DRIVER', 'STATIONS.CARD<n>NAME',
	'STATIONS.CARD<n>_INPUTS' and 'STATIONS.CARD<n>OUTPUTS' fields
	from the database.
	* Incremented the database version to 282.
	* Added an 'AUDIO_CARDS.CLOCK_SOURCE' field to the database.
	* Added an 'AUDIO_INPUTS' table to the database.
	* Added an 'AUDIO_OUTPUTS' table to the database.
	* Dropped the 'AUDIO_PORTS' table from the database.
	* Incremented the database version to 283.
	* Changed the legend on the 'Audio Ports' button to 'ASI Audio Ports'
	on the 'Edit Host' dialog in rdadmin(1).
	* Changed the title of the 'Configure Audio Ports' dialog to
	'Configure AudioScience Audio Ports' on the 'Edit Host' dialog
	in rdadmin(1).
2018-05-21 16:00:59 +00:00

81 lines
2.1 KiB
C++

// edit_audios.h
//
// Edit a Rivendell Audio Port Configuration
//
// (C) Copyright 2002-2003,2016-2018 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_AUDIOS_H
#define EDIT_AUDIOS_H
#include <qdialog.h>
#include <qsqldatabase.h>
#include <qcombobox.h>
#include <qradiobutton.h>
#include <qspinbox.h>
#include <qlabel.h>
#include <qlineedit.h>
#include <rd.h>
#include <rdaudio_port.h>
#include <help_audios.h>
#include <rdstation.h>
class EditAudioPorts : public QDialog
{
Q_OBJECT
public:
EditAudioPorts(QString station,QWidget *parent=0);
~EditAudioPorts();
QSize sizeHint() const;
QSizePolicy sizePolicy() const;
private slots:
void cardSelectedData(int);
void inputMapData(int);
void helpData();
void closeData();
protected:
void resizeEvent(QResizeEvent *e);
private:
void ReadRecord(int card);
void WriteRecord();
void SetEnable(bool state);
int edit_card_num;
RDAudioPort *edit_card;
RDStation *rdstation;
QString edit_station;
QComboBox *edit_card_box;
QLineEdit *card_driver_edit;
QComboBox *edit_clock_box;
QLabel *edit_clock_label;
QComboBox *edit_type_box[RD_MAX_PORTS];
QLabel *edit_type_label[RD_MAX_PORTS];
QComboBox *edit_mode_box[RD_MAX_PORTS];
QLabel *edit_mode_label[RD_MAX_PORTS];
QSpinBox *edit_input_box[RD_MAX_PORTS];
QLabel *edit_input_label[RD_MAX_PORTS];
QSpinBox *edit_output_box[RD_MAX_PORTS];
QLabel *edit_output_label[RD_MAX_PORTS];
};
#endif // EDIT_AUDIO_H