2018-05-16 Fred Gleason <fredg@paravelsystems.com>

* Added virtual logs to the 'Start/Stop Settings' section of
	the 'Configure RDAirPlay' dialog in rdadmin(1).
This commit is contained in:
Fred Gleason
2018-05-16 19:06:15 +00:00
parent 17d4817045
commit fd7b71f345
5 changed files with 66 additions and 30 deletions

View File

@@ -119,13 +119,16 @@ class EditRDAirPlay : public QDialog
int air_logmachine;
QComboBox *air_logmachine_box;
QComboBox *air_startmode_box;
RDAirPlayConf::StartMode air_startmode[RDAIRPLAY_LOG_QUANTITY];
// RDAirPlayConf::StartMode air_startmode[RDAIRPLAY_LOG_QUANTITY];
QMap<int,RDAirPlayConf::StartMode> air_startmodes;
QLineEdit *air_startlog_edit;
QLabel *air_startlog_label;
QPushButton *air_startlog_button;
QString air_startlog[RDAIRPLAY_LOG_QUANTITY];
// QString air_startlog[RDAIRPLAY_LOG_QUANTITY];
QMap<int,QString> air_startlogs;
QCheckBox *air_autorestart_box;
bool air_autorestart[RDAIRPLAY_LOG_QUANTITY];
// bool air_autorestart[RDAIRPLAY_LOG_QUANTITY];
QMap<int,bool> air_autorestarts;
QLabel *air_autorestart_label;
QLineEdit *air_skin_edit;
QLineEdit *air_title_template_edit;