mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-10 06:22:15 -05:00
1. Revision 3513 mistakenly removed needed changes to plotter.cpp.
They are restored here. 2. Fix a bug that failed to compute correct audio Tx frequency after program restart, if Split Tx is enabled. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3516 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
d080f45346
commit
c0e80753f2
@ -1862,6 +1862,15 @@ void MainWindow::guiUpdate()
|
|||||||
|
|
||||||
if(m_catEnabled and !m_bRigOpen) {
|
if(m_catEnabled and !m_bRigOpen) {
|
||||||
rigOpen();
|
rigOpen();
|
||||||
|
if(m_bSplit or m_bXIT) setXIT(m_txFreq);
|
||||||
|
if(m_bRigOpen and !m_bSplit) {
|
||||||
|
int ret=rig->setSplitFreq(MHz(m_dialFreq),RIG_VFO_B);
|
||||||
|
if(ret!=RIG_OK) {
|
||||||
|
QString rt;
|
||||||
|
rt.sprintf("Setting VFO_B failed: %d",ret);
|
||||||
|
msgBox(rt);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(nsec != m_sec0) { //Once per second
|
if(nsec != m_sec0) { //Once per second
|
||||||
|
33
plotter.cpp
33
plotter.cpp
@ -488,28 +488,29 @@ void CPlotter::setPalette(QString palette) //setPalette()
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
FILE* fp=NULL;
|
QFile f;
|
||||||
if(palette=="Blue") fp=fopen("blue.dat","r");
|
if(palette=="Blue") f.setFileName("blue.dat");
|
||||||
if(palette=="AFMHot") fp=fopen("afmhot.dat","r");
|
if(palette=="AFMHot") f.setFileName("afmhot.dat");
|
||||||
if(palette=="Gray1") fp=fopen("gray1.dat","r");
|
if(palette=="Gray1") f.setFileName("gray1.dat");
|
||||||
if(fp==NULL) {
|
if(f.open(QIODevice::ReadOnly)) {
|
||||||
|
QTextStream in(&f);
|
||||||
|
int n,r,g,b;
|
||||||
|
float xr,xg,xb;
|
||||||
|
for(int i=0; i<256; i++) {
|
||||||
|
in >> n >> xr >> xg >> xb;
|
||||||
|
r=255.0*xr + 0.5;
|
||||||
|
g=255.0*xg + 0.5;
|
||||||
|
b=255.0*xb + 0.5;
|
||||||
|
m_ColorTbl[i].setRgb(r,g,b);
|
||||||
|
}
|
||||||
|
f.close();
|
||||||
|
} else {
|
||||||
QMessageBox msgBox0;
|
QMessageBox msgBox0;
|
||||||
QString t="Error: Cannot find requested palette file.";
|
QString t="Error: Cannot find requested palette file.";
|
||||||
msgBox0.setText(t);
|
msgBox0.setText(t);
|
||||||
msgBox0.exec();
|
msgBox0.exec();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
int n,r,g,b;
|
|
||||||
float xr,xg,xb;
|
|
||||||
for(int i=0; i<256; i++) {
|
|
||||||
int nn=fscanf(fp,"%d%f%f%f",&n,&xr,&xg,&xb);
|
|
||||||
r=255.0*xr + 0.5;
|
|
||||||
g=255.0*xg + 0.5;
|
|
||||||
b=255.0*xb + 0.5;
|
|
||||||
m_ColorTbl[i].setRgb(r,g,b);
|
|
||||||
if(nn==-999999) i++; //Silence compiler warning
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
double CPlotter::fGreen()
|
double CPlotter::fGreen()
|
||||||
|
Loading…
Reference in New Issue
Block a user