mirror of
https://github.com/praktimarc/kst4contest.git
synced 2026-08-04 01:15:27 +02:00
Updated preferences functionality and texts
This commit is contained in:
@@ -319,6 +319,14 @@ public class ReadUDPbyUCXMessageThread extends Thread {
|
|||||||
NodeList list = doc.getElementsByTagName("contactinfo");
|
NodeList list = doc.getElementsByTagName("contactinfo");
|
||||||
if (list.getLength() != 0) {
|
if (list.getLength() != 0) {
|
||||||
|
|
||||||
|
/*
|
||||||
|
* QSO and TRX information share the same UDP receiver. The log-sync
|
||||||
|
* preference therefore controls processing, not ownership of the socket.
|
||||||
|
*/
|
||||||
|
if (!client.getChatPreferences().isLogsynch_ucxUDPWkdCallListenerEnabled()) {
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
for (int temp = 0; temp < list.getLength(); temp++) {
|
for (int temp = 0; temp < list.getLength(); temp++) {
|
||||||
|
|
||||||
Node node = list.item(temp);
|
Node node = list.item(temp);
|
||||||
@@ -591,6 +599,15 @@ public class ReadUDPbyUCXMessageThread extends Thread {
|
|||||||
} else {
|
} else {
|
||||||
list = doc.getElementsByTagName("RadioInfo");
|
list = doc.getElementsByTagName("RadioInfo");
|
||||||
|
|
||||||
|
/*
|
||||||
|
* RadioInfo packets may arrive on the shared UDP port even when automatic
|
||||||
|
* QRG synchronization is disabled. Ignore them unless TRX sync is enabled.
|
||||||
|
*/
|
||||||
|
if (list.getLength() != 0
|
||||||
|
&& !client.getChatPreferences().isTrxSynch_ucxLogUDPListenerEnabled()) {
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
for (int temp = 0; temp < list.getLength(); temp++) {
|
for (int temp = 0; temp < list.getLength(); temp++) {
|
||||||
|
|
||||||
Node node = list.item(temp);
|
Node node = list.item(temp);
|
||||||
|
|||||||
@@ -26,6 +26,14 @@ public class UserActualizationTask extends TimerTask {
|
|||||||
|
|
||||||
Thread.currentThread().setName("UserActualizationTask");
|
Thread.currentThread().setName("UserActualizationTask");
|
||||||
|
|
||||||
|
/*
|
||||||
|
* File-based log synchronization is optional. Do not create, open or parse the
|
||||||
|
* configured file while the feature is disabled.
|
||||||
|
*/
|
||||||
|
if (!client.getChatPreferences().isLogsynch_fileBasedWkdCallInterpreterEnabled()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// System.out.println("[Useract: ] Thread runned now");
|
// System.out.println("[Useract: ] Thread runned now");
|
||||||
|
|
||||||
// System.out.println("***********************Useract started");
|
// System.out.println("***********************Useract started");
|
||||||
|
|||||||
@@ -9017,7 +9017,9 @@ public class Kst4ContestApplication extends Application implements StatusUpdateL
|
|||||||
grdPnlLog.setVgap(5);
|
grdPnlLog.setVgap(5);
|
||||||
grdPnlLog.setHgap(5);
|
grdPnlLog.setHgap(5);
|
||||||
|
|
||||||
Label lblEnableFileBased = new Label("Use universal File based callsign Interpreter (readOnly!)");
|
Label lblEnableFileBased = new Label(
|
||||||
|
"Read worked callsigns periodically from a log file (without band information)"
|
||||||
|
);
|
||||||
CheckBox chkBxEnableFileBasedInterpreterUCX = new CheckBox();
|
CheckBox chkBxEnableFileBasedInterpreterUCX = new CheckBox();
|
||||||
chkBxEnableFileBasedInterpreterUCX
|
chkBxEnableFileBasedInterpreterUCX
|
||||||
.setSelected(this.chatcontroller.getChatPreferences().isLogsynch_fileBasedWkdCallInterpreterEnabled());
|
.setSelected(this.chatcontroller.getChatPreferences().isLogsynch_fileBasedWkdCallInterpreterEnabled());
|
||||||
@@ -9033,7 +9035,7 @@ public class Kst4ContestApplication extends Application implements StatusUpdateL
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
Label lblWkdInterpreterPathToFileTitle = new Label("Worked stations will be read there: ");
|
Label lblWkdInterpreterPathToFileTitle = new Label("Log file to be monitored:");
|
||||||
Label lblWkdInterpreterPathToFile = new Label(
|
Label lblWkdInterpreterPathToFile = new Label(
|
||||||
this.chatcontroller.getChatPreferences().getLogsynch_fileBasedWkdCallInterpreterFileNameReadOnly());
|
this.chatcontroller.getChatPreferences().getLogsynch_fileBasedWkdCallInterpreterFileNameReadOnly());
|
||||||
|
|
||||||
@@ -9041,7 +9043,9 @@ public class Kst4ContestApplication extends Application implements StatusUpdateL
|
|||||||
Label lblUDPbyUCXLogBackupFilePathAndName = new Label(
|
Label lblUDPbyUCXLogBackupFilePathAndName = new Label(
|
||||||
this.chatcontroller.getChatPreferences().getLogSynch_storeWorkedCallSignsFileNameUDPMessageBackup());
|
this.chatcontroller.getChatPreferences().getLogSynch_storeWorkedCallSignsFileNameUDPMessageBackup());
|
||||||
|
|
||||||
Label lblEnableUDPbyUCX = new Label("Receive UCXLog network based UDP log messages");
|
Label lblEnableUDPbyUCX = new Label(
|
||||||
|
"Process QSO messages from N1MM+, QARTEST, UCXLog and DXLog.net"
|
||||||
|
);
|
||||||
CheckBox chkBxEnableUCXLogUDPReceiver = new CheckBox();
|
CheckBox chkBxEnableUCXLogUDPReceiver = new CheckBox();
|
||||||
chkBxEnableUCXLogUDPReceiver
|
chkBxEnableUCXLogUDPReceiver
|
||||||
.setSelected(this.chatcontroller.getChatPreferences().isLogsynch_ucxUDPWkdCallListenerEnabled());
|
.setSelected(this.chatcontroller.getChatPreferences().isLogsynch_ucxUDPWkdCallListenerEnabled());
|
||||||
@@ -9056,7 +9060,9 @@ public class Kst4ContestApplication extends Application implements StatusUpdateL
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
Label lblUDPByUCX = new Label("UDP-Port for message-listener (default is 12060)");
|
Label lblUDPByUCX = new Label(
|
||||||
|
"Shared UDP port for QSO and TRX messages [default 12060]:"
|
||||||
|
);
|
||||||
TextField txtFldUDPPortforUCX = new TextField("");
|
TextField txtFldUDPPortforUCX = new TextField("");
|
||||||
txtFldUDPPortforUCX.setFocusTraversable(false);
|
txtFldUDPPortforUCX.setFocusTraversable(false);
|
||||||
txtFldUDPPortforUCX
|
txtFldUDPPortforUCX
|
||||||
@@ -9192,7 +9198,17 @@ public class Kst4ContestApplication extends Application implements StatusUpdateL
|
|||||||
grdPnlLog.add(lblWkdInterpreterPathToFileTitle, 0, 2);
|
grdPnlLog.add(lblWkdInterpreterPathToFileTitle, 0, 2);
|
||||||
grdPnlLog.add(lblWkdInterpreterPathToFile, 1, 2);
|
grdPnlLog.add(lblWkdInterpreterPathToFile, 1, 2);
|
||||||
grdPnlLog.add(btn_changeFilePathAndName, 2, 2);
|
grdPnlLog.add(btn_changeFilePathAndName, 2, 2);
|
||||||
grdPnlLog.add(generateLabeledSeparator(100, "N1MM/QARTEST/UCXLog/DXLog.net Network-Listener"), 0, 3, 2, 1);
|
// grdPnlLog.add(generateLabeledSeparator(100, "N1MM/QARTEST/UCXLog/DXLog.net Network-Listener"), 0, 3, 2, 1);
|
||||||
|
grdPnlLog.add(
|
||||||
|
generateLabeledSeparator(
|
||||||
|
100,
|
||||||
|
"Network-based QSO synchronization (N1MM/QARTEST/UCXLog/DXLog)"
|
||||||
|
),
|
||||||
|
0,
|
||||||
|
3,
|
||||||
|
2,
|
||||||
|
1
|
||||||
|
);
|
||||||
grdPnlLog.add(lblEnableUDPbyUCX, 0, 4);
|
grdPnlLog.add(lblEnableUDPbyUCX, 0, 4);
|
||||||
grdPnlLog.add(chkBxEnableUCXLogUDPReceiver, 1, 4);
|
grdPnlLog.add(chkBxEnableUCXLogUDPReceiver, 1, 4);
|
||||||
grdPnlLog.add(lblUDPByUCX, 0, 5);
|
grdPnlLog.add(lblUDPByUCX, 0, 5);
|
||||||
@@ -9310,16 +9326,18 @@ public class Kst4ContestApplication extends Application implements StatusUpdateL
|
|||||||
grdPnltrx.setVgap(5);
|
grdPnltrx.setVgap(5);
|
||||||
grdPnltrx.setHgap(5);
|
grdPnltrx.setHgap(5);
|
||||||
|
|
||||||
Label lblEnableTRXMsgbyUCX = new Label("Receive UCXLog network based UDP trx messages at Port 12060");
|
Label lblEnableTRXMsgbyUCX = new Label(
|
||||||
|
"Update MYQRG from RadioInfo messages received on the shared log-sync port"
|
||||||
|
);
|
||||||
CheckBox chkBxEnableTRXMsgbyUCX = new CheckBox();
|
CheckBox chkBxEnableTRXMsgbyUCX = new CheckBox();
|
||||||
|
|
||||||
CheckBox chkBxEnableXVTRUsage = new CheckBox();
|
// CheckBox chkBxEnableXVTRUsage = new CheckBox();
|
||||||
|
//
|
||||||
Label lblXVTRRFQrg = new Label("XVTR RF QRG in kHz, e.g. \"144000\" for 144 MHz), default = 144000");
|
// Label lblXVTRRFQrg = new Label("XVTR RF QRG in kHz, e.g. \"144000\" for 144 MHz), default = 144000");
|
||||||
lblXVTRRFQrg.setTooltip(new Tooltip("Where will your xvtr send?"));
|
// lblXVTRRFQrg.setTooltip(new Tooltip("Where will your xvtr send?"));
|
||||||
|
//
|
||||||
Label lblTRXIFQrg = new Label("TRX IF QRG in kHz, e.g. \"28000\" for 28 MHz), default = 28000");
|
// Label lblTRXIFQrg = new Label("TRX IF QRG in kHz, e.g. \"28000\" for 28 MHz), default = 28000");
|
||||||
lblXVTRRFQrg.setTooltip(new Tooltip("Where will your TRX IF be?"));
|
// lblXVTRRFQrg.setTooltip(new Tooltip("Where will your TRX IF be?"));
|
||||||
|
|
||||||
// Label lblRedultingLoQRG = new Label("The value of " + asd + " will be added to the readed QRG of your TRX to show correct QRG");
|
// Label lblRedultingLoQRG = new Label("The value of " + asd + " will be added to the readed QRG of your TRX to show correct QRG");
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user