Make a branch to make krunner Good Enough For Aaron™.
[kdebase/uwolfer.git] / apps / dolphin / src / dolphinsortfilterproxymodel.h
bloba421b3536575b04daa1864b5f406a82daf45fdad
1 /***************************************************************************
2 * Copyright (C) 2006 by Peter Penz <peter.penz@gmx.at> *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
8 * *
9 * This program is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU General Public License *
15 * along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
18 ***************************************************************************/
20 #ifndef DOLPHINSORTFILTERPROXYMODEL_H
21 #define DOLPHINSORTFILTERPROXYMODEL_H
23 #include <dolphinview.h>
24 #include <kdirsortfilterproxymodel.h>
25 #include <libdolphin_export.h>
27 /**
28 * @brief Acts as proxy model for DolphinModel to sort and filter
29 * KFileItems.
31 * A natural sorting is done. This means that items like:
32 * - item_10.png
33 * - item_1.png
34 * - item_2.png
35 * are sorted like
36 * - item_1.png
37 * - item_2.png
38 * - item_10.png
40 * @note It is NOT assured that directories are always sorted before files.
41 * For example, on a Nepomuk based sorting, it is possible to have a file
42 * rated with 10 stars, and a directory rated with 5 stars. The file will
43 * be shown before the directory.
45 class LIBDOLPHINPRIVATE_EXPORT DolphinSortFilterProxyModel : public KDirSortFilterProxyModel
47 Q_OBJECT
49 public:
50 DolphinSortFilterProxyModel(QObject* parent = 0);
51 virtual ~DolphinSortFilterProxyModel();
53 void setSorting(DolphinView::Sorting sorting);
54 DolphinView::Sorting sorting() const;
56 void setSortOrder(Qt::SortOrder sortOrder);
57 Qt::SortOrder sortOrder() const;
59 /**
60 * @reimplemented, @internal
62 * If the view 'forces' sorting order to change we will
63 * notice now.
65 virtual void sort(int column,
66 Qt::SortOrder order = Qt::AscendingOrder);
68 /**
69 * Helper method to get the DolphinView::Sorting type for a given
70 * column \a column. If the column is smaller 0 or greater than the
71 * available columns, DolphinView::SortByName is returned.
73 static DolphinView::Sorting sortingForColumn(int column);
75 signals:
76 void sortingRoleChanged();
78 protected:
79 virtual bool subSortLessThan(const QModelIndex& left,
80 const QModelIndex& right) const;
82 private:
83 DolphinView::Sorting m_sorting:16;
84 Qt::SortOrder m_sortOrder:16;
87 inline DolphinView::Sorting DolphinSortFilterProxyModel::sorting() const
89 return m_sorting;
92 inline Qt::SortOrder DolphinSortFilterProxyModel::sortOrder() const
94 return m_sortOrder;
97 #endif