You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

87 lines
2.1 KiB

/*
* This file is part of the proxy model test suite.
*
* Copyright 2009  Stephen Kelly <steveire@gmail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301  USA
*/
#ifndef RECURSIVE_PM_WIDGET_H
#define RECURSIVE_PM_WIDGET_H
#include <QWidget>
#include <QRegExp>
#include "krecursivefilterproxymodel.h"
class QTreeView;
class QLineEdit;
class QLabel;
class QPushButton;
class DynamicTreeModel;
class KRecursiveFilterProxyModelSubclass : public KRecursiveFilterProxyModel
{
Q_OBJECT
public:
KRecursiveFilterProxyModelSubclass(QObject* parent = 0)
: KRecursiveFilterProxyModel(parent)
{
}
/* reimp */ bool acceptRow(int sourceRow, const QModelIndex &parent_index) const
{
static const int column = 0;
QModelIndex srcIndex = sourceModel()->index(sourceRow, column, parent_index);
return srcIndex.data().toString().contains(m_regExp);
}
void setRegExp( const QRegExp &re)
{
layoutAboutToBeChanged();
m_regExp = re;
invalidateFilter();
layoutChanged();
}
private:
QRegExp m_regExp;
};
class RecursiveFilterProxyWidget : public QWidget
{
Q_OBJECT
public:
RecursiveFilterProxyWidget(QWidget* parent = 0);
protected Q_SLOTS:
void reset();
private:
DynamicTreeModel *m_rootModel;
KRecursiveFilterProxyModel *m_recursive;
KRecursiveFilterProxyModelSubclass *m_recursiveSubclass;
QLineEdit *m_lineEdit;
QLabel *m_label;
};
#endif