mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-02-03 09:44:24 -05:00
More tweaks to the QMAP user interface.
This commit is contained in:
parent
631e3ed1cb
commit
73e1198f08
@ -10,8 +10,9 @@ CAboutDlg::CAboutDlg(QWidget *parent) :
|
|||||||
ui->labelTxt->setText("<html><h2>" + QString {"QMAP v"
|
ui->labelTxt->setText("<html><h2>" + QString {"QMAP v"
|
||||||
+ QCoreApplication::applicationVersion ()
|
+ QCoreApplication::applicationVersion ()
|
||||||
+ " " + revision ()}.simplified () + "</h2><br />"
|
+ " " + revision ()}.simplified () + "</h2><br />"
|
||||||
"QMAP is a wideband receiver for the Q65 protocol, <br />"
|
"QMAP is a wideband receiver for the Q65 protocol, intnded<br />"
|
||||||
"intended primarily for amateur radio EME communication. <br /><br />"
|
"primarily for amateur radio EME communication. It works <br />"
|
||||||
|
"in close cooperation with WSJT-X, versions 2.7 and later. <br /><br />"
|
||||||
"Copyright 2001-2023 by Joe Taylor, K1JT. Additional <br />"
|
"Copyright 2001-2023 by Joe Taylor, K1JT. Additional <br />"
|
||||||
"acknowledgments are contained in the source code.");
|
"acknowledgments are contained in the source code.");
|
||||||
}
|
}
|
||||||
|
@ -1057,3 +1057,14 @@ bool MainWindow::isGrid4(QString g)
|
|||||||
if(g.mid(3,1)<'0' or g.mid(3,1)>'9') return false;
|
if(g.mid(3,1)<'0' or g.mid(3,1)>'9') return false;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MainWindow::on_actionQuick_Start_Guide_to_Q65_triggered()
|
||||||
|
{
|
||||||
|
QDesktopServices::openUrl (QUrl {"https://wsjt.sourceforge.io/Q65_Quick_Start.pdf"});
|
||||||
|
}
|
||||||
|
|
||||||
|
void MainWindow::on_actionQuick_Start_Guide_to_WSJT_X_2_7_and_QMAP_triggered()
|
||||||
|
{
|
||||||
|
QDesktopServices::openUrl (QUrl {"https://wsjt.sourceforge.io/Quick_Start_WSJT-X_2.7_QMAP.pdf"});
|
||||||
|
}
|
||||||
|
|
||||||
|
@ -80,6 +80,8 @@ private slots:
|
|||||||
void on_actionQ65C_triggered();
|
void on_actionQ65C_triggered();
|
||||||
void on_actionQ65D_triggered();
|
void on_actionQ65D_triggered();
|
||||||
void on_actionQ65E_triggered();
|
void on_actionQ65E_triggered();
|
||||||
|
void on_actionQuick_Start_Guide_to_Q65_triggered();
|
||||||
|
void on_actionQuick_Start_Guide_to_WSJT_X_2_7_and_QMAP_triggered();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Ui::MainWindow *ui;
|
Ui::MainWindow *ui;
|
||||||
|
@ -431,6 +431,8 @@ p, li { white-space: pre-wrap; }
|
|||||||
<property name="title">
|
<property name="title">
|
||||||
<string>Help</string>
|
<string>Help</string>
|
||||||
</property>
|
</property>
|
||||||
|
<addaction name="actionQuick_Start_Guide_to_WSJT_X_2_7_and_QMAP"/>
|
||||||
|
<addaction name="actionQuick_Start_Guide_to_Q65"/>
|
||||||
<addaction name="actionAbout"/>
|
<addaction name="actionAbout"/>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QMenu" name="menuMode">
|
<widget class="QMenu" name="menuMode">
|
||||||
@ -787,6 +789,16 @@ p, li { white-space: pre-wrap; }
|
|||||||
<string>F2</string>
|
<string>F2</string>
|
||||||
</property>
|
</property>
|
||||||
</action>
|
</action>
|
||||||
|
<action name="actionQuick_Start_Guide_to_WSJT_X_2_7_and_QMAP">
|
||||||
|
<property name="text">
|
||||||
|
<string>Quick-Start Guide to WSJT-X 2.7 and QMAP</string>
|
||||||
|
</property>
|
||||||
|
</action>
|
||||||
|
<action name="actionQuick_Start_Guide_to_Q65">
|
||||||
|
<property name="text">
|
||||||
|
<string>Quick-Start Guide to Q65</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