class KDirLister;
class KFileItemDelegate;
class KUrl;
-class KDirModel;
+class DolphinModel;
class DolphinColumnView;
class DolphinDetailsView;
class DolphinIconsView;
* @param url Specifies the content which should be shown.
* @param dirLister Used directory lister. The lister is not owned
* by the view and won't get deleted.
- * @param dirModel Used directory model. The model is not owned
+ * @param dolphinModel Used directory model. The model is not owned
* by the view and won't get deleted.
* @param proxyModel Used proxy model which specifies the sorting. The
* model is not owned by the view and won't get
DolphinView(QWidget* parent,
const KUrl& url,
KDirLister* dirLister,
- KDirModel* dirModel,
+ DolphinModel* dolphinModel,
DolphinSortFilterProxyModel* proxyModel);
virtual ~DolphinView();
/**
* Returns true if the index is valid and represents
- * the column KDirModel::Name.
+ * the column DolphinModel::Name.
*/
bool isValidNameIndex(const QModelIndex& index) const;
DolphinColumnView* m_columnView;
KFileItemDelegate* m_fileItemDelegate;
- KDirModel* m_dirModel;
+ DolphinModel* m_dolphinModel;
KDirLister* m_dirLister;
DolphinSortFilterProxyModel* m_proxyModel;