diff options
| author | Peter Penz <[email protected]> | 2007-06-08 14:14:34 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2007-06-08 14:14:34 +0000 |
| commit | 6dddb2e81c6b7f3cfc2a7e9d26fab407f7bc85e6 (patch) | |
| tree | 74e52b10e698695dd390aceeb3c52fe661f49b08 /src/dolphinview.h | |
| parent | 3a053415f9d7f8ae635e660f2a1537617feeff40 (diff) | |
added signals errorMessage(const QString&) and infoMessage(const QString&) for the DolphinView
svn path=/trunk/KDE/kdebase/apps/; revision=672944
Diffstat (limited to 'src/dolphinview.h')
| -rw-r--r-- | src/dolphinview.h | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/src/dolphinview.h b/src/dolphinview.h index 97ab01dad..bcccb7404 100644 --- a/src/dolphinview.h +++ b/src/dolphinview.h @@ -123,8 +123,7 @@ public: KDirLister* dirLister, KDirModel* dirModel, DolphinSortFilterProxyModel* proxyModel, - Mode mode = IconsView, - bool showHiddenFiles = false); + Mode mode); virtual ~DolphinView(); @@ -373,6 +372,18 @@ signals: */ void urlsDropped(const KUrl::List& urls, const KUrl& destination); + /** + * Is emitted if an information message with the content \a msg + * should be shown. + */ + void infoMessage(const QString& msg); + + /** + * Is emitted if an error message with the content \a msg + * should be shown. + */ + void errorMessage(const QString& msg); + protected: /** @see QWidget::mouseReleaseEvent */ virtual void mouseReleaseEvent(QMouseEvent* event); |
