+
+ connect(m_view, SIGNAL(infoMessage(QString)),
+ this, SLOT(slotInfoMessage(QString)));
+ connect(m_view, SIGNAL(errorMessage(QString)),
+ this, SLOT(slotErrorMessage(QString)));
+ connect(m_view, SIGNAL(itemTriggered(KFileItem)),
+ this, SLOT(slotItemTriggered(KFileItem)));
+ connect(m_view, SIGNAL(requestContextMenu(KFileItem, const KUrl&)),
+ this, SLOT(slotOpenContextMenu(KFileItem, const KUrl&)));
+ connect(m_view, SIGNAL(selectionChanged(QList<KFileItem>)),
+ m_extension, SIGNAL(selectionInfo(QList<KFileItem>)));
+
+ connect(m_view, SIGNAL(requestItemInfo(KFileItem)),
+ this, SLOT(slotRequestItemInfo(KFileItem)));
+
+ // TODO connect to urlsDropped
+
+ // TODO there was a "always open a new window" (when clicking on a directory) setting in konqueror
+ // (sort of spacial navigation)
+
+ // TODO MMB-click should do something like KonqDirPart::mmbClicked
+
+ // TODO updating the paste action
+ // if (paste) emit m_extension->setActionText( "paste", actionText );
+ // emit m_extension->enableAction( "paste", paste );