* Returns the 'Create New...' sub menu which also can be shared
* with other menus (e. g. a context menu).
*/
- KNewFileMenu* newMenu() const;
+ KNewFileMenu* newFileMenu() const;
/**
* Returns the 'Show Menubar' action which can be shared with
*/
void slotSelectionChanged(const KFileItemList& selection);
- /** Enables changing of tabs via mouse wheel. */
- void slotWheelMoved(int wheelDelta);
-
/** Emits the signal requestItemInfo(). */
void slotRequestItemInfo(const KFileItem&);
*/
void slotHandleUrlStatFinished(KJob* job);
- /**
- * setUrlAsCaption() will trigger a stat job which reports its result in
- * this slot.
- */
- void slotCaptionStatFinished(KJob* job);
-
/**
* Is connected to the KTabBar signal receivedDropEvent.
* Allows dragging and dropping files onto tabs.
virtual void jobError(KIO::Job* job);
};
- KNewFileMenu* m_newMenu;
+ KNewFileMenu* m_newFileMenu;
KActionMenu* m_recentTabsMenu;
KAction* m_showMenuBar;
KTabBar* m_tabBar;
DolphinRemoteEncoding* m_remoteEncoding;
QPointer<DolphinSettingsDialog> m_settingsDialog;
- KJob* m_captionStatJob;
KJob* m_lastHandleUrlStatJob;
};
return m_viewTab[m_tabIndex].secondaryView != 0;
}
-inline KNewFileMenu* DolphinMainWindow::newMenu() const
+inline KNewFileMenu* DolphinMainWindow::newFileMenu() const
{
- return m_newMenu;
+ return m_newFileMenu;
}
inline KAction* DolphinMainWindow::showMenuBarAction() const