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.
34 lines
594 B
34 lines
594 B
4 months ago
|
#ifndef ADVANCEDFILTERDIALOG_H
|
||
|
#define ADVANCEDFILTERDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class AdvancedFilterDialog;
|
||
|
}
|
||
|
|
||
|
class AdvancedFilterDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit AdvancedFilterDialog(QWidget* parent = nullptr);
|
||
|
~AdvancedFilterDialog();
|
||
|
|
||
|
void setActiveScopes(QMap<QString, bool> options);
|
||
|
QMap<QString, bool> getActiveScopes() const;
|
||
|
|
||
|
//uncrustify off
|
||
|
public slots:
|
||
|
//uncrustify on
|
||
|
void checkAll();
|
||
|
void uncheckAll();
|
||
|
|
||
|
private:
|
||
|
Ui::AdvancedFilterDialog* ui;
|
||
|
|
||
|
void makeConnections();
|
||
|
};
|
||
|
|
||
|
#endif //ADVANCEDFILTERDIALOG_H
|