Conference Registration 2024.07.18.04
Loading...
Searching...
No Matches
registrationfilterproxymodel.h
Go to the documentation of this file.
1
9#ifndef REGISTRATIONFILTERPROXYMODEL_H
10#define REGISTRATIONFILTERPROXYMODEL_H
11
12#include <QSortFilterProxyModel>
13
14
20class RegistrationFilterProxyModel : public QSortFilterProxyModel
21{
22 Q_OBJECT
23
24public:
29 explicit RegistrationFilterProxyModel(QObject *parent = nullptr);
30
31public slots:
36 void setFilterText(const QString &filterText);
37};
38
39#endif // REGISTRATIONFILTERPROXYMODEL_H
The RegistrationFilterProxyModel class is a custom proxy model that filters the data based on a filte...
Definition registrationfilterproxymodel.h:21
void setFilterText(const QString &filterText)
Sets the filter text to be used for filtering the data.
Definition registrationfilterproxymodel.cpp:21
RegistrationFilterProxyModel(QObject *parent=nullptr)
Constructs a RegistrationFilterProxyModel object.
Definition registrationfilterproxymodel.cpp:14