kde-playground/kdepim/examples/etm_usage/tab5widget.cpp

110 lines
3.4 KiB
C++
Raw Permalink Normal View History

/*
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 "tab5widget.h"
#include <QSplitter>
#include <QHBoxLayout>
#include <QTreeView>
#include "entitytreewidget.h"
#include "itemviewerwidget.h"
#include "mixedtreemodel.h"
#include "categorizedentitymodel.h"
#include <kselectionproxymodel.h>
#include <kcategorizedsortfilterproxymodel.h>
#include <kcategorizedview.h>
#include <kcategorydrawer.h>
#include <akonadi/entitytreemodel.h>
#include <akonadi/entitymimetypefiltermodel.h>
class Tab5TreeWidget : public EntityTreeWidget
{
public:
Tab5TreeWidget(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);
}
virtual Akonadi::EntityTreeModel* getETM()
{
return new CategorisedEntityModel(changeRecorder(), this);
}
private:
Akonadi::EntityMimeTypeFilterModel *m_collectionFilter;
};
Tab5Widget::Tab5Widget(QWidget* parent, Qt::WindowFlags f)
: QWidget(parent, f)
{
QHBoxLayout *layout = new QHBoxLayout(this);
QSplitter *splitter = new QSplitter(this);
layout->addWidget(splitter);
m_etw = new Tab5TreeWidget(splitter);
m_etw->init();
QSplitter *rhsContainer = new QSplitter(Qt::Vertical, splitter);
m_itemView = new KCategorizedView(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->addMimeTypeExclusionFilter(Akonadi::Collection::mimeType());
itemFilter->setHeaderGroup( Akonadi::EntityTreeModel::ItemListHeaders );
itemFilter->setSourceModel(selectionProxy);
KCategorizedSortFilterProxyModel *categorizedModel = new KCategorizedSortFilterProxyModel(this);
categorizedModel->setSourceModel(itemFilter);
categorizedModel->setCategorizedModel(true);
m_itemView->setModel(categorizedModel);
m_itemView->setCategoryDrawer(new KCategoryDrawerV2());
ItemViewerWidget *viewerWidget = new ItemViewerWidget(m_itemView->selectionModel(), rhsContainer);
}