mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
refactor: move MRU ctrl handling code from mainwindow.cc to mruqmenu.cc
This commit is contained in:
parent
54a4a052a5
commit
ddb9655938
|
@ -411,7 +411,7 @@ MainWindow::MainWindow( Config::Class & cfg_ ):
|
|||
// Tab management
|
||||
tabListMenu = new MRUQMenu(tr("Opened tabs"), ui.tabWidget);
|
||||
|
||||
connect( tabListMenu, &MRUQMenu::ctrlReleased, this, &MainWindow::ctrlReleased );
|
||||
connect( tabListMenu, &MRUQMenu::requestTabChange, ui.tabWidget, &MainTabWidget::setCurrentIndex );
|
||||
|
||||
connect( &addTabAction, &QAction::triggered, this, &MainWindow::addNewTab );
|
||||
|
||||
|
@ -1815,19 +1815,6 @@ void MainWindow::switchToPrevTab()
|
|||
ui.tabWidget->setCurrentIndex( ui.tabWidget->currentIndex() - 1 );
|
||||
}
|
||||
|
||||
//emitted by tabListMenu when user releases Ctrl
|
||||
void MainWindow::ctrlReleased()
|
||||
{
|
||||
if (tabListMenu->actions().size() > 1)
|
||||
{
|
||||
QAction *act = tabListMenu->activeAction();
|
||||
if( act == 0 )
|
||||
act = tabListMenu->actions().at( 1 );
|
||||
ui.tabWidget->setCurrentIndex( act->data().toInt() );
|
||||
}
|
||||
tabListMenu->hide();
|
||||
}
|
||||
|
||||
void MainWindow::backClicked()
|
||||
{
|
||||
GD_DPRINTF( "Back\n" );
|
||||
|
|
|
@ -320,7 +320,6 @@ private slots:
|
|||
void closeRestTabs();
|
||||
void switchToNextTab();
|
||||
void switchToPrevTab();
|
||||
void ctrlReleased();
|
||||
|
||||
// Handling of active tab list
|
||||
void createTabList();
|
||||
|
|
29
mruqmenu.cc
29
mruqmenu.cc
|
@ -2,20 +2,19 @@
|
|||
#include <QKeyEvent>
|
||||
|
||||
MRUQMenu::MRUQMenu(const QString title, QWidget *parent):
|
||||
QMenu(title,parent)
|
||||
{
|
||||
installEventFilter(this);
|
||||
}
|
||||
QMenu(title,parent)
|
||||
{}
|
||||
|
||||
bool MRUQMenu::eventFilter(QObject *obj, QEvent *event)
|
||||
{
|
||||
(void) obj;
|
||||
if (event->type() == QEvent::KeyRelease){
|
||||
QKeyEvent *keyevent = static_cast<QKeyEvent*>(event);
|
||||
if (keyevent->key() == Qt::Key_Control){
|
||||
emit ctrlReleased();
|
||||
return true;
|
||||
}
|
||||
void MRUQMenu::keyReleaseEvent (QKeyEvent * kev){
|
||||
if (kev->key() == Qt::Key_Control && actions().size() > 1){
|
||||
QAction *act = activeAction();
|
||||
if( act == nullptr ){
|
||||
act = actions().at( 1 );
|
||||
}
|
||||
return false;
|
||||
}
|
||||
emit requestTabChange( act->data().toInt() );
|
||||
hide();
|
||||
}
|
||||
else {
|
||||
kev->ignore();
|
||||
}
|
||||
};
|
||||
|
|
14
mruqmenu.hh
14
mruqmenu.hh
|
@ -4,20 +4,20 @@
|
|||
#include <QMenu>
|
||||
#include <QEvent>
|
||||
|
||||
//The only difference between this class and QMenu is that this class emits
|
||||
//a signal when Ctrl button is released
|
||||
// Detail: http://goldendict.org/forum/viewtopic.php?f=4&t=1176
|
||||
// When ctrl during ctrl+tab released, a request to change current tab will be emitted.
|
||||
class MRUQMenu: public QMenu
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
MRUQMenu(const QString title, QWidget *parent = 0);
|
||||
explicit MRUQMenu(const QString title, QWidget *parent = 0);
|
||||
|
||||
private:
|
||||
bool eventFilter (QObject*, QEvent*);
|
||||
void keyReleaseEvent (QKeyEvent * kev) override;
|
||||
|
||||
signals:
|
||||
void ctrlReleased();
|
||||
signals:
|
||||
void requestTabChange(int index);
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -359,6 +359,9 @@ be the last ones.</string>
|
|||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QCheckBox" name="mruTabOrder">
|
||||
<property name="toolTip">
|
||||
<string>MRU order: Most recently used order.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Ctrl-Tab navigates tabs in MRU order</string>
|
||||
</property>
|
||||
|
|
Loading…
Reference in a new issue