yacreader/YACReaderLibrary/comic_vine/search_volume.cpp
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

42 lines
857 B
C++

#include "search_volume.h"
#include "scraper_lineedit.h"
#include <QLabel>
#include <QVBoxLayout>
SearchVolume::SearchVolume(QWidget *parent)
: QWidget(parent)
{
QLabel *label = new QLabel(tr("Please provide some additional information."));
label->setStyleSheet("QLabel {color:white; font-size:12px;font-family:Arial;}");
volumeEdit = new ScraperLineEdit(tr("Series:"));
QVBoxLayout *l = new QVBoxLayout;
l->addSpacing(35);
l->addWidget(label);
l->addWidget(volumeEdit);
l->addStretch();
l->setContentsMargins(0, 0, 0, 0);
setLayout(l);
setContentsMargins(0, 0, 0, 0);
}
void SearchVolume::clean()
{
volumeEdit->clear();
}
void SearchVolume::setVolumeInfo(const QString &volume)
{
volumeEdit->setText(volume);
}
QString SearchVolume::getVolumeInfo() const
{
return volumeEdit->text();
}