kopia lustrzana https://gitlab.com/eliggett/wfview
Cleaned up warning and UI help text.
rodzic
bc4f5da9b6
commit
d0f95e2289
|
@ -4308,7 +4308,7 @@ void wfmain::on_rigCIVaddrHexLine_editingFinished()
|
|||
}
|
||||
|
||||
}
|
||||
void wfmain::on_baudRateCombo_activated()
|
||||
void wfmain::on_baudRateCombo_activated(int index)
|
||||
{
|
||||
bool ok = false;
|
||||
quint32 baud = ui->baudRateCombo->currentData().toUInt(&ok);
|
||||
|
@ -4317,6 +4317,7 @@ void wfmain::on_baudRateCombo_activated()
|
|||
prefs.serialPortBaud = baud;
|
||||
showStatusBarText(QString("Changed baud rate to %1 bps. Press Save Settings to retain.").arg(baud));
|
||||
}
|
||||
(void)index;
|
||||
}
|
||||
|
||||
// --- DEBUG FUNCTION ---
|
||||
|
|
2
wfmain.h
2
wfmain.h
|
@ -440,7 +440,7 @@ private slots:
|
|||
|
||||
void on_rigCIVaddrHexLine_editingFinished();
|
||||
|
||||
void on_baudRateCombo_activated();
|
||||
void on_baudRateCombo_activated(int);
|
||||
|
||||
private:
|
||||
Ui::wfmain *ui;
|
||||
|
|
17
wfmain.ui
17
wfmain.ui
|
@ -2168,7 +2168,7 @@
|
|||
<item>
|
||||
<widget class="QComboBox" name="serialDeviceListCombo">
|
||||
<property name="toolTip">
|
||||
<string><html><head/><body><p>Select a serial port here. </p><p><br/></p><p>Once selected, check &quot;Enable USB(serial), press &quot;Save Settings&quot;, exit, and re-start wfview. </p></body></html></string>
|
||||
<string><html><head/><body><p>Select a serial port here. </p><p>Once selected, check &quot;Enable USB(serial), press &quot;Save Settings&quot;, exit, and re-start wfview. </p></body></html></string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Serial Device Selector</string>
|
||||
|
@ -2185,7 +2185,7 @@
|
|||
<item>
|
||||
<widget class="QComboBox" name="baudRateCombo">
|
||||
<property name="toolTip">
|
||||
<string><html><head/><body><p>Baud rate selection menu. </p><p>For the IC-7300 select 115200. </p><p>Older rigs may require other settings. </p><p>Be sure to match what baud rate the rig is set to. Using the highese supported baud rate for the radio is recommended. </p></body></html></string>
|
||||
<string><html><head/><body><p>Baud rate selection menu. </p><p>For the IC-7300 select 115200. </p><p>Older rigs may require other settings. </p><p>Be sure to match what baud rate the rig is set to. Using the highese supported baud rate for the radio is recommended. </p><p>Please press &quot;Save Settings&quot; and re-launc wfview for this to take effect.</p></body></html></string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>baud rate</string>
|
||||
|
@ -2208,7 +2208,7 @@
|
|||
<item>
|
||||
<widget class="QCheckBox" name="rigCIVManualAddrChk">
|
||||
<property name="toolTip">
|
||||
<string><html><head/><body><p>If you are using an older (year 2010) radio, you may need to enable this option to manually specify the CI-V address. This option is also useful for radios that do not have CI-V Transceive enabled and thus will not answer our broadcast query for connected rigs on the CI-V bus.</p><p>If you have a modern radio with CI-V Transceive enabled, you should not need to check this box. </p></body></html></string>
|
||||
<string><html><head/><body><p>If you are using an older (year 2010) radio, you may need to enable this option to manually specify the CI-V address. This option is also useful for radios that do not have CI-V Transceive enabled and thus will not answer our broadcast query for connected rigs on the CI-V bus.</p><p>If you have a modern radio with CI-V Transceive enabled, you should not need to check this box. </p><p>You will need to Save Settings and re-launch wfview for this to take effect. </p></body></html></string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Manual Radio CI-V Address:</string>
|
||||
|
@ -2234,12 +2234,17 @@
|
|||
</property>
|
||||
<property name="toolTip">
|
||||
<string><html><head/><body><p>Enter the address in as hexidecimal, without any prefix, just as the radio presents the address in the menu. </p><p>Here are some common examples:</p>
|
||||
IC-706: 58
|
||||
<br/>IC-756: 6E
|
||||
<p>IC-706: 58
|
||||
<br/>IC-756: 50
|
||||
<br/>IC-756 Pro: 5C
|
||||
<br/>IC-756 Pro II: 64
|
||||
<br/>IC-756 Pro III: 6E
|
||||
<br/>IC-7000: 70
|
||||
<br/>IC-7100: 88
|
||||
<br/>IC-7200: 76
|
||||
<p>This setting is typically needed for older radios and for radios that do not have CI-V Transceive enabled. </p></body></html></string>
|
||||
<br/>IC-7300: 94
|
||||
</p><p>This setting is typically needed for older radios and for radios that do not have CI-V Transceive enabled. </p>
|
||||
<p>After changing, press Save Settings and re-launch wfview.</p></body></html></string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>auto</string>
|
||||
|
|
Ładowanie…
Reference in New Issue