QGIS API Documentation 3.99.0-Master (26c88405ac0)
Loading...
Searching...
No Matches
qgsdbfilterproxymodel.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsdbfilterproxymodel.cpp - description
3 -------------------------
4 begin : Dec 2007
5 copyright : (C) 2007 by Marco Hugentobler
6 email : marco dot hugentobler at karto dot baug dot ethz dot ch
7 ***************************************************************************/
8
9/***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
17
19
20#include "moc_qgsdbfilterproxymodel.cpp"
21
22QgsDatabaseFilterProxyModel::QgsDatabaseFilterProxyModel( QObject *parent ): QSortFilterProxyModel( parent )
23{
24
25}
26
27bool QgsDatabaseFilterProxyModel::filterAcceptsRow( int row, const QModelIndex &source_parent ) const
28{
29 //if parent is valid, we have a toplevel item that should be always shown
30 if ( !source_parent.isValid() )
31 {
32 return true;
33 }
34
35 //else we have a row that describes a table and that
36 //should be tested using the given wildcard/regexp
37 return QSortFilterProxyModel::filterAcceptsRow( row, source_parent );
38}
39
41{
42 QSortFilterProxyModel::setFilterWildcard( pattern );
43 emit layoutChanged();
44}
45
47{
48#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
49 QSortFilterProxyModel::setFilterRegExp( pattern );
50#else
51 QSortFilterProxyModel::setFilterRegularExpression( pattern );
52#endif
53 emit layoutChanged();
54}
QgsDatabaseFilterProxyModel(QObject *parent=nullptr)
Constructor for QgsDatabaseFilterProxyModel.
bool filterAcceptsRow(int row, const QModelIndex &source_parent) const override
void _setFilterRegExp(const QString &pattern)
Calls QSortFilterProxyModel::setFilterRegExp and triggers update.
void _setFilterWildcard(const QString &pattern)
Calls QSortFilterProxyModel::setFilterWildcard and triggers update.