mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-18 01:52:05 -05:00
Several updates for suitable packaging.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@2692 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
e69745959c
commit
143afdc294
Binary file not shown.
Binary file not shown.
@ -114,7 +114,7 @@ subroutine symspec(k,ntrperiod,nsps,nb,nbslider,pxdb,s,red, &
|
|||||||
cx(i)=c0(ja+i+1)
|
cx(i)=c0(ja+i+1)
|
||||||
enddo
|
enddo
|
||||||
|
|
||||||
ihsym=ihsym+1
|
if(ihsym.lt.184) ihsym=ihsym+1
|
||||||
cx(0:nfft3-1)=w3(1:nfft3)*cx(0:nfft3-1) !Apply window w3
|
cx(0:nfft3-1)=w3(1:nfft3)*cx(0:nfft3-1) !Apply window w3
|
||||||
call four2a(cx,nfft3,1,1,1) !Third forward FFT (X)
|
call four2a(cx,nfft3,1,1,1) !Third forward FFT (X)
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
//--------------------------------------------------------------- MainWindow
|
//---------------------------------------------------------------- MainWindow
|
||||||
#include "mainwindow.h"
|
#include "mainwindow.h"
|
||||||
#include "ui_mainwindow.h"
|
#include "ui_mainwindow.h"
|
||||||
#include "devsetup.h"
|
#include "devsetup.h"
|
||||||
|
@ -22,23 +22,23 @@ WideGraph::WideGraph(QWidget *parent) :
|
|||||||
|
|
||||||
//Restore user's settings
|
//Restore user's settings
|
||||||
QString inifile(QApplication::applicationDirPath());
|
QString inifile(QApplication::applicationDirPath());
|
||||||
inifile += "/map65.ini";
|
inifile += "/wsjtx.ini";
|
||||||
QSettings settings(inifile, QSettings::IniFormat);
|
QSettings settings(inifile, QSettings::IniFormat);
|
||||||
|
|
||||||
settings.beginGroup("WideGraph");
|
settings.beginGroup("WideGraph");
|
||||||
ui->widePlot->setPlotZero(settings.value("PlotZero", 20).toInt());
|
ui->widePlot->setPlotZero(settings.value("PlotZero", 0).toInt());
|
||||||
ui->widePlot->setPlotGain(settings.value("PlotGain", 0).toInt());
|
ui->widePlot->setPlotGain(settings.value("PlotGain", 0).toInt());
|
||||||
ui->zeroSpinBox->setValue(ui->widePlot->getPlotZero());
|
ui->zeroSpinBox->setValue(ui->widePlot->getPlotZero());
|
||||||
ui->gainSpinBox->setValue(ui->widePlot->getPlotGain());
|
ui->gainSpinBox->setValue(ui->widePlot->getPlotGain());
|
||||||
int n = settings.value("FreqSpan",60).toInt();
|
int n = settings.value("FreqSpan",1).toInt();
|
||||||
int w = settings.value("PlotWidth",1000).toInt();
|
int w = settings.value("PlotWidth",1000).toInt();
|
||||||
ui->freqSpanSpinBox->setValue(n);
|
ui->freqSpanSpinBox->setValue(n);
|
||||||
ui->widePlot->setNSpan(n);
|
ui->widePlot->setNSpan(n);
|
||||||
// int nbpp = n * 32768.0/(w*96.0) + 0.5;
|
// int nbpp = n * 32768.0/(w*96.0) + 0.5;
|
||||||
ui->widePlot->setBinsPerPixel(1);
|
ui->widePlot->setBinsPerPixel(1);
|
||||||
m_waterfallAvg = settings.value("WaterfallAvg",10).toInt();
|
m_waterfallAvg = settings.value("WaterfallAvg",5).toInt();
|
||||||
ui->waterfallAvgSpinBox->setValue(m_waterfallAvg);
|
ui->waterfallAvgSpinBox->setValue(m_waterfallAvg);
|
||||||
m_dialFreq=settings.value("DialFreqMHz",473.000).toDouble();
|
m_dialFreq=settings.value("DialFreqMHz",474.000).toDouble();
|
||||||
ui->fDialLineEdit->setText(QString::number(m_dialFreq));
|
ui->fDialLineEdit->setText(QString::number(m_dialFreq));
|
||||||
ui->widePlot->m_bCurrent=settings.value("Current",true).toBool();
|
ui->widePlot->m_bCurrent=settings.value("Current",true).toBool();
|
||||||
ui->widePlot->m_bCumulative=settings.value("Cumulative",false).toBool();
|
ui->widePlot->m_bCumulative=settings.value("Cumulative",false).toBool();
|
||||||
@ -62,7 +62,7 @@ void WideGraph::saveSettings()
|
|||||||
{
|
{
|
||||||
//Save user's settings
|
//Save user's settings
|
||||||
QString inifile(QApplication::applicationDirPath());
|
QString inifile(QApplication::applicationDirPath());
|
||||||
inifile += "/map65.ini";
|
inifile += "/wsjtx.ini";
|
||||||
QSettings settings(inifile, QSettings::IniFormat);
|
QSettings settings(inifile, QSettings::IniFormat);
|
||||||
|
|
||||||
settings.beginGroup("WideGraph");
|
settings.beginGroup("WideGraph");
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[Setup]
|
[Setup]
|
||||||
AppName=wsjtx
|
AppName=wsjtx
|
||||||
AppVerName=wsjtx Version 0.1 r2684
|
AppVerName=wsjtx Version 0.1 r2692
|
||||||
AppCopyright=Copyright (C) 2001-2012 by Joe Taylor, K1JT
|
AppCopyright=Copyright (C) 2001-2012 by Joe Taylor, K1JT
|
||||||
DefaultDirName=c:\wsjtx
|
DefaultDirName=c:\wsjtx
|
||||||
DefaultGroupName=wsjtx
|
DefaultGroupName=wsjtx
|
||||||
@ -10,6 +10,7 @@ Source: "c:\Users\joe\wsjt\wsjtx_install\wsjtx.exe"; DestDir: "{app}"
|
|||||||
Source: "c:\Users\joe\wsjt\wsjtx_install\wsjt.ico"; DestDir: "{app}"
|
Source: "c:\Users\joe\wsjt\wsjtx_install\wsjt.ico"; DestDir: "{app}"
|
||||||
Source: "c:\Users\joe\wsjt\wsjtx_install\afmhot.dat"; DestDir: "{app}";
|
Source: "c:\Users\joe\wsjt\wsjtx_install\afmhot.dat"; DestDir: "{app}";
|
||||||
Source: "c:\Users\joe\wsjt\wsjtx_install\blue.dat"; DestDir: "{app}";
|
Source: "c:\Users\joe\wsjt\wsjtx_install\blue.dat"; DestDir: "{app}";
|
||||||
|
Source: "c:\Users\joe\wsjt\wsjtx_install\WSJT-X_Quick_Start_Guide.pdf"; DestDir: "{app}";
|
||||||
Source: "c:\Users\joe\wsjt\QtSupport\*.dll"; DestDir: "{sys}"; Flags: onlyifdoesntexist
|
Source: "c:\Users\joe\wsjt\QtSupport\*.dll"; DestDir: "{sys}"; Flags: onlyifdoesntexist
|
||||||
Source: "c:\Users\joe\wsjt\wsjtx_install\save\000000_0000.wav"; DestDir: "{app}\save";
|
Source: "c:\Users\joe\wsjt\wsjtx_install\save\000000_0000.wav"; DestDir: "{app}\save";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user