Add support for exact match searches

It will be enabled by default.
This commit is contained in:
Luis Ángel San Martín
2025-05-05 18:35:07 +02:00
parent e5f02bebe5
commit 868de856a7
21 changed files with 265 additions and 118 deletions

View File

@ -0,0 +1,12 @@
#ifndef SCRAPER_CHECKBOX_H
#define SCRAPER_CHECKBOX_H
#include <QCheckBox>
class ScraperCheckBox : public QCheckBox
{
public:
ScraperCheckBox(const QString &text, QWidget *parent = nullptr);
};
#endif // SCRAPER_CHECKBOX_H