mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 19:02:51 +00:00
100 lines
3 KiB
C++
100 lines
3 KiB
C++
/*
|
|
This file is part of Akonadi.
|
|
|
|
Copyright (c) 2010 Stephen Kelly <steveire@gmail.com>
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
|
|
USA.
|
|
*/
|
|
|
|
// READ THE README FILE
|
|
|
|
#include "tab4widget.h"
|
|
|
|
#include <QSplitter>
|
|
#include <QHBoxLayout>
|
|
#include <QTreeView>
|
|
|
|
#include "entitytreewidget.h"
|
|
#include "itemviewerwidget.h"
|
|
#include "mixedtreemodel.h"
|
|
|
|
#include <kselectionproxymodel.h>
|
|
|
|
#include <akonadi/entitytreemodel.h>
|
|
#include <akonadi/entitymimetypefiltermodel.h>
|
|
|
|
class Tab4TreeWidget : public EntityTreeWidget
|
|
{
|
|
public:
|
|
Tab4TreeWidget(QWidget* parent = 0)
|
|
: EntityTreeWidget(parent)
|
|
{
|
|
}
|
|
|
|
/* reimp */ void connectTreeToModel(QTreeView* tree, Akonadi::EntityTreeModel* model)
|
|
{
|
|
m_collectionFilter = new Akonadi::EntityMimeTypeFilterModel(this);
|
|
m_collectionFilter->addMimeTypeInclusionFilter(Akonadi::Collection::mimeType());
|
|
m_collectionFilter->setSourceModel(model);
|
|
m_collectionFilter->setHeaderGroup(Akonadi::EntityTreeModel::CollectionTreeHeaders);
|
|
tree->setModel(m_collectionFilter);
|
|
}
|
|
|
|
/* reimp */ QModelIndex mapToSource(const QModelIndex &idx)
|
|
{
|
|
return m_collectionFilter->mapToSource(idx);
|
|
}
|
|
|
|
/* reimp */ Akonadi::EntityTreeModel* getETM()
|
|
{
|
|
return new MixedTreeModel(changeRecorder(), this);
|
|
}
|
|
|
|
|
|
private:
|
|
Akonadi::EntityMimeTypeFilterModel *m_collectionFilter;
|
|
|
|
};
|
|
|
|
Tab4Widget::Tab4Widget(QWidget* parent, Qt::WindowFlags f)
|
|
: QWidget(parent, f)
|
|
{
|
|
QHBoxLayout *layout = new QHBoxLayout(this);
|
|
QSplitter *splitter = new QSplitter(this);
|
|
layout->addWidget(splitter);
|
|
|
|
m_etw = new Tab4TreeWidget(splitter);
|
|
m_etw->init();
|
|
|
|
QSplitter *rhsContainer = new QSplitter( Qt::Vertical, splitter);
|
|
|
|
m_itemView = new QTreeView(rhsContainer);
|
|
|
|
KSelectionProxyModel *selectionProxy = new KSelectionProxyModel(m_etw->view()->selectionModel(), this);
|
|
selectionProxy->setFilterBehavior(KSelectionProxyModel::ChildrenOfExactSelection);
|
|
selectionProxy->setSourceModel(m_etw->model());
|
|
|
|
Akonadi::EntityMimeTypeFilterModel *itemFilter = new Akonadi::EntityMimeTypeFilterModel(this);
|
|
itemFilter->setHeaderGroup( Akonadi::EntityTreeModel::ItemListHeaders );
|
|
itemFilter->addMimeTypeExclusionFilter(Akonadi::Collection::mimeType());
|
|
itemFilter->setSourceModel(selectionProxy);
|
|
|
|
m_itemView->setModel(itemFilter);
|
|
|
|
ItemViewerWidget *viewerWidget = new ItemViewerWidget(m_itemView->selectionModel(), rhsContainer);
|
|
}
|
|
|
|
|