mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-07 09:23:22 +02:00
* Added an 'RDDialog' class. * Added an 'RDWidget' class. * Refactored rdadmin(1) to use 'RDDialog' and 'RDWidget' base classes.
81 lines
2.1 KiB
C++
81 lines
2.1 KiB
C++
// edit_audios.h
|
|
//
|
|
// Edit a Rivendell Audio Port Configuration
|
|
//
|
|
// (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_AUDIOS_H
|
|
#define EDIT_AUDIOS_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 <rddialog.h>
|
|
#include <rdstation.h>
|
|
|
|
#include "help_audios.h"
|
|
|
|
class EditAudioPorts : public RDDialog
|
|
{
|
|
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
|
|
|