┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinpart.h
diff options
context:
space:
mode:
authorDavid Faure <[email protected]>2007-08-28 19:48:36 +0000
committerDavid Faure <[email protected]>2007-08-28 19:48:36 +0000
commit246c18a93c63cd3eaa7b53ce27f82009481f3401 (patch)
tree09d01413490e56f08122d15f9a1fda8bc3cb1d02 /src/dolphinpart.h
parent9c7ccd477a32ad52ff0126024ffbad0f6ea164b5 (diff)
Implement contextMenu handling in dolphin part (for konqueror)
svn path=/trunk/KDE/kdebase/apps/; revision=705873
Diffstat (limited to 'src/dolphinpart.h')
-rw-r--r--src/dolphinpart.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/dolphinpart.h b/src/dolphinpart.h
index a9806d595..3ca066a57 100644
--- a/src/dolphinpart.h
+++ b/src/dolphinpart.h
@@ -51,8 +51,22 @@ private Q_SLOTS:
void slotCanceled(const KUrl& url);
void slotInfoMessage(const QString& msg);
void slotErrorMessage(const QString& msg);
+ /**
+ * Shows the information for the item \a item inside the statusbar. If the
+ * item is null, the default statusbar information is shown.
+ */
void slotRequestItemInfo(const KFileItem& item);
+ /**
+ * Handles clicking on an item
+ */
void slotItemTriggered(const KFileItem& item);
+ /**
+ * Opens the context menu on the current mouse position.
+ * @item File item context. If item is 0, the context menu
+ * should be applied to \a url.
+ * @url URL which contains \a item.
+ */
+ void slotOpenContextMenu(const KFileItem& item, const KUrl& url);
private:
DolphinView* m_view;