mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 19:02:48 +00:00
102 lines
3.2 KiB
C++
102 lines
3.2 KiB
C++
/**
|
|
* This file is part of the KDE project
|
|
* Copyright (C) 2007, 2009 Rafael Fernández López <ereslibre@kde.org>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public License
|
|
* along with this library; see the file COPYING.LIB. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include <QMainWindow>
|
|
#include <QStringListModel>
|
|
|
|
#include <kapplication.h>
|
|
#include <kaboutdata.h>
|
|
#include <kcmdlineargs.h>
|
|
#include <kiconloader.h>
|
|
|
|
#include <kcategorizedview.h>
|
|
#include <kcategorydrawer.h>
|
|
#include <kcategorizedsortfilterproxymodel.h>
|
|
|
|
QStringList icons;
|
|
|
|
class MyModel
|
|
: public QStringListModel
|
|
{
|
|
public:
|
|
virtual QVariant data(const QModelIndex &index, int role) const
|
|
{
|
|
switch (role) {
|
|
case KCategorizedSortFilterProxyModel::CategoryDisplayRole: {
|
|
return QString::number(index.row() / 10);
|
|
}
|
|
case KCategorizedSortFilterProxyModel::CategorySortRole: {
|
|
return index.row() / 10;
|
|
}
|
|
case Qt::DecorationRole:
|
|
return DesktopIcon(icons[index.row() % 4], KIconLoader::Desktop);
|
|
default:
|
|
break;
|
|
}
|
|
return QStringListModel::data(index, role);
|
|
}
|
|
};
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
icons << "konqueror";
|
|
icons << "okular";
|
|
icons << "plasma";
|
|
icons << "system-file-manager";
|
|
|
|
KAboutData aboutData("KCategorizedViewTest",
|
|
0,
|
|
ki18n("KCategorizedViewTest"),
|
|
"1.0",
|
|
ki18n("KCategorizedViewTest"),
|
|
KAboutData::License_LGPL_V3,
|
|
ki18n("(c) 2009 Rafael Fernández López"),
|
|
ki18n("KCategorizedViewTest"),
|
|
"http://www.kde.org");
|
|
|
|
KCmdLineArgs::init(argc, argv, &aboutData);
|
|
KApplication app;
|
|
|
|
QMainWindow *mainWindow = new QMainWindow();
|
|
mainWindow->setMinimumSize(640, 480);
|
|
KCategorizedView *listView = new KCategorizedView();
|
|
listView->setCategoryDrawer(new KCategoryDrawer(listView));
|
|
listView->setViewMode(QListView::IconMode);
|
|
MyModel *model = new MyModel();
|
|
|
|
model->insertRows(0, 100);
|
|
for (int i = 0; i < 100; ++i)
|
|
{
|
|
model->setData(model->index(i, 0), QString::number(i), Qt::DisplayRole);
|
|
}
|
|
|
|
KCategorizedSortFilterProxyModel *proxyModel = new KCategorizedSortFilterProxyModel();
|
|
proxyModel->setCategorizedModel(true);
|
|
proxyModel->setSourceModel(model);
|
|
|
|
listView->setModel(proxyModel);
|
|
|
|
mainWindow->setCentralWidget(listView);
|
|
|
|
mainWindow->show();
|
|
|
|
return app.exec();
|
|
}
|
|
|