* assure that a column gets created if no existing column can be used for showing an URL
svn path=/trunk/KDE/kdebase/apps/; revision=714407
ColumnWidget::ColumnWidget(QWidget* parent,
DolphinColumnView* columnView,
const KUrl& url) :
ColumnWidget::ColumnWidget(QWidget* parent,
DolphinColumnView* columnView,
const KUrl& url) :
m_active(true),
m_view(columnView),
m_url(url),
m_active(true),
m_view(columnView),
m_url(url),
{
if (!m_childUrl.isEmpty()) {
// indicate the shown URL of the next column by highlighting the shown folder item
{
if (!m_childUrl.isEmpty()) {
// indicate the shown URL of the next column by highlighting the shown folder item
- const QAbstractProxyModel* proxyModel = static_cast<const QAbstractProxyModel*>(m_view->model());
- const DolphinModel* dolphinModel = static_cast<const DolphinModel*>(proxyModel->sourceModel());
- const QModelIndex dirIndex = dolphinModel->indexForUrl(m_childUrl);
- const QModelIndex proxyIndex = proxyModel->mapFromSource(dirIndex);
+ const QModelIndex dirIndex = m_view->m_dolphinModel->indexForUrl(m_childUrl);
+ const QModelIndex proxyIndex = m_view->m_proxyModel->mapFromSource(dirIndex);
if (proxyIndex.isValid() && !selectionModel()->isSelected(proxyIndex)) {
const QRect itemRect = visualRect(proxyIndex);
QPainter painter(viewport());
if (proxyIndex.isValid() && !selectionModel()->isSelected(proxyIndex)) {
const QRect itemRect = visualRect(proxyIndex);
QPainter painter(viewport());
if (!m_childUrl.isEmpty()) {
// assure that the current index is set on the index that represents
// the child URL
if (!m_childUrl.isEmpty()) {
// assure that the current index is set on the index that represents
// the child URL
- const QAbstractProxyModel* proxyModel = static_cast<const QAbstractProxyModel*>(model());
- const KDirModel* dirModel = static_cast<const KDirModel*>(proxyModel->sourceModel());
- const QModelIndex dirIndex = dirModel->indexForUrl(m_childUrl);
- const QModelIndex proxyIndex = proxyModel->mapFromSource(dirIndex);
+ const QModelIndex dirIndex = m_view->m_dolphinModel->indexForUrl(m_childUrl);
+ const QModelIndex proxyIndex = m_view->m_proxyModel->mapFromSource(dirIndex);
selectionModel()->setCurrentIndex(proxyIndex, QItemSelectionModel::Current);
}
selectionModel()->setCurrentIndex(proxyIndex, QItemSelectionModel::Current);
}
m_index(-1),
m_contentX(0),
m_columns(),
m_index(-1),
m_contentX(0),
m_columns(),
+ m_animation(0),
+ m_dolphinModel(0),
+ m_proxyModel(0)
{
Q_ASSERT(controller != 0);
{
Q_ASSERT(controller != 0);
void DolphinColumnView::setModel(QAbstractItemModel* model)
{
void DolphinColumnView::setModel(QAbstractItemModel* model)
{
+ m_proxyModel = static_cast<const QAbstractProxyModel*>(model);
+ m_dolphinModel = static_cast<const DolphinModel*>(m_proxyModel->sourceModel());
+
activeColumn()->setModel(model);
QAbstractItemView::setModel(model);
}
bool DolphinColumnView::isIndexHidden(const QModelIndex& index) const
{
activeColumn()->setModel(model);
QAbstractItemView::setModel(model);
}
bool DolphinColumnView::isIndexHidden(const QModelIndex& index) const
{
return false;//activeColumn()->isIndexHidden(index);
}
return false;//activeColumn()->isIndexHidden(index);
}
void DolphinColumnView::setSelection(const QRect& rect, QItemSelectionModel::SelectionFlags flags)
{
void DolphinColumnView::setSelection(const QRect& rect, QItemSelectionModel::SelectionFlags flags)
{
+ Q_UNUSED(rect);
+ Q_UNUSED(flags);
//activeColumn()->setSelection(rect, flags);
}
//activeColumn()->setSelection(rect, flags);
}
- const QAbstractProxyModel* proxyModel = static_cast<const QAbstractProxyModel*>(model());
- const KDirModel* dirModel = static_cast<const KDirModel*>(proxyModel->sourceModel());
- const KFileItem item = dirModel->itemForIndex(proxyModel->mapToSource(index));
+ const KFileItem item = m_dolphinModel->itemForIndex(m_proxyModel->mapToSource(index));
if ((item.url() != activeColumn()->url()) && item.isDir()) {
deleteInactiveChildColumns();
if ((item.url() != activeColumn()->url()) && item.isDir()) {
deleteInactiveChildColumns();
deleteInactiveChildColumns();
}
deleteInactiveChildColumns();
}
- const QAbstractProxyModel* proxyModel = static_cast<const QAbstractProxyModel*>(model());
- const KDirModel* dirModel = static_cast<const KDirModel*>(proxyModel->sourceModel());
- const QModelIndex dirIndex = dirModel->indexForUrl(url);
+ const QModelIndex dirIndex = m_dolphinModel->indexForUrl(url);
if (dirIndex.isValid()) {
if (dirIndex.isValid()) {
- triggerItem(proxyModel->mapFromSource(dirIndex));
+ triggerItem(m_proxyModel->mapFromSource(dirIndex));
}
return;
}
++columnIndex;
}
}
return;
}
++columnIndex;
}
+
+ // no existing column has been replaced and a new column must be created
+ const QModelIndex dirIndex = m_dolphinModel->indexForUrl(url);
+ if (dirIndex.isValid()) {
+ triggerItem(m_proxyModel->mapFromSource(dirIndex));
+ }
}
void DolphinColumnView::updateDecorationSize()
}
void DolphinColumnView::updateDecorationSize()
class ColumnWidget;
class DolphinController;
class ColumnWidget;
class DolphinController;
+class QAbstractProxyModel;
QList<ColumnWidget*> m_columns;
QTimeLine* m_animation;
QList<ColumnWidget*> m_columns;
QTimeLine* m_animation;
+ DolphinModel* m_dolphinModel;
+ QAbstractProxyModel* m_proxyModel;
+
friend class ColumnWidget;
};
friend class ColumnWidget;
};