not1mm 24.11.18__py3-none-any.whl → 24.11.21__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- not1mm/__main__.py +3 -1
- not1mm/data/donors.html +1 -0
- not1mm/lib/cat_interface.py +16 -1
- not1mm/lib/plugin_common.py +20 -1
- not1mm/lib/version.py +1 -1
- not1mm/plugins/10_10_fall_cw.py +12 -24
- not1mm/plugins/10_10_spring_cw.py +12 -24
- not1mm/plugins/10_10_summer_phone.py +12 -22
- not1mm/plugins/10_10_winter_phone.py +12 -24
- not1mm/plugins/arrl_10m.py +16 -29
- not1mm/plugins/arrl_dx_cw.py +11 -22
- not1mm/plugins/arrl_dx_ssb.py +11 -22
- not1mm/plugins/arrl_field_day.py +14 -22
- not1mm/plugins/arrl_rtty_ru.py +10 -22
- not1mm/plugins/arrl_ss_cw.py +14 -29
- not1mm/plugins/arrl_ss_phone.py +14 -29
- not1mm/plugins/arrl_vhf_jan.py +14 -29
- not1mm/plugins/arrl_vhf_jun.py +14 -29
- not1mm/plugins/arrl_vhf_sep.py +14 -29
- not1mm/plugins/canada_day.py +14 -29
- not1mm/plugins/cq_160_cw.py +10 -24
- not1mm/plugins/cq_160_ssb.py +10 -24
- not1mm/plugins/cq_wpx_cw.py +12 -25
- not1mm/plugins/cq_wpx_rtty.py +12 -25
- not1mm/plugins/cq_wpx_ssb.py +14 -29
- not1mm/plugins/cq_ww_cw.py +11 -22
- not1mm/plugins/cq_ww_rtty.py +12 -26
- not1mm/plugins/cq_ww_ssb.py +11 -22
- not1mm/plugins/cwt.py +12 -26
- not1mm/plugins/darc_xmas.py +15 -31
- not1mm/plugins/general_logging.py +125 -26
- not1mm/plugins/helvetia.py +15 -26
- not1mm/plugins/iaru_fieldday_r1_cw.py +12 -25
- not1mm/plugins/iaru_fieldday_r1_ssb.py +12 -25
- not1mm/plugins/iaru_hf.py +11 -22
- not1mm/plugins/icwc_mst.py +136 -40
- not1mm/plugins/jidx_cw.py +102 -23
- not1mm/plugins/jidx_ph.py +106 -29
- not1mm/plugins/k1usn_sst.py +10 -16
- not1mm/plugins/lz-dx.py +17 -28
- not1mm/plugins/naqp_cw.py +11 -17
- not1mm/plugins/naqp_rtty.py +11 -17
- not1mm/plugins/naqp_ssb.py +11 -17
- not1mm/plugins/phone_weekly_test.py +101 -16
- not1mm/plugins/raem.py +26 -25
- not1mm/plugins/ref_cw.py +17 -28
- not1mm/plugins/ref_ssb.py +32 -28
- not1mm/plugins/stew_perry_topband.py +102 -16
- not1mm/plugins/weekly_rtty.py +17 -16
- not1mm/plugins/winter_field_day.py +28 -24
- {not1mm-24.11.18.dist-info → not1mm-24.11.21.dist-info}/METADATA +9 -8
- {not1mm-24.11.18.dist-info → not1mm-24.11.21.dist-info}/RECORD +56 -56
- {not1mm-24.11.18.dist-info → not1mm-24.11.21.dist-info}/WHEEL +1 -1
- {not1mm-24.11.18.dist-info → not1mm-24.11.21.dist-info}/LICENSE +0 -0
- {not1mm-24.11.18.dist-info → not1mm-24.11.21.dist-info}/entry_points.txt +0 -0
- {not1mm-24.11.18.dist-info → not1mm-24.11.21.dist-info}/top_level.txt +0 -0
not1mm/__main__.py
CHANGED
@@ -1971,6 +1971,8 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
1971
1971
|
if self.pref.get("cwtype") == 3 and self.rig_control is not None:
|
1972
1972
|
if self.rig_control.interface == "flrig":
|
1973
1973
|
self.rig_control.cat.set_flrig_cw_speed(self.cw_speed.value())
|
1974
|
+
elif self.rig_control.interface == "rigctld":
|
1975
|
+
self.rig_control.cat.set_rigctl_cw_speed(self.cw_speed.value())
|
1974
1976
|
|
1975
1977
|
def stop_cw(self):
|
1976
1978
|
""""""
|
@@ -3190,7 +3192,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
3190
3192
|
self.contest.parse_exchange(self)
|
3191
3193
|
return
|
3192
3194
|
if hasattr(self.contest, "advance_on_space"):
|
3193
|
-
if self.contest.advance_on_space[
|
3195
|
+
if self.contest.advance_on_space[4]:
|
3194
3196
|
text = self.other_2.text()
|
3195
3197
|
text = text.upper()
|
3196
3198
|
# position = self.other_2.cursorPosition()
|
not1mm/data/donors.html
CHANGED
not1mm/lib/cat_interface.py
CHANGED
@@ -9,7 +9,7 @@ rig.cwio_send n:i cwio transmit 1/0 (on/off)
|
|
9
9
|
command lines to test the CW API via XMLRPC
|
10
10
|
|
11
11
|
Setting WPM
|
12
|
-
curl -d "<?xml version='1.0'?><methodCall><methodName>rig.cwio_set_wpm</methodName><params><param><value><i4>28</i4></value></param></params></methodCall>" http://localhost:12345
|
12
|
+
curl -d "<?xml version='1.0'?><methodCall><methodName>rig.cwio_set_wpm</methodName><params><param><value><i4>28</i4></value></param></params></methodCall>" http://localhost:12345
|
13
13
|
|
14
14
|
Setting the text to send
|
15
15
|
curl -d "<?xml version='1.0'?><methodCall><methodName>rig.cwio_text</methodName><params><param><value><string>test test test</string></value></param></params></methodCall>" http://localhost:12345
|
@@ -178,6 +178,21 @@ class CAT:
|
|
178
178
|
self.__initialize_rigctrld()
|
179
179
|
return False
|
180
180
|
|
181
|
+
def set_rigctl_cw_speed(self, speed):
|
182
|
+
"""Set CW speed via rigctld"""
|
183
|
+
if self.rigctrlsocket:
|
184
|
+
try:
|
185
|
+
self.online = True
|
186
|
+
self.rigctrlsocket.send(bytes(f"L KEYSPD {speed}\n", "utf-8"))
|
187
|
+
_ = self.__get_serial_string()
|
188
|
+
return
|
189
|
+
except socket.error as exception:
|
190
|
+
self.online = False
|
191
|
+
logger.debug("set_level_rigctld: %s", f"{exception}")
|
192
|
+
self.rigctrlsocket = None
|
193
|
+
return
|
194
|
+
self.__initialize_rigctrld()
|
195
|
+
|
181
196
|
def sendcwxmlrpc(self, texttosend):
|
182
197
|
"""Add text to flrig's cw send buffer."""
|
183
198
|
logger.debug(f"{texttosend=}")
|
not1mm/lib/plugin_common.py
CHANGED
@@ -151,6 +151,16 @@ def gen_adif(self, cabrillo_name: str, contest_id=""):
|
|
151
151
|
end="\r\n",
|
152
152
|
file=file_descriptor,
|
153
153
|
)
|
154
|
+
elif cabrillo_name in ("ICWC-MST"):
|
155
|
+
sent = (
|
156
|
+
f'{self.contest_settings.get("SentExchange", "")} {sentnr}'
|
157
|
+
)
|
158
|
+
if sent:
|
159
|
+
print(
|
160
|
+
f"<STX_STRING:{len(sent)}>{sent.upper()}",
|
161
|
+
end="\r\n",
|
162
|
+
file=file_descriptor,
|
163
|
+
)
|
154
164
|
elif sentnr != "0":
|
155
165
|
print(
|
156
166
|
f"<STX_STRING:{len(sentnr)}>{sentnr}",
|
@@ -162,8 +172,17 @@ def gen_adif(self, cabrillo_name: str, contest_id=""):
|
|
162
172
|
|
163
173
|
# SRX STRING, Contest dependent
|
164
174
|
try:
|
175
|
+
# ----------Medium Speed Test------------
|
176
|
+
if cabrillo_name in ("ICWC-MST"):
|
177
|
+
rcv = f"{hisname.upper()} {contact.get('NR', '')}"
|
178
|
+
if len(rcv) > 1:
|
179
|
+
print(
|
180
|
+
f"<SRX_STRING:{len(rcv)}>{rcv.upper()}",
|
181
|
+
end="\r\n",
|
182
|
+
file=file_descriptor,
|
183
|
+
)
|
165
184
|
# ----------Field Days------------
|
166
|
-
|
185
|
+
elif cabrillo_name in ("WFD", "ARRL-FD"):
|
167
186
|
rcv = (
|
168
187
|
f"{contact.get('Exchange1', '')} {contact.get('Sect', '')}"
|
169
188
|
)
|
not1mm/lib/version.py
CHANGED
not1mm/plugins/10_10_fall_cw.py
CHANGED
@@ -50,8 +50,8 @@ def interface(self):
|
|
50
50
|
self.field4.show()
|
51
51
|
self.snt_label.setText("SNT")
|
52
52
|
self.field1.setAccessibleName("RST Sent")
|
53
|
-
label = self.field4.findChild(QtWidgets.QLabel)
|
54
|
-
|
53
|
+
# label = self.field4.findChild(QtWidgets.QLabel)
|
54
|
+
self.exch_label.setText("Name 1010# SPC")
|
55
55
|
self.field4.setAccessibleName("Name 10 10 # SPC")
|
56
56
|
|
57
57
|
|
@@ -62,32 +62,22 @@ def reset_label(self):
|
|
62
62
|
def set_tab_next(self):
|
63
63
|
"""Set TAB Advances"""
|
64
64
|
self.tab_next = {
|
65
|
-
self.callsign: self.
|
66
|
-
self.
|
67
|
-
|
68
|
-
|
69
|
-
self.
|
70
|
-
QtWidgets.QLineEdit
|
71
|
-
),
|
72
|
-
self.field3.findChild(QtWidgets.QLineEdit): self.callsign,
|
73
|
-
self.field4.findChild(QtWidgets.QLineEdit): self.callsign,
|
65
|
+
self.callsign: self.sent,
|
66
|
+
self.sent: self.receive,
|
67
|
+
self.receive: self.other_2,
|
68
|
+
self.other_1: self.callsign,
|
69
|
+
self.other_2: self.callsign,
|
74
70
|
}
|
75
71
|
|
76
72
|
|
77
73
|
def set_tab_prev(self):
|
78
74
|
"""Set TAB Advances"""
|
79
75
|
self.tab_prev = {
|
80
|
-
self.callsign: self.
|
81
|
-
self.
|
82
|
-
self.
|
83
|
-
|
84
|
-
|
85
|
-
self.field3.findChild(QtWidgets.QLineEdit): self.field2.findChild(
|
86
|
-
QtWidgets.QLineEdit
|
87
|
-
),
|
88
|
-
self.field4.findChild(QtWidgets.QLineEdit): self.field2.findChild(
|
89
|
-
QtWidgets.QLineEdit
|
90
|
-
),
|
76
|
+
self.callsign: self.other_2,
|
77
|
+
self.sent: self.callsign,
|
78
|
+
self.receive: self.sent,
|
79
|
+
self.other_1: self.receive,
|
80
|
+
self.other_2: self.receive,
|
91
81
|
}
|
92
82
|
|
93
83
|
|
@@ -120,8 +110,6 @@ def predupe(self):
|
|
120
110
|
|
121
111
|
def prefill(self):
|
122
112
|
"""Fill sentnr"""
|
123
|
-
# if len(self.other_2.text()) == 0:
|
124
|
-
# self.other_2.setText(str(self.contact.get("ZN", "")))
|
125
113
|
self.other_1.setText(str(self.contest_settings.get("SentExchange", 0)))
|
126
114
|
|
127
115
|
|
@@ -49,8 +49,8 @@ def interface(self):
|
|
49
49
|
self.field4.show()
|
50
50
|
self.snt_label.setText("SNT")
|
51
51
|
self.field1.setAccessibleName("RST Sent")
|
52
|
-
label = self.field4.findChild(QtWidgets.QLabel)
|
53
|
-
|
52
|
+
# label = self.field4.findChild(QtWidgets.QLabel)
|
53
|
+
self.exch_label.setText("Name 1010# SPC")
|
54
54
|
self.field4.setAccessibleName("Name 10 10 # SPC")
|
55
55
|
|
56
56
|
|
@@ -61,32 +61,22 @@ def reset_label(self):
|
|
61
61
|
def set_tab_next(self):
|
62
62
|
"""Set TAB Advances"""
|
63
63
|
self.tab_next = {
|
64
|
-
self.callsign: self.
|
65
|
-
self.
|
66
|
-
|
67
|
-
|
68
|
-
self.
|
69
|
-
QtWidgets.QLineEdit
|
70
|
-
),
|
71
|
-
self.field3.findChild(QtWidgets.QLineEdit): self.callsign,
|
72
|
-
self.field4.findChild(QtWidgets.QLineEdit): self.callsign,
|
64
|
+
self.callsign: self.sent,
|
65
|
+
self.sent: self.receive,
|
66
|
+
self.receive: self.other_2,
|
67
|
+
self.other_1: self.callsign,
|
68
|
+
self.other_2: self.callsign,
|
73
69
|
}
|
74
70
|
|
75
71
|
|
76
72
|
def set_tab_prev(self):
|
77
73
|
"""Set TAB Advances"""
|
78
74
|
self.tab_prev = {
|
79
|
-
self.callsign: self.
|
80
|
-
self.
|
81
|
-
self.
|
82
|
-
|
83
|
-
|
84
|
-
self.field3.findChild(QtWidgets.QLineEdit): self.field2.findChild(
|
85
|
-
QtWidgets.QLineEdit
|
86
|
-
),
|
87
|
-
self.field4.findChild(QtWidgets.QLineEdit): self.field2.findChild(
|
88
|
-
QtWidgets.QLineEdit
|
89
|
-
),
|
75
|
+
self.callsign: self.other_2,
|
76
|
+
self.sent: self.callsign,
|
77
|
+
self.receive: self.sent,
|
78
|
+
self.other_1: self.receive,
|
79
|
+
self.other_2: self.receive,
|
90
80
|
}
|
91
81
|
|
92
82
|
|
@@ -119,8 +109,6 @@ def predupe(self):
|
|
119
109
|
|
120
110
|
def prefill(self):
|
121
111
|
"""Fill sentnr"""
|
122
|
-
# if len(self.other_2.text()) == 0:
|
123
|
-
# self.other_2.setText(str(self.contact.get("ZN", "")))
|
124
112
|
self.other_1.setText(str(self.contest_settings.get("SentExchange", 0)))
|
125
113
|
|
126
114
|
|
@@ -51,8 +51,8 @@ def interface(self):
|
|
51
51
|
self.field4.show()
|
52
52
|
self.snt_label.setText("SNT")
|
53
53
|
self.field1.setAccessibleName("RST Sent")
|
54
|
-
label = self.field4.findChild(QtWidgets.QLabel)
|
55
|
-
|
54
|
+
# label = self.field4.findChild(QtWidgets.QLabel)
|
55
|
+
self.exch_label.setText("Name 1010# SPC")
|
56
56
|
self.field4.setAccessibleName("Name 10 10 # SPC")
|
57
57
|
|
58
58
|
|
@@ -63,32 +63,22 @@ def reset_label(self):
|
|
63
63
|
def set_tab_next(self):
|
64
64
|
"""Set TAB Advances"""
|
65
65
|
self.tab_next = {
|
66
|
-
self.callsign: self.
|
67
|
-
self.
|
68
|
-
|
69
|
-
|
70
|
-
self.
|
71
|
-
QtWidgets.QLineEdit
|
72
|
-
),
|
73
|
-
self.field3.findChild(QtWidgets.QLineEdit): self.callsign,
|
74
|
-
self.field4.findChild(QtWidgets.QLineEdit): self.callsign,
|
66
|
+
self.callsign: self.sent,
|
67
|
+
self.sent: self.receive,
|
68
|
+
self.receive: self.other_2,
|
69
|
+
self.other_1: self.callsign,
|
70
|
+
self.other_2: self.callsign,
|
75
71
|
}
|
76
72
|
|
77
73
|
|
78
74
|
def set_tab_prev(self):
|
79
75
|
"""Set TAB Advances"""
|
80
76
|
self.tab_prev = {
|
81
|
-
self.callsign: self.
|
82
|
-
self.
|
83
|
-
self.
|
84
|
-
|
85
|
-
|
86
|
-
self.field3.findChild(QtWidgets.QLineEdit): self.field2.findChild(
|
87
|
-
QtWidgets.QLineEdit
|
88
|
-
),
|
89
|
-
self.field4.findChild(QtWidgets.QLineEdit): self.field2.findChild(
|
90
|
-
QtWidgets.QLineEdit
|
91
|
-
),
|
77
|
+
self.callsign: self.other_2,
|
78
|
+
self.sent: self.callsign,
|
79
|
+
self.receive: self.sent,
|
80
|
+
self.other_1: self.receive,
|
81
|
+
self.other_2: self.receive,
|
92
82
|
}
|
93
83
|
|
94
84
|
|
@@ -51,8 +51,8 @@ def interface(self):
|
|
51
51
|
self.field4.show()
|
52
52
|
self.snt_label.setText("SNT")
|
53
53
|
self.field1.setAccessibleName("RST Sent")
|
54
|
-
label = self.field4.findChild(QtWidgets.QLabel)
|
55
|
-
|
54
|
+
# label = self.field4.findChild(QtWidgets.QLabel)
|
55
|
+
self.exch_label.setText("Name 1010# SPC")
|
56
56
|
self.field4.setAccessibleName("Name 10 10 # SPC")
|
57
57
|
|
58
58
|
|
@@ -63,32 +63,22 @@ def reset_label(self):
|
|
63
63
|
def set_tab_next(self):
|
64
64
|
"""Set TAB Advances"""
|
65
65
|
self.tab_next = {
|
66
|
-
self.callsign: self.
|
67
|
-
self.
|
68
|
-
|
69
|
-
|
70
|
-
self.
|
71
|
-
QtWidgets.QLineEdit
|
72
|
-
),
|
73
|
-
self.field3.findChild(QtWidgets.QLineEdit): self.callsign,
|
74
|
-
self.field4.findChild(QtWidgets.QLineEdit): self.callsign,
|
66
|
+
self.callsign: self.sent,
|
67
|
+
self.sent: self.receive,
|
68
|
+
self.receive: self.other_2,
|
69
|
+
self.other_1: self.callsign,
|
70
|
+
self.other_2: self.callsign,
|
75
71
|
}
|
76
72
|
|
77
73
|
|
78
74
|
def set_tab_prev(self):
|
79
75
|
"""Set TAB Advances"""
|
80
76
|
self.tab_prev = {
|
81
|
-
self.callsign: self.
|
82
|
-
self.
|
83
|
-
self.
|
84
|
-
|
85
|
-
|
86
|
-
self.field3.findChild(QtWidgets.QLineEdit): self.field2.findChild(
|
87
|
-
QtWidgets.QLineEdit
|
88
|
-
),
|
89
|
-
self.field4.findChild(QtWidgets.QLineEdit): self.field2.findChild(
|
90
|
-
QtWidgets.QLineEdit
|
91
|
-
),
|
77
|
+
self.callsign: self.other_2,
|
78
|
+
self.sent: self.callsign,
|
79
|
+
self.receive: self.sent,
|
80
|
+
self.other_1: self.receive,
|
81
|
+
self.other_2: self.receive,
|
92
82
|
}
|
93
83
|
|
94
84
|
|
@@ -121,8 +111,6 @@ def predupe(self):
|
|
121
111
|
|
122
112
|
def prefill(self):
|
123
113
|
"""Fill sentnr"""
|
124
|
-
# if len(self.other_2.text()) == 0:
|
125
|
-
# self.other_2.setText(str(self.contact.get("ZN", "")))
|
126
114
|
self.other_1.setText(str(self.contest_settings.get("SentExchange", 0)))
|
127
115
|
|
128
116
|
|
not1mm/plugins/arrl_10m.py
CHANGED
@@ -96,11 +96,11 @@ def interface(self):
|
|
96
96
|
self.field4.show()
|
97
97
|
self.snt_label.setText("SNT")
|
98
98
|
self.field1.setAccessibleName("RST Sent")
|
99
|
-
label = self.field3.findChild(QtWidgets.QLabel)
|
100
|
-
|
99
|
+
# label = self.field3.findChild(QtWidgets.QLabel)
|
100
|
+
self.other_label.setText("SentNR")
|
101
101
|
self.field3.setAccessibleName("Sent Number")
|
102
|
-
label = self.field4.findChild(QtWidgets.QLabel)
|
103
|
-
|
102
|
+
# label = self.field4.findChild(QtWidgets.QLabel)
|
103
|
+
self.exch_label.setText("State|Prov|SN|ITU")
|
104
104
|
self.field4.setAccessibleName("State Province Serial Number or I T U Section")
|
105
105
|
|
106
106
|
|
@@ -111,34 +111,22 @@ def reset_label(self):
|
|
111
111
|
def set_tab_next(self):
|
112
112
|
"""Set TAB Advances"""
|
113
113
|
self.tab_next = {
|
114
|
-
self.callsign: self.
|
115
|
-
self.
|
116
|
-
|
117
|
-
|
118
|
-
self.
|
119
|
-
QtWidgets.QLineEdit
|
120
|
-
),
|
121
|
-
self.field3.findChild(QtWidgets.QLineEdit): self.field4.findChild(
|
122
|
-
QtWidgets.QLineEdit
|
123
|
-
),
|
124
|
-
self.field4.findChild(QtWidgets.QLineEdit): self.callsign,
|
114
|
+
self.callsign: self.sent,
|
115
|
+
self.sent: self.receive,
|
116
|
+
self.receive: self.other_1,
|
117
|
+
self.other_1: self.other_2,
|
118
|
+
self.other_2: self.callsign,
|
125
119
|
}
|
126
120
|
|
127
121
|
|
128
122
|
def set_tab_prev(self):
|
129
123
|
"""Set TAB Advances"""
|
130
124
|
self.tab_prev = {
|
131
|
-
self.callsign: self.
|
132
|
-
self.
|
133
|
-
self.
|
134
|
-
|
135
|
-
|
136
|
-
self.field3.findChild(QtWidgets.QLineEdit): self.field2.findChild(
|
137
|
-
QtWidgets.QLineEdit
|
138
|
-
),
|
139
|
-
self.field4.findChild(QtWidgets.QLineEdit): self.field3.findChild(
|
140
|
-
QtWidgets.QLineEdit
|
141
|
-
),
|
125
|
+
self.callsign: self.other_2,
|
126
|
+
self.sent: self.callsign,
|
127
|
+
self.receive: self.sent,
|
128
|
+
self.other_1: self.receive,
|
129
|
+
self.other_2: self.other_1,
|
142
130
|
}
|
143
131
|
|
144
132
|
|
@@ -172,9 +160,8 @@ def prefill(self):
|
|
172
160
|
serial_nr = "001"
|
173
161
|
|
174
162
|
exchange = self.contest_settings.get("SentExchange", "").replace("#", serial_nr)
|
175
|
-
|
176
|
-
|
177
|
-
field.setText(exchange)
|
163
|
+
if len(self.other_1.text()) == 0:
|
164
|
+
self.other_1.setText(exchange)
|
178
165
|
|
179
166
|
|
180
167
|
def points(self):
|
not1mm/plugins/arrl_dx_cw.py
CHANGED
@@ -55,8 +55,7 @@ def interface(self):
|
|
55
55
|
self.field4.show()
|
56
56
|
self.snt_label.setText("SNT")
|
57
57
|
self.field1.setAccessibleName("RST Sent")
|
58
|
-
|
59
|
-
label.setText("Power/State/Province")
|
58
|
+
self.exch_label.setText("Power/State/Province")
|
60
59
|
self.field4.setAccessibleName("Power or state or province")
|
61
60
|
|
62
61
|
|
@@ -67,32 +66,22 @@ def reset_label(self):
|
|
67
66
|
def set_tab_next(self):
|
68
67
|
"""Set TAB Advances"""
|
69
68
|
self.tab_next = {
|
70
|
-
self.callsign: self.
|
71
|
-
self.
|
72
|
-
|
73
|
-
|
74
|
-
self.
|
75
|
-
QtWidgets.QLineEdit
|
76
|
-
),
|
77
|
-
self.field3.findChild(QtWidgets.QLineEdit): self.callsign,
|
78
|
-
self.field4.findChild(QtWidgets.QLineEdit): self.callsign,
|
69
|
+
self.callsign: self.sent,
|
70
|
+
self.sent: self.receive,
|
71
|
+
self.receive: self.other_2,
|
72
|
+
self.other_1: self.callsign,
|
73
|
+
self.other_2: self.callsign,
|
79
74
|
}
|
80
75
|
|
81
76
|
|
82
77
|
def set_tab_prev(self):
|
83
78
|
"""Set TAB Advances"""
|
84
79
|
self.tab_prev = {
|
85
|
-
self.callsign: self.
|
86
|
-
self.
|
87
|
-
self.
|
88
|
-
|
89
|
-
|
90
|
-
self.field3.findChild(QtWidgets.QLineEdit): self.field2.findChild(
|
91
|
-
QtWidgets.QLineEdit
|
92
|
-
),
|
93
|
-
self.field4.findChild(QtWidgets.QLineEdit): self.field2.findChild(
|
94
|
-
QtWidgets.QLineEdit
|
95
|
-
),
|
80
|
+
self.callsign: self.other_2,
|
81
|
+
self.sent: self.callsign,
|
82
|
+
self.receive: self.sent,
|
83
|
+
self.other_1: self.receive,
|
84
|
+
self.other_2: self.receive,
|
96
85
|
}
|
97
86
|
|
98
87
|
|
not1mm/plugins/arrl_dx_ssb.py
CHANGED
@@ -55,8 +55,7 @@ def interface(self):
|
|
55
55
|
self.field4.show()
|
56
56
|
self.snt_label.setText("SNT")
|
57
57
|
self.field1.setAccessibleName("RST Sent")
|
58
|
-
|
59
|
-
label.setText("Power/State/Province")
|
58
|
+
self.exch_label.setText("Power/State/Province")
|
60
59
|
self.field4.setAccessibleName("Power or state or province")
|
61
60
|
|
62
61
|
|
@@ -67,32 +66,22 @@ def reset_label(self):
|
|
67
66
|
def set_tab_next(self):
|
68
67
|
"""Set TAB Advances"""
|
69
68
|
self.tab_next = {
|
70
|
-
self.callsign: self.
|
71
|
-
self.
|
72
|
-
|
73
|
-
|
74
|
-
self.
|
75
|
-
QtWidgets.QLineEdit
|
76
|
-
),
|
77
|
-
self.field3.findChild(QtWidgets.QLineEdit): self.callsign,
|
78
|
-
self.field4.findChild(QtWidgets.QLineEdit): self.callsign,
|
69
|
+
self.callsign: self.sent,
|
70
|
+
self.sent: self.receive,
|
71
|
+
self.receive: self.other_2,
|
72
|
+
self.other_1: self.callsign,
|
73
|
+
self.other_2: self.callsign,
|
79
74
|
}
|
80
75
|
|
81
76
|
|
82
77
|
def set_tab_prev(self):
|
83
78
|
"""Set TAB Advances"""
|
84
79
|
self.tab_prev = {
|
85
|
-
self.callsign: self.
|
86
|
-
self.
|
87
|
-
self.
|
88
|
-
|
89
|
-
|
90
|
-
self.field3.findChild(QtWidgets.QLineEdit): self.field2.findChild(
|
91
|
-
QtWidgets.QLineEdit
|
92
|
-
),
|
93
|
-
self.field4.findChild(QtWidgets.QLineEdit): self.field2.findChild(
|
94
|
-
QtWidgets.QLineEdit
|
95
|
-
),
|
80
|
+
self.callsign: self.other_2,
|
81
|
+
self.sent: self.callsign,
|
82
|
+
self.receive: self.sent,
|
83
|
+
self.other_1: self.receive,
|
84
|
+
self.other_2: self.receive,
|
96
85
|
}
|
97
86
|
|
98
87
|
|
not1mm/plugins/arrl_field_day.py
CHANGED
@@ -52,11 +52,11 @@ def interface(self):
|
|
52
52
|
self.field2.hide()
|
53
53
|
self.field3.show()
|
54
54
|
self.field4.show()
|
55
|
-
label = self.field3.findChild(QtWidgets.QLabel)
|
56
|
-
|
55
|
+
# label = self.field3.findChild(QtWidgets.QLabel)
|
56
|
+
self.other_label.setText("Class")
|
57
57
|
self.field3.setAccessibleName("Class")
|
58
|
-
label = self.field4.findChild(QtWidgets.QLabel)
|
59
|
-
|
58
|
+
# label = self.field4.findChild(QtWidgets.QLabel)
|
59
|
+
self.exch_label.setText("Section")
|
60
60
|
self.field4.setAccessibleName("Section")
|
61
61
|
|
62
62
|
|
@@ -67,30 +67,22 @@ def reset_label(self):
|
|
67
67
|
def set_tab_next(self):
|
68
68
|
"""Set TAB Advances"""
|
69
69
|
self.tab_next = {
|
70
|
-
self.callsign: self.
|
71
|
-
self.
|
72
|
-
|
73
|
-
|
74
|
-
self.
|
75
|
-
QtWidgets.QLineEdit
|
76
|
-
),
|
77
|
-
self.field3.findChild(QtWidgets.QLineEdit): self.field4.findChild(
|
78
|
-
QtWidgets.QLineEdit
|
79
|
-
),
|
80
|
-
self.field4.findChild(QtWidgets.QLineEdit): self.callsign,
|
70
|
+
self.callsign: self.other_1,
|
71
|
+
self.sent: self.other_1,
|
72
|
+
self.receive: self.other_1,
|
73
|
+
self.other_1: self.other_2,
|
74
|
+
self.other_2: self.callsign,
|
81
75
|
}
|
82
76
|
|
83
77
|
|
84
78
|
def set_tab_prev(self):
|
85
79
|
"""Set TAB Advances"""
|
86
80
|
self.tab_prev = {
|
87
|
-
self.callsign: self.
|
88
|
-
self.
|
89
|
-
self.
|
90
|
-
self.
|
91
|
-
self.
|
92
|
-
QtWidgets.QLineEdit
|
93
|
-
),
|
81
|
+
self.callsign: self.other_2,
|
82
|
+
self.sent: self.callsign,
|
83
|
+
self.receive: self.callsign,
|
84
|
+
self.other_1: self.callsign,
|
85
|
+
self.other_2: self.other_1,
|
94
86
|
}
|
95
87
|
|
96
88
|
|
not1mm/plugins/arrl_rtty_ru.py
CHANGED
@@ -58,34 +58,22 @@ def reset_label(self):
|
|
58
58
|
def set_tab_next(self):
|
59
59
|
"""Set TAB Advances"""
|
60
60
|
self.tab_next = {
|
61
|
-
self.callsign: self.
|
62
|
-
self.
|
63
|
-
|
64
|
-
|
65
|
-
self.
|
66
|
-
QtWidgets.QLineEdit
|
67
|
-
),
|
68
|
-
self.field3.findChild(QtWidgets.QLineEdit): self.field4.findChild(
|
69
|
-
QtWidgets.QLineEdit
|
70
|
-
),
|
71
|
-
self.field4.findChild(QtWidgets.QLineEdit): self.callsign,
|
61
|
+
self.callsign: self.sent,
|
62
|
+
self.sent: self.receive,
|
63
|
+
self.receive: self.other_1,
|
64
|
+
self.other_1: self.other_2,
|
65
|
+
self.other_2: self.callsign,
|
72
66
|
}
|
73
67
|
|
74
68
|
|
75
69
|
def set_tab_prev(self):
|
76
70
|
"""Set TAB Advances"""
|
77
71
|
self.tab_prev = {
|
78
|
-
self.callsign: self.
|
79
|
-
self.
|
80
|
-
self.
|
81
|
-
|
82
|
-
|
83
|
-
self.field3.findChild(QtWidgets.QLineEdit): self.field2.findChild(
|
84
|
-
QtWidgets.QLineEdit
|
85
|
-
),
|
86
|
-
self.field4.findChild(QtWidgets.QLineEdit): self.field3.findChild(
|
87
|
-
QtWidgets.QLineEdit
|
88
|
-
),
|
72
|
+
self.callsign: self.other_2,
|
73
|
+
self.sent: self.callsign,
|
74
|
+
self.receive: self.sent,
|
75
|
+
self.other_1: self.receive,
|
76
|
+
self.other_2: self.other_1,
|
89
77
|
}
|
90
78
|
|
91
79
|
|