mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 09:32:12 +01:00
TabBar: Support adding new tabs with text drop data
Urls are loaded directly and text is searched for using default search engine.
This commit is contained in:
parent
373df431a7
commit
ca04e9d967
|
@ -26,6 +26,7 @@
|
|||
#include "pluginproxy.h"
|
||||
#include "iconprovider.h"
|
||||
#include "tabcontextmenu.h"
|
||||
#include "searchenginesmanager.h"
|
||||
|
||||
#include <QMenu>
|
||||
#include <QMimeData>
|
||||
|
@ -524,7 +525,7 @@ void TabBar::dragEnterEvent(QDragEnterEvent* event)
|
|||
{
|
||||
const QMimeData* mime = event->mimeData();
|
||||
|
||||
if (mime->hasUrls()) {
|
||||
if (mime->hasText() || mime->hasUrls()) {
|
||||
event->acceptProposedAction();
|
||||
return;
|
||||
}
|
||||
|
@ -536,16 +537,20 @@ void TabBar::dropEvent(QDropEvent* event)
|
|||
{
|
||||
const QMimeData* mime = event->mimeData();
|
||||
|
||||
if (!mime->hasUrls()) {
|
||||
if (!mime->hasText() && !mime->hasUrls()) {
|
||||
ComboTabBar::dropEvent(event);
|
||||
return;
|
||||
}
|
||||
|
||||
int index = tabAt(event->pos());
|
||||
if (index == -1) {
|
||||
if (mime->hasUrls()) {
|
||||
foreach (const QUrl &url, mime->urls()) {
|
||||
m_tabWidget->addView(url, Qz::NT_SelectedTabAtTheEnd);
|
||||
}
|
||||
} else if (mime->hasText()) {
|
||||
m_tabWidget->addView(mApp->searchEnginesManager()->searchResult(mime->text()), Qz::NT_SelectedNewEmptyTab);
|
||||
}
|
||||
}
|
||||
else {
|
||||
WebTab* tab = m_window->weView(index)->webTab();
|
||||
|
|
Loading…
Reference in New Issue
Block a user