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

* Added virtual log entries to the 'LOG_MODES' table.
	* Incremented the database version to 280.
	* Added a control for setting vLog start modes to the 'Log Mode
	Control' section of the 'Configure RDAirPlay' dialog in rdadmin(1).
This commit is contained in:
Fred Gleason
2018-05-17 17:28:16 +00:00
parent 4cd5d91b10
commit f26258760d
8 changed files with 113 additions and 14 deletions

View File

@@ -57,6 +57,7 @@ class EditRDAirPlay : public QDialog
void exitPasswordChangedData(const QString &str);
void logActivatedData(int lognum);
void virtualLogActivatedData(int vlognum);
void virtualModeActivatedData(int vlognum);
void startModeChangedData(int mode);
void selectData();
void nownextData();
@@ -145,6 +146,10 @@ class EditRDAirPlay : public QDialog
QComboBox *air_modecontrol_box;
QLabel *air_logstartmode_label[RDAIRPLAY_LOG_QUANTITY];
QComboBox *air_logstartmode_box[RDAIRPLAY_LOG_QUANTITY];
QComboBox *air_virtual_logstartsel_box;
QComboBox *air_virtual_logstartmode_box;
int air_virtual_logstartmachine;
RDAirPlayConf::OpMode air_virtual_opmodes[RD_RDVAIRPLAY_LOG_QUAN];
};