mirror of
https://github.com/YACReader/yacreader
synced 2025-07-24 16:05:01 -04:00
Add support for exact match searches
It will be enabled by default.
This commit is contained in:
@ -1,9 +1,11 @@
|
||||
#ifndef SEARCH_VOLUME_H
|
||||
#define SEARCH_VOLUME_H
|
||||
|
||||
#include <QWidget>
|
||||
#include <QtWidgets>
|
||||
#include "scraper_checkbox.h"
|
||||
|
||||
class ScraperLineEdit;
|
||||
class ScraperCheckBox;
|
||||
|
||||
class SearchVolume : public QWidget
|
||||
{
|
||||
@ -13,9 +15,11 @@ public:
|
||||
void clean();
|
||||
void setVolumeInfo(const QString &volume);
|
||||
QString getVolumeInfo() const;
|
||||
bool getExactMatch() const { return exactMatchCheckBox->isChecked(); }
|
||||
|
||||
private:
|
||||
ScraperLineEdit *volumeEdit;
|
||||
ScraperCheckBox *exactMatchCheckBox;
|
||||
};
|
||||
|
||||
#endif // SEARCH_VOLUME_H
|
||||
|
Reference in New Issue
Block a user