+ /**
+ * Is invoked when the write state of a folder has been changed and
+ * enables/disables the "Create New..." menu entry.
+ */
+ void slotWriteStateChanged(bool isFolderWritable);
+
+ /**
+ * Opens the context menu on the current mouse position.
+ * @pos Position in screen coordinates.
+ * @item File item context. If item is null, the context menu
+ * should be applied to \a url.
+ * @url URL which contains \a item.
+ * @customActions Actions that should be added to the context menu,
+ * if the file item is null.
+ */
+ void openContextMenu(const QPoint& pos,
+ const KFileItem& item,
+ const KUrl& url,
+ const QList<QAction*>& customActions);
+
+ void updateControlMenu();
+ void updateToolBar();
+ void slotControlButtonDeleted();
+
+ /**
+ * Is called if a panel emits an error-message and shows
+ * the error-message in the active view-container.
+ */
+ void slotPanelErrorMessage(const QString& error);
+
+ /**
+ * Is called if the user clicked an item in the Places Panel.
+ * Reloads the view if \a url is the current URL already, and changes the
+ * current URL otherwise.
+ */
+ void slotPlaceActivated(const KUrl& url);