yacreader/YACReaderLibrary/comic_vine/search_volume.h
Luis Ángel San Martín 8b4b586acc Show the automatic volume text that is going to be used in comic vine dialog
The user can chose to use it or edit it before starting the search.
2022-08-18 14:35:25 +02:00

23 lines
384 B
C++

#ifndef SEARCH_VOLUME_H
#define SEARCH_VOLUME_H
#include <QWidget>
class ScraperLineEdit;
class SearchVolume : public QWidget
{
Q_OBJECT
public:
SearchVolume(QWidget *parent = nullptr);
void clean();
void setVolumeInfo(const QString &volume);
public slots:
QString getVolumeInfo() const;
private:
ScraperLineEdit *volumeEdit;
};
#endif // SEARCH_VOLUME_H