X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/c68f1f6f8d6c24123c9c5df4d2e91a9d2462ceb6..697d58e9727e229abb81956d27a05d1f02d8c775:/src/dolphintabbar.cpp diff --git a/src/dolphintabbar.cpp b/src/dolphintabbar.cpp index 4c1d9e44a..4df25263f 100644 --- a/src/dolphintabbar.cpp +++ b/src/dolphintabbar.cpp @@ -9,86 +9,101 @@ #include #include +#include #include #include #include -DolphinTabBar::DolphinTabBar(QWidget* parent) : - QTabBar(parent), - m_autoActivationIndex(-1), - m_tabToBeClosedOnMiddleMouseButtonRelease(-1) +class PreventFocusWhileHidden : public QObject +{ +public: + PreventFocusWhileHidden(QObject *parent) + : QObject(parent){}; + +protected: + bool eventFilter(QObject *obj, QEvent *ev) override + { + switch (ev->type()) { + case QEvent::Hide: + static_cast(obj)->setFocusPolicy(Qt::NoFocus); + return false; + case QEvent::Show: + static_cast(obj)->setFocusPolicy(Qt::TabFocus); + return false; + default: + return false; + } + }; +}; + +DolphinTabBar::DolphinTabBar(QWidget *parent) + : QTabBar(parent) + , m_autoActivationIndex(-1) + , m_tabToBeClosedOnMiddleMouseButtonRelease(-1) { setAcceptDrops(true); setSelectionBehaviorOnRemove(QTabBar::SelectPreviousTab); setMovable(true); setTabsClosable(true); + setFocusPolicy(Qt::NoFocus); + installEventFilter(new PreventFocusWhileHidden(this)); + m_autoActivationTimer = new QTimer(this); m_autoActivationTimer->setSingleShot(true); m_autoActivationTimer->setInterval(800); - connect(m_autoActivationTimer, &QTimer::timeout, - this, &DolphinTabBar::slotAutoActivationTimeout); + connect(m_autoActivationTimer, &QTimer::timeout, this, &DolphinTabBar::slotAutoActivationTimeout); } -void DolphinTabBar::dragEnterEvent(QDragEnterEvent* event) +void DolphinTabBar::dragEnterEvent(QDragEnterEvent *event) { - const QMimeData* mimeData = event->mimeData(); - const int index = tabAt(event->pos()); + const QMimeData *mimeData = event->mimeData(); + const int index = tabAt(event->position().toPoint()); if (mimeData->hasUrls()) { - if (index >= 0) { - event->acceptProposedAction(); - } else { - event->setDropAction(Qt::IgnoreAction); - // Still need to accept it to receive dragMoveEvent - event->accept(); - } + event->acceptProposedAction(); updateAutoActivationTimer(index); } QTabBar::dragEnterEvent(event); } -void DolphinTabBar::dragLeaveEvent(QDragLeaveEvent* event) +void DolphinTabBar::dragLeaveEvent(QDragLeaveEvent *event) { updateAutoActivationTimer(-1); QTabBar::dragLeaveEvent(event); } -void DolphinTabBar::dragMoveEvent(QDragMoveEvent* event) +void DolphinTabBar::dragMoveEvent(QDragMoveEvent *event) { - const QMimeData* mimeData = event->mimeData(); - const int index = tabAt(event->pos()); + const QMimeData *mimeData = event->mimeData(); + const int index = tabAt(event->position().toPoint()); if (mimeData->hasUrls()) { - if (index >= 0) { - event->acceptProposedAction(); - } else { - event->setDropAction(Qt::IgnoreAction); - } + Q_EMIT tabDragMoveEvent(index, event); updateAutoActivationTimer(index); } QTabBar::dragMoveEvent(event); } -void DolphinTabBar::dropEvent(QDropEvent* event) +void DolphinTabBar::dropEvent(QDropEvent *event) { // Disable the auto activation timer updateAutoActivationTimer(-1); - const QMimeData* mimeData = event->mimeData(); - const int index = tabAt(event->pos()); + const QMimeData *mimeData = event->mimeData(); + const int index = tabAt(event->position().toPoint()); - if (index >= 0 && mimeData->hasUrls()) { + if (mimeData->hasUrls()) { Q_EMIT tabDropEvent(index, event); } QTabBar::dropEvent(event); } -void DolphinTabBar::mousePressEvent(QMouseEvent* event) +void DolphinTabBar::mousePressEvent(QMouseEvent *event) { const int index = tabAt(event->pos()); @@ -104,8 +119,7 @@ void DolphinTabBar::mouseReleaseEvent(QMouseEvent *event) { const int index = tabAt(event->pos()); - if (index >= 0 && index == m_tabToBeClosedOnMiddleMouseButtonRelease - && event->button() == Qt::MiddleButton) { + if (index >= 0 && index == m_tabToBeClosedOnMiddleMouseButtonRelease && event->button() == Qt::MiddleButton) { // Mouse middle click on a tab closes this tab. Q_EMIT tabCloseRequested(index); return; @@ -114,21 +128,24 @@ void DolphinTabBar::mouseReleaseEvent(QMouseEvent *event) QTabBar::mouseReleaseEvent(event); } -void DolphinTabBar::mouseDoubleClickEvent(QMouseEvent* event) +void DolphinTabBar::mouseDoubleClickEvent(QMouseEvent *event) { - const int index = tabAt(event->pos()); + if (event->buttons() & Qt::LeftButton) { + int index = tabAt(event->pos()); - if (index < 0) { - // Double click on the empty tabbar area opens a new activated tab - // with the url from the current tab. - Q_EMIT openNewActivatedTab(currentIndex()); - return; + if (index < 0) { + // empty tabbar area case + index = currentIndex(); + } + // Double left click on the tabbar opens a new activated tab + // with the url from the doubleclicked tab or currentTab otherwise. + Q_EMIT openNewActivatedTab(index); } QTabBar::mouseDoubleClickEvent(event); } -void DolphinTabBar::contextMenuEvent(QContextMenuEvent* event) +void DolphinTabBar::contextMenuEvent(QContextMenuEvent *event) { const int index = tabAt(event->pos()); @@ -136,12 +153,14 @@ void DolphinTabBar::contextMenuEvent(QContextMenuEvent* event) // Tab context menu QMenu menu(this); - QAction* newTabAction = menu.addAction(QIcon::fromTheme(QStringLiteral("tab-new")), i18nc("@action:inmenu", "New Tab")); - QAction* detachTabAction = menu.addAction(QIcon::fromTheme(QStringLiteral("tab-detach")), i18nc("@action:inmenu", "Detach Tab")); - QAction* closeOtherTabsAction = menu.addAction(QIcon::fromTheme(QStringLiteral("tab-close-other")), i18nc("@action:inmenu", "Close Other Tabs")); - QAction* closeTabAction = menu.addAction(QIcon::fromTheme(QStringLiteral("tab-close")), i18nc("@action:inmenu", "Close Tab")); + QAction *newTabAction = menu.addAction(QIcon::fromTheme(QStringLiteral("tab-new")), i18nc("@action:inmenu", "New Tab")); + QAction *detachTabAction = menu.addAction(QIcon::fromTheme(QStringLiteral("tab-detach")), i18nc("@action:inmenu", "Detach Tab")); + QAction *closeOtherTabsAction = menu.addAction(QIcon::fromTheme(QStringLiteral("tab-close-other")), i18nc("@action:inmenu", "Close Other Tabs")); + QAction *closeTabAction = menu.addAction(QIcon::fromTheme(QStringLiteral("tab-close")), i18nc("@action:inmenu", "Close Tab")); - QAction* selectedAction = menu.exec(event->globalPos()); + QAction *renameTabAction = menu.addAction(QIcon::fromTheme(QStringLiteral("edit-rename")), i18nc("@action:inmenu", "Rename Tab")); + + QAction *selectedAction = menu.exec(event->globalPos()); if (selectedAction == newTabAction) { Q_EMIT openNewActivatedTab(index); } else if (selectedAction == detachTabAction) { @@ -156,6 +175,13 @@ void DolphinTabBar::contextMenuEvent(QContextMenuEvent* event) } } else if (selectedAction == closeTabAction) { Q_EMIT tabCloseRequested(index); + } else if (selectedAction == renameTabAction) { + bool renamed = false; + const QString tabNewName = QInputDialog::getText(this, i18nc("@title:window for text input", "Rename Tab"), i18n("New tab name:"), QLineEdit::Normal, tabText(index), &renamed); + + if (renamed) { + Q_EMIT tabRenamed(index, tabNewName); + } } return; @@ -184,3 +210,5 @@ void DolphinTabBar::updateAutoActivationTimer(const int index) } } } + +#include "moc_dolphintabbar.cpp"