mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-17 19:36:15 +00:00
Add various keyboard shortcuts.
Add shortcuts to match GTK version for view menu items and the log menu so that e.g. Ctrl+1 selects the list view. Remove debug statements from the view functions. Leave in place for functions with no obvious actions yet coded. Signed-off-by: Amit Chaudhuri <amit.k.chaudhuri@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
f07614fb2f
commit
baee897574
2 changed files with 22 additions and 9 deletions
|
@ -207,8 +207,6 @@ void MainWindow::on_actionYearlyStatistics_triggered()
|
|||
|
||||
void MainWindow::on_actionViewList_triggered()
|
||||
{
|
||||
qDebug("actionViewList");
|
||||
|
||||
ui->InfoWidget->setVisible(false);
|
||||
ui->ListWidget->setVisible(true);
|
||||
ui->ProfileWidget->setVisible(false);
|
||||
|
@ -216,8 +214,6 @@ void MainWindow::on_actionViewList_triggered()
|
|||
|
||||
void MainWindow::on_actionViewProfile_triggered()
|
||||
{
|
||||
qDebug("actionViewProfile");
|
||||
|
||||
ui->InfoWidget->setVisible(false);
|
||||
ui->ListWidget->setVisible(false);
|
||||
ui->ProfileWidget->setVisible(true);
|
||||
|
@ -225,8 +221,6 @@ void MainWindow::on_actionViewProfile_triggered()
|
|||
|
||||
void MainWindow::on_actionViewInfo_triggered()
|
||||
{
|
||||
qDebug("actionViewInfo");
|
||||
|
||||
ui->InfoWidget->setVisible(true);
|
||||
ui->ListWidget->setVisible(false);
|
||||
ui->ProfileWidget->setVisible(false);
|
||||
|
@ -234,8 +228,6 @@ void MainWindow::on_actionViewInfo_triggered()
|
|||
|
||||
void MainWindow::on_actionViewAll_triggered()
|
||||
{
|
||||
qDebug("actionViewAll");
|
||||
|
||||
ui->InfoWidget->setVisible(true);
|
||||
ui->ListWidget->setVisible(true);
|
||||
ui->ProfileWidget->setVisible(true);
|
||||
|
|
|
@ -88,7 +88,7 @@
|
|||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>763</width>
|
||||
<height>25</height>
|
||||
<height>20</height>
|
||||
</rect>
|
||||
</property>
|
||||
<widget class="QMenu" name="menuFile">
|
||||
|
@ -240,6 +240,9 @@
|
|||
<property name="text">
|
||||
<string>Download from Dive computer</string>
|
||||
</property>
|
||||
<property name="shortcut">
|
||||
<string>Ctrl+D</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionDownloadWeb">
|
||||
<property name="text">
|
||||
|
@ -280,31 +283,49 @@
|
|||
<property name="text">
|
||||
<string>View List</string>
|
||||
</property>
|
||||
<property name="shortcut">
|
||||
<string>Ctrl+1</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionViewProfile">
|
||||
<property name="text">
|
||||
<string>View Profile</string>
|
||||
</property>
|
||||
<property name="shortcut">
|
||||
<string>Ctrl+2</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionViewInfo">
|
||||
<property name="text">
|
||||
<string>View Info</string>
|
||||
</property>
|
||||
<property name="shortcut">
|
||||
<string>Ctrl+3</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionViewAll">
|
||||
<property name="text">
|
||||
<string>View All</string>
|
||||
</property>
|
||||
<property name="shortcut">
|
||||
<string>Ctrl+4</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionPreviousDC">
|
||||
<property name="text">
|
||||
<string>Prev DC</string>
|
||||
</property>
|
||||
<property name="shortcut">
|
||||
<string>Ctrl+Shift+C</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionNextDC">
|
||||
<property name="text">
|
||||
<string>Next DC</string>
|
||||
</property>
|
||||
<property name="shortcut">
|
||||
<string>Ctrl+C</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionSelectEvents">
|
||||
<property name="text">
|
||||
|
|
Loading…
Add table
Reference in a new issue