Rivendellaudio/rdadmin/edit_rdpanel.h
Fred Gleason 89a0d72439 2021-02-23 Fred Gleason <fredg@paravelsystems.com>
* Removed the Qt3Support library from the build system.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
2021-02-23 18:07:21 -05:00

79 lines
2.0 KiB
C++

// edit_rdpanel.h
//
// Edit an RDPanel Configuration
//
// (C) Copyright 2002-2021 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_RDPANEL_H
#define EDIT_RDPANEL_H
#include <QCheckBox>
#include <QComboBox>
#include <QLabel>
#include <QLineEdit>
#include <QSpinBox>
#include <rd.h>
#include <rdairplay_conf.h>
#include <rdcardselector.h>
#include <rdcombobox.h>
#include <rddialog.h>
#include <rdservicelistmodel.h>
#include <rdstation.h>
/*
* Application Settings
*/
#define LOG_PLAY_PORTS 2
#define MAX_MANUAL_SEGUE 10
class EditRDPanel : public RDDialog
{
Q_OBJECT
public:
EditRDPanel(RDStation *station,RDStation *cae_station,QWidget *parent=0);
~EditRDPanel();
QSize sizeHint() const;
QSizePolicy sizePolicy() const;
private slots:
void selectSkinData();
void okData();
void cancelData();
private:
RDAirPlayConf *air_conf;
RDCardSelector *air_card_sel[6];
QLineEdit *air_start_rml_edit[6];
QLineEdit *air_stop_rml_edit[6];
QLabel *air_station_label;
QSpinBox *air_station_box;
QLabel *air_user_label;
QSpinBox *air_user_box;
QCheckBox *air_clearfilter_box;
QCheckBox *air_flash_box;
QCheckBox *air_panel_pause_box;
QLineEdit *air_label_template_edit;
RDComboBox *air_defaultsvc_box;
QLineEdit *air_skin_edit;
RDServiceListModel *air_service_model;
};
#endif // EDIT_RDPANEL_H