You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
810 lines
20 KiB
QML
810 lines
20 KiB
QML
/*
|
|
Copyright (C) 2019-2021 Doug McLain
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
|
|
Item {
|
|
id: mainTab
|
|
property int rows: {
|
|
if(USE_FLITE){
|
|
rows = 20;
|
|
}
|
|
else{
|
|
rows = 18;
|
|
}
|
|
}
|
|
property bool tts: {
|
|
if(USE_FLITE){
|
|
tts = true;
|
|
}
|
|
else{
|
|
tts = false;
|
|
}
|
|
}
|
|
|
|
onWidthChanged:{
|
|
if(_comboMode.currentText == "DMR"){
|
|
_comboMode.width = (mainTab.width / 5) - 5;
|
|
_connectbutton.width = (mainTab.width * 2 / 5 ) - 5
|
|
_connectbutton.x = (mainTab.width * 3 / 5 )
|
|
}
|
|
else{
|
|
_comboMode.width = (mainTab.width / 2) - 5;
|
|
_connectbutton.width = (mainTab.width / 2) - 5;
|
|
_connectbutton.x = mainTab.width / 2;
|
|
}
|
|
}
|
|
|
|
Keys.onPressed: {
|
|
console.log("Key pressed: " + event.key);
|
|
}
|
|
|
|
property alias element3: _element3
|
|
property alias label1: _label1
|
|
property alias label2: _label2
|
|
property alias label3: _label3
|
|
property alias label4: _label4
|
|
property alias label5: _label5
|
|
property alias label6: _label6
|
|
property alias ambestatus: _ambestatus
|
|
property alias mmdvmstatus: _mmdvmstatus
|
|
property alias netstatus: _netstatus
|
|
property alias levelMeter: _levelMeter
|
|
property alias uitimer: _uitimer
|
|
property alias comboMode: _comboMode
|
|
property alias comboHost: _comboHost
|
|
property alias dtmflabel: _dtmflabel
|
|
property alias editIAXDTMF: _editIAXDTMF
|
|
property alias dtmfsendbutton: _dtmfsendbutton
|
|
property alias comboModule: _comboModule
|
|
property alias comboSlot: _comboSlot
|
|
property alias comboCC: _comboCC
|
|
property alias dmrtgidEdit: _dmrtgidEdit
|
|
property alias comboM17CAN: _comboM17CAN
|
|
property alias privateBox: _privateBox
|
|
property alias connectbutton: _connectbutton
|
|
property alias sliderMicGain: _slidermicGain
|
|
property alias data1: _data1
|
|
property alias data2: _data2
|
|
property alias data3: _data3
|
|
property alias data4: _data4
|
|
property alias data5: _data5
|
|
property alias data6: _data6
|
|
property alias txtimer: _txtimer
|
|
property alias buttonTX: _buttonTX
|
|
property alias btntxt: _btntxt
|
|
property alias swtxBox: _swtxBox
|
|
property alias swrxBox: _swrxBox
|
|
property alias agcBox: _agcBox
|
|
|
|
Timer {
|
|
id: _uitimer
|
|
interval: 20; running: true; repeat: true
|
|
property int cnt: 0;
|
|
property int rxcnt: 0;
|
|
property int last_rxcnt: 0;
|
|
onTriggered: update_level();
|
|
|
|
function update_level(){
|
|
if(cnt >= 20){
|
|
if(rxcnt == last_rxcnt){
|
|
droidstar.set_output_level(0);
|
|
rxcnt = 0;
|
|
//console.log("TIMEOUT");
|
|
}
|
|
else{
|
|
last_rxcnt = rxcnt;
|
|
}
|
|
|
|
cnt = 0;
|
|
}
|
|
else{
|
|
++cnt;
|
|
}
|
|
|
|
var l = (parent.width - 20) * droidstar.get_output_level() / 32767.0;
|
|
if(l > _levelMeter.width){
|
|
_levelMeter.width = l;
|
|
}
|
|
else{
|
|
if(_levelMeter.width > 0)
|
|
_levelMeter.width -= 8;
|
|
else
|
|
_levelMeter.width = 0;
|
|
}
|
|
}
|
|
}
|
|
ComboBox {
|
|
id: _comboMode
|
|
property bool loaded: false
|
|
x: 5
|
|
y: 0
|
|
width: (parent.width / 2) - 5
|
|
height: parent.height / rows;
|
|
font.pixelSize: parent.height / 40
|
|
currentIndex: -1
|
|
displayText: currentIndex === -1 ? "Mode..." : currentText
|
|
model: ["M17", "YSF", "FCS", "DMR", "P25", "NXDN", "REF", "XRF", "DCS", "IAX"]
|
|
contentItem: Text {
|
|
text: _comboMode.displayText
|
|
font: _comboMode.font
|
|
leftPadding: 10
|
|
verticalAlignment: Text.AlignVCenter
|
|
color: _comboMode.enabled ? "white" : "darkgrey"
|
|
}
|
|
onCurrentTextChanged: {
|
|
if(_comboMode.loaded){
|
|
droidstar.process_mode_change(_comboMode.currentText);
|
|
}
|
|
if(_comboMode.currentText == "DMR"){
|
|
_comboMode.width = (mainTab.width / 5) - 5;
|
|
_connectbutton.width = (mainTab.width * 2 / 5 ) - 5;
|
|
_connectbutton.x = (mainTab.width * 3 / 5 );
|
|
}
|
|
else{
|
|
_comboMode.width = (mainTab.width / 2) - 5;
|
|
_connectbutton.width = (mainTab.width / 2) - 5;
|
|
_connectbutton.x = mainTab.width / 2;
|
|
}
|
|
}
|
|
}
|
|
ComboBox {
|
|
id: _comboSlot
|
|
x: (parent.width / 5 )
|
|
y: 0
|
|
width: (parent.width / 5)
|
|
height: parent.height / rows;
|
|
font.pixelSize: parent.height / 35
|
|
model: ["S1", "S2"]
|
|
currentIndex: 1
|
|
contentItem: Text {
|
|
text: _comboSlot.displayText
|
|
font: _comboSlot.font
|
|
leftPadding: 10
|
|
verticalAlignment: Text.AlignVCenter
|
|
color: _comboSlot.enabled ? "white" : "darkgrey"
|
|
}
|
|
onCurrentTextChanged: {
|
|
droidstar.set_slot(_comboSlot.currentIndex);
|
|
}
|
|
visible: false
|
|
}
|
|
ComboBox {
|
|
id: _comboCC
|
|
x: (parent.width * 2 / 5 )
|
|
y: 0
|
|
width: (parent.width / 5)
|
|
height: parent.height / rows;
|
|
font.pixelSize: parent.height / 35
|
|
model: ["CC0", "CC1", "CC2", "CC3", "CC4", "CC5", "CC6", "CC7", "CC8", "CC9", "CC10", "CC11", "CC12", "CC13", "CC14", "CC15"]
|
|
contentItem: Text {
|
|
text: _comboCC.displayText
|
|
font: _comboCC.font
|
|
leftPadding: 10
|
|
verticalAlignment: Text.AlignVCenter
|
|
color: _comboCC.enabled ? "white" : "darkgrey"
|
|
}
|
|
onCurrentTextChanged: {
|
|
droidstar.set_cc(_comboCC.currentIndex);
|
|
}
|
|
visible: false
|
|
}
|
|
Button {
|
|
id: _connectbutton
|
|
x: parent.width / 2
|
|
y: 0
|
|
width: parent.width / 2
|
|
height: parent.height / rows
|
|
text: qsTr("Connect")
|
|
font.pixelSize: parent.height / 30
|
|
onClicked: {
|
|
//settingsTab.callsignEdit.text = settingsTab.callsignEdit.text.toUpperCase();
|
|
droidstar.set_callsign(settingsTab.callsignEdit.text.toUpperCase());
|
|
//droidstar.set_host(comboHost.currentText);
|
|
droidstar.set_module(comboModule.currentText);
|
|
droidstar.set_protocol(comboMode.currentText);
|
|
droidstar.set_dmrtgid(dmrtgidEdit.text);
|
|
droidstar.set_dmrid(settingsTab.dmridEdit.text);
|
|
droidstar.set_essid(settingsTab.comboEssid.currentText);
|
|
droidstar.set_bm_password(settingsTab.bmpwEdit.text);
|
|
droidstar.set_tgif_password(settingsTab.tgifpwEdit.text);
|
|
droidstar.set_latitude(settingsTab.latEdit.text);
|
|
droidstar.set_longitude(settingsTab.lonEdit.text);
|
|
droidstar.set_location(settingsTab.locEdit.text);
|
|
droidstar.set_description(settingsTab.descEdit.text);
|
|
droidstar.set_url(settingsTab.urlEdit.text);
|
|
droidstar.set_swid(settingsTab.swidEdit.text);
|
|
droidstar.set_pkgid(settingsTab.pkgidEdit.text);
|
|
droidstar.set_dmr_options(settingsTab.dmroptsEdit.text);
|
|
droidstar.set_dmr_pc(mainTab.privateBox.checked);
|
|
droidstar.set_txtimeout(settingsTab.txtimerEdit.text);
|
|
//droidstar.set_toggletx(toggleTX.checked);
|
|
droidstar.set_xrf2ref(settingsTab.xrf2ref.checked);
|
|
droidstar.set_ipv6(settingsTab.ipv6.checked);
|
|
droidstar.set_vocoder(settingsTab.comboVocoder.currentText);
|
|
droidstar.set_modem(settingsTab.comboModem.currentText);
|
|
droidstar.set_playback(settingsTab.comboPlayback.currentText);
|
|
droidstar.set_capture(settingsTab.comboCapture.currentText);
|
|
|
|
droidstar.set_modemRxFreq(settingsTab.modemRXFreqEdit.text);
|
|
droidstar.set_modemTxFreq(settingsTab.modemTXFreqEdit.text);
|
|
droidstar.set_modemRxOffset(settingsTab.modemRXOffsetEdit.text);
|
|
droidstar.set_modemTxOffset(settingsTab.modemTXOffsetEdit.text);
|
|
droidstar.set_modemRxDCOffset(settingsTab.modemRXDCOffsetEdit.text);
|
|
droidstar.set_modemTxDCOffset(settingsTab.modemTXDCOffsetEdit.text);
|
|
droidstar.set_modemRxLevel(settingsTab.modemRXLevelEdit.text);
|
|
droidstar.set_modemTxLevel(settingsTab.modemRXLevelEdit.text);
|
|
droidstar.set_modemRFLevel(settingsTab.modemRFLevelEdit.text);
|
|
droidstar.set_modemTxDelay(settingsTab.modemTXDelayEdit.text);
|
|
droidstar.set_modemCWIdTxLevel(settingsTab.modemCWIdTXLevelEdit.text);
|
|
droidstar.set_modemDstarTxLevel(settingsTab.modemDStarTXLevelEdit.text);
|
|
droidstar.set_modemDMRTxLevel(settingsTab.modemDMRTXLevelEdit.text);
|
|
droidstar.set_modemYSFTxLevel(settingsTab.modemYSFTXLevelEdit.text);
|
|
droidstar.set_modemP25TxLevel(settingsTab.modemYSFTXLevelEdit.text);
|
|
droidstar.set_modemNXDNTxLevel(settingsTab.modemNXDNTXLevelEdit.text);
|
|
droidstar.set_modemBaud(settingsTab.modemBaudEdit.text);
|
|
//droidstar.set_mmdvm_direct(settingsTab.mmdvmBox.checked)
|
|
droidstar.process_connect();
|
|
}
|
|
}
|
|
ComboBox {
|
|
id: _comboHost
|
|
x: 5
|
|
y: (parent.height / rows + 1) * 1;
|
|
width: ((parent.width * 3) / 4) - 5
|
|
height: parent.height / rows;
|
|
font.pixelSize: parent.height / 35
|
|
currentIndex: -1
|
|
displayText: currentIndex === -1 ? "Host..." : currentText
|
|
contentItem: Text {
|
|
text: _comboHost.displayText
|
|
font: _comboHost.font
|
|
leftPadding: 10
|
|
verticalAlignment: Text.AlignVCenter
|
|
color: _comboHost.enabled ? "white" : "darkgrey"
|
|
}
|
|
onCurrentTextChanged: {
|
|
if(settingsTab.mmdvmBox.checked){
|
|
droidstar.set_dst(_comboHost.currentText);
|
|
}
|
|
if(!droidstar.get_modelchange()){
|
|
droidstar.process_host_change(_comboHost.currentText);
|
|
}
|
|
}
|
|
}
|
|
ComboBox {
|
|
id: _comboModule
|
|
x: ((parent.width * 3) / 4)
|
|
y: (parent.height / rows + 1) * 1
|
|
width: (parent.width / 4) - 5
|
|
height: parent.height / rows;
|
|
font.pixelSize: parent.height / 35
|
|
currentIndex: -1
|
|
displayText: currentIndex === -1 ? "Mod..." : currentText
|
|
model: [" ", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"]
|
|
contentItem: Text {
|
|
text: _comboModule.displayText
|
|
font: _comboModule.font
|
|
leftPadding: 10
|
|
verticalAlignment: Text.AlignVCenter
|
|
color: _comboModule.enabled ? "white" : "darkgrey"
|
|
}
|
|
onCurrentTextChanged: {
|
|
if(_comboMode.loaded){
|
|
droidstar.set_module(_comboModule.currentText);
|
|
}
|
|
}
|
|
}
|
|
CheckBox {
|
|
id: _privateBox
|
|
x: ((parent.width * 3) / 4)
|
|
y: (parent.height / rows + 1) * 1;
|
|
width: (parent.width / 4) - 5
|
|
height: parent.height / rows
|
|
text: qsTr("Private")
|
|
onClicked:{
|
|
droidstar.set_dmr_pc(privateBox.checked)
|
|
//console.log("screen size ", parent.width, " x ", parent.height);
|
|
}
|
|
visible: false
|
|
}
|
|
Text {
|
|
id: _dtmflabel
|
|
x: 5
|
|
y: (parent.height / rows + 1) * 4;
|
|
width: parent.width / 5
|
|
height: parent.height / rows;
|
|
text: qsTr("DTMF")
|
|
color: "white"
|
|
font.pixelSize: parent.height / 30;
|
|
verticalAlignment: Text.AlignVCenter
|
|
visible: false
|
|
}
|
|
TextField {
|
|
id: _editIAXDTMF
|
|
x: (parent.width / 4)
|
|
y: (parent.height / rows + 1) * 4;
|
|
width: (parent.width * 3 / 8) - 4;
|
|
height: parent.height / rows;
|
|
font.pixelSize: parent.height / 35
|
|
//inputMethodHints: "ImhPreferNumbers"
|
|
visible: false
|
|
}
|
|
Button {
|
|
id: _dtmfsendbutton
|
|
x: (parent.width * 5 / 8)
|
|
y: (parent.height / rows + 1) * 4;
|
|
width: (parent.width * 3 / 8) - 5;
|
|
height: parent.height / rows;
|
|
text: qsTr("Send")
|
|
font.pixelSize: parent.height / 30
|
|
onClicked: {
|
|
droidstar.dtmf_send_clicked(editIAXDTMF.text);
|
|
}
|
|
visible: false
|
|
}
|
|
Text {
|
|
id: _element3
|
|
x: 5
|
|
y: (parent.height / rows + 1) * 2;
|
|
width: parent.width / 5
|
|
height: parent.height / rows;
|
|
text: qsTr("TGID")
|
|
color: "white"
|
|
font.pixelSize: parent.height / 30;
|
|
verticalAlignment: Text.AlignVCenter
|
|
visible: false
|
|
}
|
|
TextField {
|
|
visible: false
|
|
id: _dmrtgidEdit
|
|
x: parent.width / 5
|
|
y: (parent.height / rows + 1) * 2
|
|
width: parent.width / 5
|
|
height: parent.height / rows
|
|
font.pixelSize: parent.height / 35
|
|
selectByMouse: true
|
|
inputMethodHints: "ImhPreferNumbers"
|
|
text: qsTr("")
|
|
onEditingFinished: {
|
|
droidstar.tgid_text_changed(dmrtgidEdit.text)
|
|
}
|
|
}
|
|
ComboBox {
|
|
visible: false
|
|
id: _comboM17CAN
|
|
x: parent.width / 5
|
|
y: (parent.height / rows + 1) * 2
|
|
width: parent.width / 5
|
|
height: parent.height / rows;
|
|
font.pixelSize: parent.height / 35
|
|
currentIndex: 0
|
|
model: ["0", "1", "2", "3", "4", "5", "6", "7"]
|
|
contentItem: Text {
|
|
text: _comboM17CAN.displayText
|
|
font: _comboM17CAN.font
|
|
leftPadding: 10
|
|
verticalAlignment: Text.AlignVCenter
|
|
color: _comboM17CAN.enabled ? "white" : "darkgrey"
|
|
}
|
|
onCurrentTextChanged: {
|
|
droidstar.set_modemM17CAN(_comboM17CAN.currentText);
|
|
}
|
|
}
|
|
CheckBox {
|
|
id: _swtxBox
|
|
x: (parent.width * 2 / 5) + 5
|
|
y: (parent.height / rows + 1) * 2;
|
|
width: parent.width / 4
|
|
height: parent.height / rows
|
|
font.pixelSize: parent.height / 40;
|
|
text: qsTr("SWTX")
|
|
onClicked:{
|
|
droidstar.set_swtx(_swtxBox.checked)
|
|
}
|
|
}
|
|
CheckBox {
|
|
id: _swrxBox
|
|
x: (parent.width * 3 / 5) + 5
|
|
y: (parent.height / rows + 1) * 2;
|
|
width: parent.width / 4
|
|
height: parent.height / rows
|
|
font.pixelSize: parent.height / 40;
|
|
text: qsTr("SWRX")
|
|
onClicked:{
|
|
droidstar.set_swrx(_swrxBox.checked)
|
|
}
|
|
}
|
|
|
|
CheckBox {
|
|
id: _agcBox
|
|
x: (parent.width * 4 / 5) + 5
|
|
y: (parent.height / rows + 1) * 2;
|
|
width: parent.width / 4
|
|
height: parent.height / rows
|
|
font.pixelSize: parent.height / 40;
|
|
text: qsTr("AGC")
|
|
onClicked:{
|
|
droidstar.set_agc(_agcBox.checked)
|
|
}
|
|
}
|
|
Text {
|
|
id: micgain_label
|
|
x: 10
|
|
y: (parent.height / rows + 1) * 3;
|
|
width: parent.width / 4;
|
|
height: parent.height / rows;
|
|
text: qsTr("Mic")
|
|
color: "white"
|
|
font.pixelSize: parent.height / 40;
|
|
verticalAlignment: Text.AlignVCenter
|
|
}
|
|
Slider {
|
|
property double v;
|
|
visible: true
|
|
id: _slidermicGain
|
|
x: (parent.width / 4) + 10
|
|
y: (parent.height / rows + 1) * 3;
|
|
width: (parent.width * 3 / 4) - 20
|
|
height: parent.height / rows;
|
|
value: 0.1
|
|
onValueChanged: {
|
|
v = value * 100;
|
|
droidstar.set_input_volume(value);
|
|
micgain_label.text = "Mic " + v.toFixed(1);
|
|
}
|
|
}
|
|
Text {
|
|
id: _label1
|
|
x: 10
|
|
y: (parent.height / rows + 1) * 4;
|
|
width: parent.width / 3
|
|
height: parent.height / rows;
|
|
text: qsTr("MYCALL")
|
|
color: "white"
|
|
font.pixelSize: parent.height / 30;
|
|
}
|
|
Text {
|
|
id: _label2
|
|
x: 10
|
|
y: (parent.height / rows + 1) * 5;
|
|
width: parent.width / 3
|
|
height: parent.height / rows;
|
|
text: qsTr("URCALL")
|
|
color: "white"
|
|
font.pixelSize: parent.height / 30;
|
|
}
|
|
|
|
Text {
|
|
id: _label3
|
|
x: 10
|
|
y: (parent.height / rows + 1) * 6;
|
|
width: parent.width / 3
|
|
height: parent.height / rows;
|
|
text: qsTr("RPTR1")
|
|
color: "white"
|
|
font.pixelSize: parent.height / 30;
|
|
}
|
|
|
|
Text {
|
|
id: _label4
|
|
x: 10
|
|
y: (parent.height / rows + 1) * 7;
|
|
width: parent.width / 3
|
|
height: parent.height / rows;
|
|
text: qsTr("RPTR2")
|
|
color: "white"
|
|
font.pixelSize: parent.height / 30;
|
|
}
|
|
|
|
Text {
|
|
id: _label5
|
|
x: 10
|
|
y: (parent.height / rows + 1) * 8;
|
|
width: parent.width / 3
|
|
height: parent.height / rows;
|
|
text: qsTr("StrmID")
|
|
color: "white"
|
|
font.pixelSize: parent.height / 30;
|
|
}
|
|
|
|
Text {
|
|
id: _label6
|
|
x: 10
|
|
y: (parent.height / rows + 1) * 9;
|
|
width: parent.width / 3
|
|
height: parent.height / rows;
|
|
text: qsTr("Text")
|
|
color: "white"
|
|
font.pixelSize: parent.height / 30;
|
|
}
|
|
Text {
|
|
id: _label7
|
|
x: 10
|
|
y: (parent.height / rows + 1) * 10;
|
|
width: parent.width / 3
|
|
height: parent.height / rows;
|
|
text: qsTr("")
|
|
color: "white"
|
|
font.pixelSize: parent.height / 30;
|
|
}
|
|
Text {
|
|
id: _data1
|
|
x: parent.width / 3
|
|
y: (parent.height / rows + 1) * 4;
|
|
width: (parent.width * 2) / 3
|
|
height: parent.height / rows;
|
|
text: qsTr("")
|
|
color: "white"
|
|
font.pixelSize: parent.height / 30;
|
|
}
|
|
|
|
Text {
|
|
id: _data2
|
|
x: parent.width / 3
|
|
y: (parent.height / rows + 1) * 5;
|
|
width: (parent.width * 2) / 3
|
|
height: parent.height / rows;
|
|
text: qsTr("")
|
|
color: "white"
|
|
font.pixelSize: parent.height / 30;
|
|
}
|
|
|
|
Text {
|
|
id: _data3
|
|
x: parent.width / 3
|
|
y: (parent.height / rows + 1) * 6;
|
|
width: (parent.width * 2) / 3
|
|
height: parent.height / rows;
|
|
text: qsTr("")
|
|
color: "white"
|
|
font.pixelSize: parent.height / 30;
|
|
}
|
|
|
|
Text {
|
|
id: _data4
|
|
x: parent.width / 3
|
|
y: (parent.height / rows + 1) * 7;
|
|
width: (parent.width * 2) / 3
|
|
height: parent.height / rows;
|
|
text: qsTr("")
|
|
color: "white"
|
|
font.pixelSize: parent.height / 30;
|
|
}
|
|
|
|
Text {
|
|
id: _data5
|
|
x: parent.width / 3
|
|
y: (parent.height / rows + 1) * 8;
|
|
width: (parent.width * 2) / 3
|
|
height: parent.height / rows;
|
|
text: qsTr("")
|
|
color: "white"
|
|
font.pixelSize: parent.height / 30;
|
|
}
|
|
|
|
Text {
|
|
id: _data6
|
|
x: parent.width / 3
|
|
y:(parent.height / rows + 1) * 9;
|
|
width: (parent.width * 2) / 3
|
|
height: parent.height / rows;
|
|
text: qsTr("")
|
|
color: "white"
|
|
font.pixelSize: parent.height / 30;
|
|
}
|
|
Text {
|
|
id: _data7
|
|
x: parent.width / 3
|
|
y:(parent.height / rows + 1) * 10;
|
|
width: (parent.width * 2) / 3
|
|
height: parent.height / rows;
|
|
text: qsTr("")
|
|
color: "white"
|
|
font.pixelSize: parent.height / 30;
|
|
}
|
|
|
|
Text {
|
|
id: _ambestatus
|
|
x: 10
|
|
y: (parent.height / rows + 1) * 11;
|
|
width: parent.width - 20
|
|
height: parent.height / rows;
|
|
text: qsTr("No AMBE hardware connected")
|
|
color: "white"
|
|
font.pixelSize: parent.height / 35;
|
|
}
|
|
Text {
|
|
id: _mmdvmstatus
|
|
x: 10
|
|
y: (parent.height / rows + 1) * 12;
|
|
width: parent.width - 20
|
|
height: parent.height / rows;
|
|
text: qsTr("No MMDVM connected")
|
|
color: "white"
|
|
font.pixelSize: parent.height / 35;
|
|
}
|
|
Text {
|
|
id: _netstatus
|
|
x: 10
|
|
y: (parent.height / rows + 1) * 13;
|
|
width: parent.width - 20
|
|
height: parent.height / rows;
|
|
text: qsTr("Not Connected to network")
|
|
color: "white"
|
|
font.pixelSize: parent.height / 35;
|
|
}
|
|
Rectangle {
|
|
x: 10
|
|
y: (parent.height / rows + 1) * 14;
|
|
width: parent.width - 20
|
|
height: parent.height / 30;
|
|
color: "black"
|
|
border.color: "black"
|
|
border.width: 1
|
|
radius: 5
|
|
}
|
|
Rectangle {
|
|
id: _levelMeter
|
|
x: 10
|
|
y: (parent.height / rows + 1) * 14;
|
|
width: 0
|
|
height: parent.height / 30;
|
|
color: "#80C342"
|
|
border.color: "black"
|
|
border.width: 1
|
|
radius: 5
|
|
}
|
|
ButtonGroup {
|
|
id: ttsvoicegroup
|
|
onClicked: {
|
|
droidstar.tts_changed(button.text);
|
|
}
|
|
}
|
|
CheckBox {
|
|
id: mic
|
|
visible: tts ? true : false;
|
|
x: 5
|
|
y: (parent.height / rows + 1) * 15;
|
|
height: 25
|
|
spacing: 1
|
|
text: qsTr("Mic")
|
|
checked: true
|
|
ButtonGroup.group: ttsvoicegroup
|
|
}
|
|
CheckBox {
|
|
id: tts1
|
|
visible: tts ? true : false;
|
|
x: parent.width / 4
|
|
y: (parent.height / rows + 1) * 15;
|
|
height: 25
|
|
spacing: 1
|
|
text: qsTr("TTS1")
|
|
ButtonGroup.group: ttsvoicegroup
|
|
}
|
|
CheckBox {
|
|
id: tts2
|
|
visible: tts ? true : false;
|
|
x: parent.width * 2 / 4
|
|
y: (parent.height / rows + 1) * 15;
|
|
height: 25
|
|
spacing: 1
|
|
text: qsTr("TTS2")
|
|
checked: true
|
|
ButtonGroup.group: ttsvoicegroup
|
|
}
|
|
CheckBox {
|
|
id: tts3
|
|
visible: tts ? true : false;
|
|
x: parent.width * 3 / 4
|
|
y: (parent.height / rows + 1) * 15;
|
|
height: 25
|
|
spacing: 1
|
|
text: qsTr("TTS3")
|
|
ButtonGroup.group: ttsvoicegroup
|
|
}
|
|
TextField {
|
|
id: _ttstxtedit
|
|
visible: tts ? true : false;
|
|
x: 5
|
|
y: (parent.height / rows + 1) * 16;
|
|
width: parent.width - 10
|
|
height: parent.height / rows
|
|
font.pixelSize: parent.height / 35
|
|
selectByMouse: true
|
|
inputMethodHints: "ImhPreferNumbers"
|
|
text: qsTr("")
|
|
onEditingFinished: {
|
|
droidstar.tts_text_changed(_ttstxtedit.text)
|
|
}
|
|
}
|
|
Button {
|
|
Timer {
|
|
id: _txtimer
|
|
repeat: true;
|
|
onTriggered: {
|
|
++buttonTX.cnt;
|
|
btntxt.text = "TX: " + buttonTX.cnt;
|
|
if(buttonTX.cnt >= parseInt(settingsTab.txtimerEdit.text)){
|
|
buttonTX.tx = false;
|
|
droidstar.click_tx(buttonTX.tx);
|
|
_txtimer.running = false;
|
|
_btntxt.text = "TX";
|
|
}
|
|
}
|
|
}
|
|
|
|
property bool tx: false
|
|
property int cnt: 0
|
|
visible: true
|
|
enabled: false
|
|
id: _buttonTX
|
|
background: Rectangle {
|
|
color: _buttonTX.tx ? "#800000" : "steelblue" //"#80c342"
|
|
radius: 10
|
|
Text {
|
|
id:_btntxt
|
|
anchors.centerIn: parent
|
|
font.pointSize: 18
|
|
text: qsTr("TX")
|
|
}
|
|
}
|
|
x: 10
|
|
y: (parent.height / rows + 1) * ( tts ? 17 : 15);
|
|
//y: parent.height - ((parent.height / 5) + 5);
|
|
width: parent.width - 20
|
|
height: parent.height - y - 10
|
|
//text: qsTr("TX")
|
|
font.pointSize: 24
|
|
onClicked: {
|
|
if(settingsTab.toggleTX.checked){
|
|
tx = !tx;
|
|
droidstar.click_tx(tx);
|
|
if(tx){
|
|
cnt = 0;
|
|
_txtimer.running = true;
|
|
_btntxt.color = "white";
|
|
}
|
|
else{
|
|
_txtimer.running = false;
|
|
btntxt.color = "black";
|
|
_btntxt.text = "TX";
|
|
}
|
|
}
|
|
}
|
|
onPressed: {
|
|
if(!settingsTab.toggleTX.checked){
|
|
tx = true;
|
|
droidstar.press_tx();
|
|
}
|
|
}
|
|
onReleased: {
|
|
if(!settingsTab.toggleTX.checked){
|
|
tx = false;
|
|
droidstar.release_tx();
|
|
}
|
|
}
|
|
onCanceled: {
|
|
if(!settingsTab.toggleTX.checked){
|
|
tx = false;
|
|
droidstar.release_tx();
|
|
}
|
|
}
|
|
}
|
|
}
|