┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinpart.h
diff options
context:
space:
mode:
authorDavid Faure <[email protected]>2007-07-02 17:24:54 +0000
committerDavid Faure <[email protected]>2007-07-02 17:24:54 +0000
commitd89f43f66bb323a612c2f7de09d5969e437845e0 (patch)
tree8ca781b6252342fc0404fed835d6021122276171 /src/dolphinpart.h
parent398005a9913a3773ba6e3539c4bf2728628623a4 (diff)
Change signature of requestItemInfo signal, to avoid fileitem -> url -> index -> fileitem roundtrip in dolphin,
and to match the BrowserExtension mouseOverInfo() signal. Started to implement more of the part (e.g. spinning wheel in konq). svn path=/trunk/KDE/kdebase/apps/; revision=682440
Diffstat (limited to 'src/dolphinpart.h')
-rw-r--r--src/dolphinpart.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/dolphinpart.h b/src/dolphinpart.h
index 08dfce90a..d6d126cc7 100644
--- a/src/dolphinpart.h
+++ b/src/dolphinpart.h
@@ -21,6 +21,8 @@
#define DOLPHINPART_H
#include <kparts/part.h>
+class KFileItem;
+class DolphinPartBrowserExtension;
class DolphinSortFilterProxyModel;
class KDirModel;
class KDirLister;
@@ -44,11 +46,19 @@ public:
protected:
virtual bool openFile() { return true; }
+private Q_SLOTS:
+ void slotCompleted(const KUrl& url);
+ void slotCanceled(const KUrl& url);
+ void slotInfoMessage(const QString& msg);
+ void slotErrorMessage(const QString& msg);
+ void slotRequestItemInfo(const KFileItem& item);
+
private:
DolphinView* m_view;
KDirLister* m_dirLister;
KDirModel* m_dirModel;
DolphinSortFilterProxyModel* m_proxyModel;
+ DolphinPartBrowserExtension* m_extension;
Q_DISABLE_COPY(DolphinPart)
};