User Interface Tweaks:
* Changed Window Menu to View Menu * Added Show Clock to View Menu * Changed minimum sizing for better fit on smaller screens * Reordered Clock and Date for Clock Priority
This commit is contained in:
		
							parent
							
								
									d47d88681b
								
							
						
					
					
						commit
						cebed44ccd
					
				@ -1102,10 +1102,9 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple,
 | 
				
			|||||||
  ui->menuTools->setEnabled(false);
 | 
					  ui->menuTools->setEnabled(false);
 | 
				
			||||||
  ui->menuView->setEnabled(false);
 | 
					  ui->menuView->setEnabled(false);
 | 
				
			||||||
  foreach(auto action, ui->menuBar->actions()){
 | 
					  foreach(auto action, ui->menuBar->actions()){
 | 
				
			||||||
      if(action->text() == "View") ui->menuBar->removeAction(action);
 | 
					      if(action->text() == "Old View") ui->menuBar->removeAction(action);
 | 
				
			||||||
      if(action->text() == "Mode") ui->menuBar->removeAction(action);
 | 
					      if(action->text() == "Old Mode") ui->menuBar->removeAction(action);
 | 
				
			||||||
      //if(action->text() == "Decode") ui->menuBar->removeAction(action);
 | 
					      if(action->text() == "Old Tools") ui->menuBar->removeAction(action);
 | 
				
			||||||
      if(action->text() == "Tools") ui->menuBar->removeAction(action);
 | 
					 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  ui->dxCallEntry->clear();
 | 
					  ui->dxCallEntry->clear();
 | 
				
			||||||
  ui->dxGridEntry->clear();
 | 
					  ui->dxGridEntry->clear();
 | 
				
			||||||
@ -1762,8 +1761,9 @@ void MainWindow::readSettings()
 | 
				
			|||||||
  ui->cbAutoSeq->setVisible(false);
 | 
					  ui->cbAutoSeq->setVisible(false);
 | 
				
			||||||
  ui->cbFirst->setVisible(false);
 | 
					  ui->cbFirst->setVisible(false);
 | 
				
			||||||
  m_settings->beginGroup("MainWindow");
 | 
					  m_settings->beginGroup("MainWindow");
 | 
				
			||||||
 | 
					  setMinimumSize(800, 400);
 | 
				
			||||||
  restoreGeometry (m_settings->value ("geometry", saveGeometry ()).toByteArray ());
 | 
					  restoreGeometry (m_settings->value ("geometry", saveGeometry ()).toByteArray ());
 | 
				
			||||||
  setMinimumSize(800, 545);
 | 
					  setMinimumSize(800, 400);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  m_geometryNoControls = m_settings->value ("geometryNoControls",saveGeometry()).toByteArray();
 | 
					  m_geometryNoControls = m_settings->value ("geometryNoControls",saveGeometry()).toByteArray();
 | 
				
			||||||
  restoreState (m_settings->value ("state", saveState ()).toByteArray ());
 | 
					  restoreState (m_settings->value ("state", saveState ()).toByteArray ());
 | 
				
			||||||
@ -2304,6 +2304,7 @@ void MainWindow::on_menuWindow_aboutToShow(){
 | 
				
			|||||||
    ui->actionShow_Call_Activity->setChecked(hsizes.at(2) > 0);
 | 
					    ui->actionShow_Call_Activity->setChecked(hsizes.at(2) > 0);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    auto vsizes = ui->mainSplitter->sizes();
 | 
					    auto vsizes = ui->mainSplitter->sizes();
 | 
				
			||||||
 | 
					    ui->actionShow_Frequency_Clock->setChecked(vsizes.first() > 0);
 | 
				
			||||||
    ui->actionShow_Waterfall->setChecked(vsizes.last() > 0);
 | 
					    ui->actionShow_Waterfall->setChecked(vsizes.last() > 0);
 | 
				
			||||||
    ui->actionShow_Waterfall_Controls->setChecked(m_wideGraph->controlsVisible());
 | 
					    ui->actionShow_Waterfall_Controls->setChecked(m_wideGraph->controlsVisible());
 | 
				
			||||||
    ui->actionShow_Waterfall_Controls->setEnabled(ui->actionShow_Waterfall->isChecked());
 | 
					    ui->actionShow_Waterfall_Controls->setEnabled(ui->actionShow_Waterfall->isChecked());
 | 
				
			||||||
@ -2343,6 +2344,13 @@ void MainWindow::on_menuWindow_aboutToShow(){
 | 
				
			|||||||
#endif
 | 
					#endif
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void MainWindow::on_actionShow_Frequency_Clock_triggered(bool checked){
 | 
				
			||||||
 | 
					    auto vsizes = ui->mainSplitter->sizes();
 | 
				
			||||||
 | 
					    vsizes[0] = checked ? ui->logHorizontalWidget->minimumHeight() : 0;
 | 
				
			||||||
 | 
					    ui->logHorizontalWidget->setVisible(checked);
 | 
				
			||||||
 | 
					    ui->mainSplitter->setSizes(vsizes);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void MainWindow::on_actionShow_Band_Activity_triggered(bool checked){
 | 
					void MainWindow::on_actionShow_Band_Activity_triggered(bool checked){
 | 
				
			||||||
    auto hsizes = ui->textHorizontalSplitter->sizes();
 | 
					    auto hsizes = ui->textHorizontalSplitter->sizes();
 | 
				
			||||||
    hsizes[0] = checked ? ui->textHorizontalSplitter->width()/4 : 0;
 | 
					    hsizes[0] = checked ? ui->textHorizontalSplitter->width()/4 : 0;
 | 
				
			||||||
@ -2435,6 +2443,8 @@ void MainWindow::openSettings(int tab){
 | 
				
			|||||||
                m_msAudioOutputBuffered);
 | 
					                m_msAudioOutputBuffered);
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        ui->bandComboBox->view ()->setMinimumWidth (ui->bandComboBox->view ()->sizeHintForColumn (FrequencyList_v2::frequency_mhz_column));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        displayDialFrequency ();
 | 
					        displayDialFrequency ();
 | 
				
			||||||
        displayActivity(true);
 | 
					        displayActivity(true);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -4405,9 +4415,10 @@ void MainWindow::guiUpdate()
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    auto drift = DriftingDateTime::drift();
 | 
					    auto drift = DriftingDateTime::drift();
 | 
				
			||||||
    QDateTime t = DriftingDateTime::currentDateTimeUtc();
 | 
					    QDateTime t = DriftingDateTime::currentDateTimeUtc();
 | 
				
			||||||
    QString utc = t.date().toString("yyyy MMM dd") + "\n " +
 | 
					    QStringList parts;
 | 
				
			||||||
      t.time().toString() + (!drift ? " " : QString(" (%1%2ms)").arg(drift > 0 ? "+" : "").arg(drift));
 | 
					    parts << (t.time().toString() + (!drift ? " " : QString(" (%1%2ms)").arg(drift > 0 ? "+" : "").arg(drift)));
 | 
				
			||||||
    ui->labUTC->setText(utc);
 | 
					    parts << t.date().toString("yyyy MMM dd");
 | 
				
			||||||
 | 
					    ui->labUTC->setText(parts.join("\n"));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    auto delta = t.secsTo(m_nextHeartbeat);
 | 
					    auto delta = t.secsTo(m_nextHeartbeat);
 | 
				
			||||||
    QString ping;
 | 
					    QString ping;
 | 
				
			||||||
 | 
				
			|||||||
@ -171,6 +171,7 @@ private slots:
 | 
				
			|||||||
  void on_tx5_currentTextChanged (QString const&);
 | 
					  void on_tx5_currentTextChanged (QString const&);
 | 
				
			||||||
  void on_tx6_editingFinished();
 | 
					  void on_tx6_editingFinished();
 | 
				
			||||||
  void on_menuWindow_aboutToShow();
 | 
					  void on_menuWindow_aboutToShow();
 | 
				
			||||||
 | 
					  void on_actionShow_Frequency_Clock_triggered(bool checked);
 | 
				
			||||||
  void on_actionShow_Band_Activity_triggered(bool checked);
 | 
					  void on_actionShow_Band_Activity_triggered(bool checked);
 | 
				
			||||||
  void on_actionShow_Call_Activity_triggered(bool checked);
 | 
					  void on_actionShow_Call_Activity_triggered(bool checked);
 | 
				
			||||||
  void on_actionShow_Waterfall_triggered(bool checked);
 | 
					  void on_actionShow_Waterfall_triggered(bool checked);
 | 
				
			||||||
 | 
				
			|||||||
@ -7,7 +7,7 @@
 | 
				
			|||||||
    <x>0</x>
 | 
					    <x>0</x>
 | 
				
			||||||
    <y>0</y>
 | 
					    <y>0</y>
 | 
				
			||||||
    <width>872</width>
 | 
					    <width>872</width>
 | 
				
			||||||
    <height>566</height>
 | 
					    <height>605</height>
 | 
				
			||||||
   </rect>
 | 
					   </rect>
 | 
				
			||||||
  </property>
 | 
					  </property>
 | 
				
			||||||
  <property name="sizePolicy">
 | 
					  <property name="sizePolicy">
 | 
				
			||||||
@ -23,6 +23,12 @@
 | 
				
			|||||||
   <string notr="true"/>
 | 
					   <string notr="true"/>
 | 
				
			||||||
  </property>
 | 
					  </property>
 | 
				
			||||||
  <widget class="QWidget" name="centralWidget">
 | 
					  <widget class="QWidget" name="centralWidget">
 | 
				
			||||||
 | 
					   <property name="sizePolicy">
 | 
				
			||||||
 | 
					    <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
 | 
				
			||||||
 | 
					     <horstretch>0</horstretch>
 | 
				
			||||||
 | 
					     <verstretch>0</verstretch>
 | 
				
			||||||
 | 
					    </sizepolicy>
 | 
				
			||||||
 | 
					   </property>
 | 
				
			||||||
   <layout class="QVBoxLayout" name="verticalLayout_6" stretch="0,0,0,0">
 | 
					   <layout class="QVBoxLayout" name="verticalLayout_6" stretch="0,0,0,0">
 | 
				
			||||||
    <property name="spacing">
 | 
					    <property name="spacing">
 | 
				
			||||||
     <number>6</number>
 | 
					     <number>6</number>
 | 
				
			||||||
@ -60,7 +66,7 @@
 | 
				
			|||||||
       <property name="sizePolicy">
 | 
					       <property name="sizePolicy">
 | 
				
			||||||
        <sizepolicy hsizetype="Preferred" vsizetype="MinimumExpanding">
 | 
					        <sizepolicy hsizetype="Preferred" vsizetype="MinimumExpanding">
 | 
				
			||||||
         <horstretch>0</horstretch>
 | 
					         <horstretch>0</horstretch>
 | 
				
			||||||
         <verstretch>0</verstretch>
 | 
					         <verstretch>1</verstretch>
 | 
				
			||||||
        </sizepolicy>
 | 
					        </sizepolicy>
 | 
				
			||||||
       </property>
 | 
					       </property>
 | 
				
			||||||
       <property name="minimumSize">
 | 
					       <property name="minimumSize">
 | 
				
			||||||
@ -395,7 +401,7 @@ color : white;
 | 
				
			|||||||
                 <number>0</number>
 | 
					                 <number>0</number>
 | 
				
			||||||
                </property>
 | 
					                </property>
 | 
				
			||||||
                <property name="text">
 | 
					                <property name="text">
 | 
				
			||||||
                 <string><html><head/><body><p align="center"><span style=" font-size:12pt;">2015 Jun 17 </span></p><p align="center"><span style=" font-size:12pt;">01:23:45 </span></p></body></html></string>
 | 
					                 <string><html><head/><body><p align="center"><span style=" font-size:12pt;">01:23:45<br/>2015 Jun 17 </span></p></body></html></string>
 | 
				
			||||||
                </property>
 | 
					                </property>
 | 
				
			||||||
                <property name="alignment">
 | 
					                <property name="alignment">
 | 
				
			||||||
                 <set>Qt::AlignCenter</set>
 | 
					                 <set>Qt::AlignCenter</set>
 | 
				
			||||||
@ -1171,15 +1177,15 @@ background-color: #00ff00;
 | 
				
			|||||||
      </widget>
 | 
					      </widget>
 | 
				
			||||||
      <widget class="QSplitter" name="textHorizontalSplitter">
 | 
					      <widget class="QSplitter" name="textHorizontalSplitter">
 | 
				
			||||||
       <property name="sizePolicy">
 | 
					       <property name="sizePolicy">
 | 
				
			||||||
        <sizepolicy hsizetype="MinimumExpanding" vsizetype="MinimumExpanding">
 | 
					        <sizepolicy hsizetype="MinimumExpanding" vsizetype="Expanding">
 | 
				
			||||||
         <horstretch>0</horstretch>
 | 
					         <horstretch>0</horstretch>
 | 
				
			||||||
         <verstretch>0</verstretch>
 | 
					         <verstretch>4</verstretch>
 | 
				
			||||||
        </sizepolicy>
 | 
					        </sizepolicy>
 | 
				
			||||||
       </property>
 | 
					       </property>
 | 
				
			||||||
       <property name="minimumSize">
 | 
					       <property name="minimumSize">
 | 
				
			||||||
        <size>
 | 
					        <size>
 | 
				
			||||||
         <width>0</width>
 | 
					         <width>0</width>
 | 
				
			||||||
         <height>100</height>
 | 
					         <height>75</height>
 | 
				
			||||||
        </size>
 | 
					        </size>
 | 
				
			||||||
       </property>
 | 
					       </property>
 | 
				
			||||||
       <property name="orientation">
 | 
					       <property name="orientation">
 | 
				
			||||||
@ -1707,11 +1713,17 @@ color:#555;
 | 
				
			|||||||
      </widget>
 | 
					      </widget>
 | 
				
			||||||
      <widget class="QFrame" name="frame_5">
 | 
					      <widget class="QFrame" name="frame_5">
 | 
				
			||||||
       <property name="sizePolicy">
 | 
					       <property name="sizePolicy">
 | 
				
			||||||
        <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
 | 
					        <sizepolicy hsizetype="Preferred" vsizetype="Minimum">
 | 
				
			||||||
         <horstretch>0</horstretch>
 | 
					         <horstretch>0</horstretch>
 | 
				
			||||||
         <verstretch>2</verstretch>
 | 
					         <verstretch>0</verstretch>
 | 
				
			||||||
        </sizepolicy>
 | 
					        </sizepolicy>
 | 
				
			||||||
       </property>
 | 
					       </property>
 | 
				
			||||||
 | 
					       <property name="minimumSize">
 | 
				
			||||||
 | 
					        <size>
 | 
				
			||||||
 | 
					         <width>0</width>
 | 
				
			||||||
 | 
					         <height>10</height>
 | 
				
			||||||
 | 
					        </size>
 | 
				
			||||||
 | 
					       </property>
 | 
				
			||||||
       <property name="frameShape">
 | 
					       <property name="frameShape">
 | 
				
			||||||
        <enum>QFrame::NoFrame</enum>
 | 
					        <enum>QFrame::NoFrame</enum>
 | 
				
			||||||
       </property>
 | 
					       </property>
 | 
				
			||||||
@ -1736,6 +1748,12 @@ color:#555;
 | 
				
			|||||||
        </property>
 | 
					        </property>
 | 
				
			||||||
        <item>
 | 
					        <item>
 | 
				
			||||||
         <widget class="QWidget" name="bandHorizontalWidget" native="true">
 | 
					         <widget class="QWidget" name="bandHorizontalWidget" native="true">
 | 
				
			||||||
 | 
					          <property name="sizePolicy">
 | 
				
			||||||
 | 
					           <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
 | 
				
			||||||
 | 
					            <horstretch>0</horstretch>
 | 
				
			||||||
 | 
					            <verstretch>0</verstretch>
 | 
				
			||||||
 | 
					           </sizepolicy>
 | 
				
			||||||
 | 
					          </property>
 | 
				
			||||||
          <layout class="QHBoxLayout" name="horizontalLayoutBand">
 | 
					          <layout class="QHBoxLayout" name="horizontalLayoutBand">
 | 
				
			||||||
           <property name="spacing">
 | 
					           <property name="spacing">
 | 
				
			||||||
            <number>0</number>
 | 
					            <number>0</number>
 | 
				
			||||||
@ -1757,8 +1775,17 @@ color:#555;
 | 
				
			|||||||
             <property name="spacing">
 | 
					             <property name="spacing">
 | 
				
			||||||
              <number>0</number>
 | 
					              <number>0</number>
 | 
				
			||||||
             </property>
 | 
					             </property>
 | 
				
			||||||
 | 
					             <property name="sizeConstraint">
 | 
				
			||||||
 | 
					              <enum>QLayout::SetDefaultConstraint</enum>
 | 
				
			||||||
 | 
					             </property>
 | 
				
			||||||
             <item>
 | 
					             <item>
 | 
				
			||||||
              <widget class="QFrame" name="frame_4">
 | 
					              <widget class="QFrame" name="frame_4">
 | 
				
			||||||
 | 
					               <property name="sizePolicy">
 | 
				
			||||||
 | 
					                <sizepolicy hsizetype="Preferred" vsizetype="MinimumExpanding">
 | 
				
			||||||
 | 
					                 <horstretch>0</horstretch>
 | 
				
			||||||
 | 
					                 <verstretch>0</verstretch>
 | 
				
			||||||
 | 
					                </sizepolicy>
 | 
				
			||||||
 | 
					               </property>
 | 
				
			||||||
               <property name="minimumSize">
 | 
					               <property name="minimumSize">
 | 
				
			||||||
                <size>
 | 
					                <size>
 | 
				
			||||||
                 <width>0</width>
 | 
					                 <width>0</width>
 | 
				
			||||||
@ -1789,6 +1816,12 @@ color:#555;
 | 
				
			|||||||
                </property>
 | 
					                </property>
 | 
				
			||||||
                <item>
 | 
					                <item>
 | 
				
			||||||
                 <widget class="QFrame" name="frame_3">
 | 
					                 <widget class="QFrame" name="frame_3">
 | 
				
			||||||
 | 
					                  <property name="sizePolicy">
 | 
				
			||||||
 | 
					                   <sizepolicy hsizetype="Preferred" vsizetype="MinimumExpanding">
 | 
				
			||||||
 | 
					                    <horstretch>0</horstretch>
 | 
				
			||||||
 | 
					                    <verstretch>0</verstretch>
 | 
				
			||||||
 | 
					                   </sizepolicy>
 | 
				
			||||||
 | 
					                  </property>
 | 
				
			||||||
                  <property name="minimumSize">
 | 
					                  <property name="minimumSize">
 | 
				
			||||||
                   <size>
 | 
					                   <size>
 | 
				
			||||||
                    <width>0</width>
 | 
					                    <width>0</width>
 | 
				
			||||||
@ -1889,7 +1922,7 @@ background-color: #00ff00;
 | 
				
			|||||||
                     <property name="minimumSize">
 | 
					                     <property name="minimumSize">
 | 
				
			||||||
                      <size>
 | 
					                      <size>
 | 
				
			||||||
                       <width>75</width>
 | 
					                       <width>75</width>
 | 
				
			||||||
                       <height>0</height>
 | 
					                       <height>1</height>
 | 
				
			||||||
                      </size>
 | 
					                      </size>
 | 
				
			||||||
                     </property>
 | 
					                     </property>
 | 
				
			||||||
                     <property name="maximumSize">
 | 
					                     <property name="maximumSize">
 | 
				
			||||||
@ -1923,14 +1956,14 @@ background-color: #00ff00;
 | 
				
			|||||||
           <item>
 | 
					           <item>
 | 
				
			||||||
            <widget class="QMdiArea" name="mdiArea">
 | 
					            <widget class="QMdiArea" name="mdiArea">
 | 
				
			||||||
             <property name="sizePolicy">
 | 
					             <property name="sizePolicy">
 | 
				
			||||||
              <sizepolicy hsizetype="Expanding" vsizetype="Minimum">
 | 
					              <sizepolicy hsizetype="Expanding" vsizetype="MinimumExpanding">
 | 
				
			||||||
               <horstretch>10</horstretch>
 | 
					               <horstretch>10</horstretch>
 | 
				
			||||||
               <verstretch>0</verstretch>
 | 
					               <verstretch>0</verstretch>
 | 
				
			||||||
              </sizepolicy>
 | 
					              </sizepolicy>
 | 
				
			||||||
             </property>
 | 
					             </property>
 | 
				
			||||||
             <property name="minimumSize">
 | 
					             <property name="minimumSize">
 | 
				
			||||||
              <size>
 | 
					              <size>
 | 
				
			||||||
               <width>0</width>
 | 
					               <width>1</width>
 | 
				
			||||||
               <height>1</height>
 | 
					               <height>1</height>
 | 
				
			||||||
              </size>
 | 
					              </size>
 | 
				
			||||||
             </property>
 | 
					             </property>
 | 
				
			||||||
@ -1950,13 +1983,16 @@ background-color: #00ff00;
 | 
				
			|||||||
           </item>
 | 
					           </item>
 | 
				
			||||||
           <item>
 | 
					           <item>
 | 
				
			||||||
            <layout class="QVBoxLayout" name="verticalLayout_9">
 | 
					            <layout class="QVBoxLayout" name="verticalLayout_9">
 | 
				
			||||||
 | 
					             <property name="sizeConstraint">
 | 
				
			||||||
 | 
					              <enum>QLayout::SetNoConstraint</enum>
 | 
				
			||||||
 | 
					             </property>
 | 
				
			||||||
             <property name="leftMargin">
 | 
					             <property name="leftMargin">
 | 
				
			||||||
              <number>4</number>
 | 
					              <number>4</number>
 | 
				
			||||||
             </property>
 | 
					             </property>
 | 
				
			||||||
             <item>
 | 
					             <item>
 | 
				
			||||||
              <widget class="QSlider" name="outAttenuation">
 | 
					              <widget class="QSlider" name="outAttenuation">
 | 
				
			||||||
               <property name="sizePolicy">
 | 
					               <property name="sizePolicy">
 | 
				
			||||||
                <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
 | 
					                <sizepolicy hsizetype="MinimumExpanding" vsizetype="MinimumExpanding">
 | 
				
			||||||
                 <horstretch>1</horstretch>
 | 
					                 <horstretch>1</horstretch>
 | 
				
			||||||
                 <verstretch>0</verstretch>
 | 
					                 <verstretch>0</verstretch>
 | 
				
			||||||
                </sizepolicy>
 | 
					                </sizepolicy>
 | 
				
			||||||
@ -1964,7 +2000,7 @@ background-color: #00ff00;
 | 
				
			|||||||
               <property name="minimumSize">
 | 
					               <property name="minimumSize">
 | 
				
			||||||
                <size>
 | 
					                <size>
 | 
				
			||||||
                 <width>60</width>
 | 
					                 <width>60</width>
 | 
				
			||||||
                 <height>0</height>
 | 
					                 <height>1</height>
 | 
				
			||||||
                </size>
 | 
					                </size>
 | 
				
			||||||
               </property>
 | 
					               </property>
 | 
				
			||||||
               <property name="font">
 | 
					               <property name="font">
 | 
				
			||||||
@ -2028,6 +2064,12 @@ background: qlineargradient(x1:0, y1:0, x2:1, y2:1, stop:0 #2ecc71, stop:1 #00FF
 | 
				
			|||||||
        </item>
 | 
					        </item>
 | 
				
			||||||
        <item>
 | 
					        <item>
 | 
				
			||||||
         <widget class="QFrame" name="driftSyncFrame">
 | 
					         <widget class="QFrame" name="driftSyncFrame">
 | 
				
			||||||
 | 
					          <property name="sizePolicy">
 | 
				
			||||||
 | 
					           <sizepolicy hsizetype="Expanding" vsizetype="Minimum">
 | 
				
			||||||
 | 
					            <horstretch>0</horstretch>
 | 
				
			||||||
 | 
					            <verstretch>0</verstretch>
 | 
				
			||||||
 | 
					           </sizepolicy>
 | 
				
			||||||
 | 
					          </property>
 | 
				
			||||||
          <property name="minimumSize">
 | 
					          <property name="minimumSize">
 | 
				
			||||||
           <size>
 | 
					           <size>
 | 
				
			||||||
            <width>0</width>
 | 
					            <width>0</width>
 | 
				
			||||||
@ -2920,7 +2962,7 @@ background: qlineargradient(x1:0, y1:0, x2:1, y2:1, stop:0 #2ecc71, stop:1 #00FF
 | 
				
			|||||||
                 <enum>QTabWidget::Triangular</enum>
 | 
					                 <enum>QTabWidget::Triangular</enum>
 | 
				
			||||||
                </property>
 | 
					                </property>
 | 
				
			||||||
                <property name="currentIndex">
 | 
					                <property name="currentIndex">
 | 
				
			||||||
                 <number>3</number>
 | 
					                 <number>0</number>
 | 
				
			||||||
                </property>
 | 
					                </property>
 | 
				
			||||||
                <widget class="QWidget" name="tab">
 | 
					                <widget class="QWidget" name="tab">
 | 
				
			||||||
                 <attribute name="title">
 | 
					                 <attribute name="title">
 | 
				
			||||||
@ -4710,7 +4752,7 @@ list. The list can be maintained in Settings (F2).</string>
 | 
				
			|||||||
     <bool>false</bool>
 | 
					     <bool>false</bool>
 | 
				
			||||||
    </property>
 | 
					    </property>
 | 
				
			||||||
    <property name="title">
 | 
					    <property name="title">
 | 
				
			||||||
     <string>View</string>
 | 
					     <string>Old View</string>
 | 
				
			||||||
    </property>
 | 
					    </property>
 | 
				
			||||||
    <addaction name="actionWide_Waterfall"/>
 | 
					    <addaction name="actionWide_Waterfall"/>
 | 
				
			||||||
    <addaction name="actionAstronomical_data"/>
 | 
					    <addaction name="actionAstronomical_data"/>
 | 
				
			||||||
@ -4771,7 +4813,7 @@ list. The list can be maintained in Settings (F2).</string>
 | 
				
			|||||||
     <bool>false</bool>
 | 
					     <bool>false</bool>
 | 
				
			||||||
    </property>
 | 
					    </property>
 | 
				
			||||||
    <property name="title">
 | 
					    <property name="title">
 | 
				
			||||||
     <string>Mode</string>
 | 
					     <string>Old Mode</string>
 | 
				
			||||||
    </property>
 | 
					    </property>
 | 
				
			||||||
    <addaction name="actionFT8"/>
 | 
					    <addaction name="actionFT8"/>
 | 
				
			||||||
    <addaction name="actionJT4"/>
 | 
					    <addaction name="actionJT4"/>
 | 
				
			||||||
@ -4797,7 +4839,7 @@ list. The list can be maintained in Settings (F2).</string>
 | 
				
			|||||||
   </widget>
 | 
					   </widget>
 | 
				
			||||||
   <widget class="QMenu" name="menuTools">
 | 
					   <widget class="QMenu" name="menuTools">
 | 
				
			||||||
    <property name="title">
 | 
					    <property name="title">
 | 
				
			||||||
     <string>Tools</string>
 | 
					     <string>Old Tools</string>
 | 
				
			||||||
    </property>
 | 
					    </property>
 | 
				
			||||||
    <addaction name="actionErase_reference_spectrum"/>
 | 
					    <addaction name="actionErase_reference_spectrum"/>
 | 
				
			||||||
    <addaction name="actionMeasure_reference_spectrum"/>
 | 
					    <addaction name="actionMeasure_reference_spectrum"/>
 | 
				
			||||||
@ -4810,8 +4852,10 @@ list. The list can be maintained in Settings (F2).</string>
 | 
				
			|||||||
   </widget>
 | 
					   </widget>
 | 
				
			||||||
   <widget class="QMenu" name="menuWindow">
 | 
					   <widget class="QMenu" name="menuWindow">
 | 
				
			||||||
    <property name="title">
 | 
					    <property name="title">
 | 
				
			||||||
     <string>&Window</string>
 | 
					     <string>&View</string>
 | 
				
			||||||
    </property>
 | 
					    </property>
 | 
				
			||||||
 | 
					    <addaction name="actionShow_Frequency_Clock"/>
 | 
				
			||||||
 | 
					    <addaction name="separator"/>
 | 
				
			||||||
    <addaction name="actionShow_Band_Activity"/>
 | 
					    <addaction name="actionShow_Band_Activity"/>
 | 
				
			||||||
    <addaction name="actionShow_Band_Activity_Columns"/>
 | 
					    <addaction name="actionShow_Band_Activity_Columns"/>
 | 
				
			||||||
    <addaction name="actionSort_Band_Activity"/>
 | 
					    <addaction name="actionSort_Band_Activity"/>
 | 
				
			||||||
@ -4839,14 +4883,14 @@ list. The list can be maintained in Settings (F2).</string>
 | 
				
			|||||||
   </widget>
 | 
					   </widget>
 | 
				
			||||||
   <addaction name="menuFile"/>
 | 
					   <addaction name="menuFile"/>
 | 
				
			||||||
   <addaction name="menuConfig"/>
 | 
					   <addaction name="menuConfig"/>
 | 
				
			||||||
   <addaction name="menuView"/>
 | 
					 | 
				
			||||||
   <addaction name="menuMode"/>
 | 
					 | 
				
			||||||
   <addaction name="menuDecode"/>
 | 
					   <addaction name="menuDecode"/>
 | 
				
			||||||
   <addaction name="menuSave"/>
 | 
					   <addaction name="menuSave"/>
 | 
				
			||||||
   <addaction name="menu_Log"/>
 | 
					   <addaction name="menu_Log"/>
 | 
				
			||||||
   <addaction name="menuTools"/>
 | 
					 | 
				
			||||||
   <addaction name="menuWindow"/>
 | 
					   <addaction name="menuWindow"/>
 | 
				
			||||||
   <addaction name="menuHelp"/>
 | 
					   <addaction name="menuHelp"/>
 | 
				
			||||||
 | 
					   <addaction name="menuView"/>
 | 
				
			||||||
 | 
					   <addaction name="menuMode"/>
 | 
				
			||||||
 | 
					   <addaction name="menuTools"/>
 | 
				
			||||||
  </widget>
 | 
					  </widget>
 | 
				
			||||||
  <widget class="QStatusBar" name="statusBar"/>
 | 
					  <widget class="QStatusBar" name="statusBar"/>
 | 
				
			||||||
  <action name="actionExit">
 | 
					  <action name="actionExit">
 | 
				
			||||||
@ -5542,7 +5586,7 @@ list. The list can be maintained in Settings (F2).</string>
 | 
				
			|||||||
  </action>
 | 
					  </action>
 | 
				
			||||||
  <action name="actionReset_Window_Sizes">
 | 
					  <action name="actionReset_Window_Sizes">
 | 
				
			||||||
   <property name="text">
 | 
					   <property name="text">
 | 
				
			||||||
    <string>Reset Window Sizes</string>
 | 
					    <string>Reset Frame Sizes</string>
 | 
				
			||||||
   </property>
 | 
					   </property>
 | 
				
			||||||
  </action>
 | 
					  </action>
 | 
				
			||||||
  <action name="actionSort_Band_Activity">
 | 
					  <action name="actionSort_Band_Activity">
 | 
				
			||||||
@ -5611,6 +5655,17 @@ list. The list can be maintained in Settings (F2).</string>
 | 
				
			|||||||
    <string>Deep (3x)</string>
 | 
					    <string>Deep (3x)</string>
 | 
				
			||||||
   </property>
 | 
					   </property>
 | 
				
			||||||
  </action>
 | 
					  </action>
 | 
				
			||||||
 | 
					  <action name="actionShow_Frequency_Clock">
 | 
				
			||||||
 | 
					   <property name="checkable">
 | 
				
			||||||
 | 
					    <bool>true</bool>
 | 
				
			||||||
 | 
					   </property>
 | 
				
			||||||
 | 
					   <property name="checked">
 | 
				
			||||||
 | 
					    <bool>true</bool>
 | 
				
			||||||
 | 
					   </property>
 | 
				
			||||||
 | 
					   <property name="text">
 | 
				
			||||||
 | 
					    <string>Show Frequency && Clock</string>
 | 
				
			||||||
 | 
					   </property>
 | 
				
			||||||
 | 
					  </action>
 | 
				
			||||||
 </widget>
 | 
					 </widget>
 | 
				
			||||||
 <layoutdefault spacing="6" margin="11"/>
 | 
					 <layoutdefault spacing="6" margin="11"/>
 | 
				
			||||||
 <customwidgets>
 | 
					 <customwidgets>
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user