Multi-channel decode

* Changed text and default value for disabling
    multi-channel decoding when no viewer is
    visible
pull/1/head
David Freese 2013-10-15 17:32:31 -05:00
rodzic d56a7f449f
commit adc612843e
2 zmienionych plików z 8 dodań i 7 usunięć

Wyświetl plik

@ -8780,7 +8780,6 @@ igured on the\n\"Notifications\" configure dialog."));
{ tabsMisc = new Fl_Tabs(0, 25, 540, 345);
tabsMisc->selection_color(FL_LIGHT1);
{ tabCPUspeed = new Fl_Group(0, 50, 540, 320, _("CPU"));
tabCPUspeed->hide();
{ Fl_Group* o = new Fl_Group(25, 75, 490, 51);
o->box(FL_ENGRAVED_FRAME);
o->align(Fl_Align(FL_ALIGN_TOP_LEFT|FL_ALIGN_INSIDE));
@ -8795,6 +8794,7 @@ igured on the\n\"Notifications\" configure dialog."));
tabCPUspeed->end();
} // Fl_Group* tabCPUspeed
{ tabNBEMS = new Fl_Group(0, 50, 540, 320, _("NBEMS"));
tabNBEMS->hide();
{ Fl_Group* o = new Fl_Group(20, 65, 500, 75, _("NBEMS data file interface"));
o->box(FL_ENGRAVED_FRAME);
o->align(Fl_Align(FL_ALIGN_TOP_LEFT|FL_ALIGN_INSIDE));
@ -8993,9 +8993,10 @@ igured on the\n\"Notifications\" configure dialog."));
btnPSKRepQRG->callback((Fl_Callback*)cb_btnPSKRepQRG);
btnPSKRepQRG->value(progdefaults.pskrep_qrg);
} // Fl_Check_Button* btnPSKRepQRG
{ Fl_Check_Button* o = btn_report_when_visible = new Fl_Check_Button(40, 195, 416, 20, _("Enable spotting only when signal browser(s) are visible"));
btn_report_when_visible->tooltip(_("Enable to reduce CPU load"));
{ Fl_Check_Button* o = btn_report_when_visible = new Fl_Check_Button(40, 195, 416, 20, _("Disable spotting when signal browser(s) are not visible."));
btn_report_when_visible->tooltip(_("Check to reduce CPU load in PSK and RTTY modes."));
btn_report_when_visible->down_box(FL_DOWN_BOX);
btn_report_when_visible->value(1);
btn_report_when_visible->callback((Fl_Callback*)cb_btn_report_when_visible);
o->value(progdefaults.report_when_visible);
} // Fl_Check_Button* btn_report_when_visible

Wyświetl plik

@ -5008,7 +5008,7 @@ progdefaults.changed = true;}
} {
Fl_Group tabCPUspeed {
label CPU open
xywh {0 50 540 320} hide
xywh {0 50 540 320}
} {
Fl_Group {} {open
xywh {25 75 490 51} box ENGRAVED_FRAME align 21
@ -5024,7 +5024,7 @@ progdefaults.changed = true;}
}
Fl_Group tabNBEMS {
label NBEMS open
xywh {0 50 540 320}
xywh {0 50 540 320} hide
} {
Fl_Group {} {
label {NBEMS data file interface} open
@ -5186,10 +5186,10 @@ progdefaults.changed = true;}
code0 {btnPSKRepQRG->value(progdefaults.pskrep_qrg);}
}
Fl_Check_Button btn_report_when_visible {
label {Enable spotting only when signal browser(s) are visible}
label {Disable spotting when signal browser(s) are not visible.}
callback {progdefaults.report_when_visible = o->value();
progdefaults.changed = true;}
tooltip {Enable to reduce CPU load} xywh {40 195 416 20} down_box DOWN_BOX
tooltip {Check to reduce CPU load in PSK and RTTY modes.} xywh {40 195 416 20} down_box DOWN_BOX value 1
code0 {o->value(progdefaults.report_when_visible);}
}
Fl_Input inpPSKRepHost {