2010-07-28 14:43:47 +00:00
|
|
|
/*
|
2014-01-18 20:56:57 +00:00
|
|
|
* This file Copyright (C) 2010-2014 Mnemosyne LLC
|
2010-07-28 14:43:47 +00:00
|
|
|
*
|
2014-01-21 03:10:30 +00:00
|
|
|
* It may be used under the GNU GPL versions 2 or 3
|
2014-01-19 01:09:44 +00:00
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
2010-07-28 14:43:47 +00:00
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QTR_TRACKER_MODEL_FILTER_H
|
|
|
|
#define QTR_TRACKER_MODEL_FILTER_H
|
|
|
|
|
|
|
|
#include <QSortFilterProxyModel>
|
|
|
|
|
|
|
|
class TrackerModelFilter : public QSortFilterProxyModel
|
|
|
|
{
|
2013-09-14 22:45:04 +00:00
|
|
|
Q_OBJECT
|
2010-07-28 14:43:47 +00:00
|
|
|
|
2013-09-14 22:45:04 +00:00
|
|
|
public:
|
|
|
|
TrackerModelFilter (QObject *parent = 0);
|
2010-07-28 14:43:47 +00:00
|
|
|
|
2013-09-14 22:45:04 +00:00
|
|
|
public:
|
|
|
|
void setShowBackupTrackers (bool);
|
|
|
|
bool showBackupTrackers () const { return myShowBackups; }
|
2010-07-28 14:43:47 +00:00
|
|
|
|
2013-09-14 22:45:04 +00:00
|
|
|
protected:
|
|
|
|
bool filterAcceptsRow (int sourceRow, const QModelIndex&sourceParent) const;
|
2010-07-28 14:43:47 +00:00
|
|
|
|
2013-09-14 22:45:04 +00:00
|
|
|
private:
|
|
|
|
bool myShowBackups;
|
2010-07-28 14:43:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|