mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-23 04:38:37 -05:00
Adjust proportions between text windows if displaying DXCC
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3555 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
ee4ae6589e
commit
b7284c185a
@ -397,7 +397,7 @@ MainWindow::MainWindow(QSettings * settings, QSharedMemory *shdmem, QString *the
|
|||||||
psk_Reporter = new PSK_Reporter(this);
|
psk_Reporter = new PSK_Reporter(this);
|
||||||
psk_Reporter->setLocalStation(m_myCall,m_myGrid, m_antDescription[m_band], "WSJT-X r" + rev.mid(6,4) );
|
psk_Reporter->setLocalStation(m_myCall,m_myGrid, m_antDescription[m_band], "WSJT-X r" + rev.mid(6,4) );
|
||||||
|
|
||||||
m_logBook.init();
|
on_actionEnable_DXCC_entity_triggered(m_displayDXCCEntity); // sets text window proportions and (re)inits the logbook
|
||||||
|
|
||||||
ui->label_9->setStyleSheet("QLabel{background-color: #aabec8}");
|
ui->label_9->setStyleSheet("QLabel{background-color: #aabec8}");
|
||||||
ui->label_10->setStyleSheet("QLabel{background-color: #aabec8}");
|
ui->label_10->setStyleSheet("QLabel{background-color: #aabec8}");
|
||||||
@ -1416,6 +1416,7 @@ void MainWindow::readFromStdout() //readFromStdout
|
|||||||
m_blankLine=false;
|
m_blankLine=false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
QString t1=t.replace("\n","").mid(0,t.length()-4);
|
QString t1=t.replace("\n","").mid(0,t.length()-4);
|
||||||
|
|
||||||
// the left band display
|
// the left band display
|
||||||
@ -2681,6 +2682,17 @@ void MainWindow::on_actionEnable_DXCC_entity_triggered(bool checked)
|
|||||||
m_displayDXCCEntity=checked;
|
m_displayDXCCEntity=checked;
|
||||||
if (checked)
|
if (checked)
|
||||||
m_logBook.init(); // re-read the log and cty.dat files
|
m_logBook.init(); // re-read the log and cty.dat files
|
||||||
|
|
||||||
|
if (checked) // adjust the proportions between the two text displays
|
||||||
|
{
|
||||||
|
ui->gridLayout->setColumnStretch(0,55);
|
||||||
|
ui->gridLayout->setColumnStretch(1,45);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
ui->gridLayout->setColumnStretch(0,0);
|
||||||
|
ui->gridLayout->setColumnStretch(1,0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_actionClear_DX_Call_and_Grid_after_logging_triggered(bool checked)
|
void MainWindow::on_actionClear_DX_Call_and_Grid_after_logging_triggered(bool checked)
|
||||||
|
Loading…
Reference in New Issue
Block a user