Skip to content

Commit

Permalink
Add hotkey for group switching (#10625)
Browse files Browse the repository at this point in the history
* Add hotkey for group switching

Ctrl + Shift + Key_PageUp for previous group
Ctrl + Shift + Key_PageDown for next group
Fixes #4394
  • Loading branch information
0xdeadbeer committed Apr 27, 2024
1 parent 7ae65dd commit 4ef52c8
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/gui/group/GroupView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ GroupView::GroupView(Database* db, QWidget* parent)
// clang-format on

new QShortcut(Qt::CTRL + Qt::Key_F10, this, SLOT(contextMenuShortcutPressed()), nullptr, Qt::WidgetShortcut);
new QShortcut(
Qt::CTRL + Qt::SHIFT + Qt::Key_PageUp, this, SLOT(selectPreviousGroup()), nullptr, Qt::WindowShortcut);
new QShortcut(Qt::CTRL + Qt::SHIFT + Qt::Key_PageDown, this, SLOT(selectNextGroup()), nullptr, Qt::WindowShortcut);

// keyboard shortcuts to sort children of a group
auto shortcut = new QShortcut(Qt::CTRL + Qt::Key_Down, this, nullptr, nullptr, Qt::WidgetShortcut);
Expand All @@ -60,6 +63,24 @@ GroupView::GroupView(Database* db, QWidget* parent)
setDefaultDropAction(Qt::MoveAction);
}

void GroupView::selectPreviousGroup()
{
auto previousIndex = indexAbove(currentIndex());
if (previousIndex.isValid()) {
auto previousGroup = m_model->groupFromIndex(previousIndex);
setCurrentGroup(previousGroup);
}
}

void GroupView::selectNextGroup()
{
auto nextIndex = indexBelow(currentIndex());
if (nextIndex.isValid()) {
auto nextGroup = m_model->groupFromIndex(nextIndex);
setCurrentGroup(nextGroup);
}
}

void GroupView::contextMenuShortcutPressed()
{
auto index = currentIndex();
Expand Down
2 changes: 2 additions & 0 deletions src/gui/group/GroupView.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ private slots:
void syncExpandedState(const QModelIndex& parent, int start, int end);
void modelReset();
void contextMenuShortcutPressed();
void selectPreviousGroup();
void selectNextGroup();

protected:
void dragMoveEvent(QDragMoveEvent* event) override;
Expand Down

0 comments on commit 4ef52c8

Please sign in to comment.