#include "dolphin_generalsettings.h"
#include "iconmanager.h"
#include "renamedialog.h"
+#include "tooltipmanager.h"
#include "viewproperties.h"
DolphinView::DolphinView(QWidget* parent,
m_showPreview(false),
m_loadingDirectory(false),
m_storedCategorizedSorting(false),
+ m_isContextMenuOpen(false),
m_mode(DolphinView::IconsView),
m_topLayout(0),
m_controller(0),
m_dolphinModel(dolphinModel),
m_dirLister(dirLister),
m_proxyModel(proxyModel),
- m_iconManager(0)
+ m_iconManager(0),
+ m_toolTipManager(0)
{
setFocusPolicy(Qt::StrongFocus);
m_topLayout = new QVBoxLayout(this);
this, SLOT(updateAdditionalInfo(const KFileItemDelegate::InformationList&)));
connect(m_controller, SIGNAL(itemTriggered(const KFileItem&)),
this, SLOT(triggerItem(const KFileItem&)));
+ connect(m_controller, SIGNAL(tabRequested(const KUrl&)),
+ this, SIGNAL(tabRequested(const KUrl&)));
connect(m_controller, SIGNAL(activated()),
this, SLOT(activate()));
connect(m_controller, SIGNAL(itemEntered(const KFileItem&)),
return;
}
- if (item.isNull()) {
+ // TODO: the m_isContextMenuOpen check is a workaround for Qt-issue xxxxxx
+ if (item.isNull() || m_isContextMenuOpen) {
return;
}
+ if (m_toolTipManager != 0) {
+ m_toolTipManager->hideTip();
+ }
emit itemTriggered(item); // caught by DolphinViewContainer or DolphinPart
}
item = fileItem(index);
}
+ if (m_toolTipManager != 0) {
+ m_toolTipManager->hideTip();
+ }
+
+ m_isContextMenuOpen = true; // TODO: workaround for Qt-issue xxxxxx
emit requestContextMenu(item, url());
+ m_isContextMenuOpen = false;
}
void DolphinView::dropUrls(const KUrl::List& urls,
m_iconManager = new IconManager(view, m_proxyModel);
m_iconManager->setShowPreview(m_showPreview);
+ if (DolphinSettings::instance().generalSettings()->showToolTips()) {
+ m_toolTipManager = new ToolTipManager(view, m_proxyModel);
+ }
+
m_topLayout->insertWidget(1, view);
connect(view->selectionModel(), SIGNAL(selectionChanged(const QItemSelection&, const QItemSelection&)),
m_columnView = 0;
m_fileItemDelegate = 0;
m_iconManager = 0;
+ m_toolTipManager = 0;
}
}