mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
69 lines
1.9 KiB
C++
69 lines
1.9 KiB
C++
#include "api_key_dialog.h"
|
|
|
|
#include <QVBoxLayout>
|
|
#include <QHBoxLayout>
|
|
#include <QLabel>
|
|
#include <QLineEdit>
|
|
#include <QPushButton>
|
|
#include <QSettings>
|
|
|
|
#include "yacreader_global_gui.h"
|
|
|
|
ApiKeyDialog::ApiKeyDialog(QWidget *parent)
|
|
: QDialog(parent)
|
|
{
|
|
auto layout = new QVBoxLayout;
|
|
auto buttonsLayout = new QHBoxLayout;
|
|
|
|
settings = new QSettings(YACReader::getSettingsPath() + "/YACReaderLibrary.ini", QSettings::IniFormat); //TODO unificar la creación del fichero de config con el servidor
|
|
settings->beginGroup("ComicVine");
|
|
|
|
QLabel *info = new QLabel(tr("Before you can connect to Comic Vine, you need your own API key. Please, get one free <a href=\"http://www.comicvine.com/api/\">here</a>"));
|
|
info->setWordWrap(true);
|
|
info->setOpenExternalLinks(true);
|
|
edit = new QLineEdit();
|
|
edit->setPlaceholderText(tr("Paste here your Comic Vine API key"));
|
|
connect(edit, SIGNAL(textChanged(QString)), this, SLOT(enableAccept(QString)));
|
|
|
|
acceptButton = new QPushButton(tr("Accept"));
|
|
acceptButton->setDisabled(true);
|
|
connect(acceptButton, SIGNAL(clicked()), this, SLOT(saveApiKey()));
|
|
|
|
cancelButton = new QPushButton(tr("Cancel"));
|
|
connect(cancelButton, SIGNAL(clicked()), this, SLOT(reject()));
|
|
|
|
layout->addWidget(info);
|
|
layout->addWidget(edit);
|
|
layout->addStretch();
|
|
|
|
buttonsLayout->addStretch();
|
|
buttonsLayout->addWidget(acceptButton);
|
|
buttonsLayout->addWidget(cancelButton);
|
|
|
|
layout->addLayout(buttonsLayout);
|
|
|
|
setLayout(layout);
|
|
|
|
resize(400, 150);
|
|
|
|
if (settings->contains(COMIC_VINE_API_KEY))
|
|
edit->setText(settings->value(COMIC_VINE_API_KEY).toString());
|
|
}
|
|
|
|
ApiKeyDialog::~ApiKeyDialog()
|
|
{
|
|
delete settings;
|
|
}
|
|
|
|
void ApiKeyDialog::enableAccept(const QString &text)
|
|
{
|
|
//TODO key validation
|
|
acceptButton->setEnabled(!text.isEmpty());
|
|
}
|
|
|
|
void ApiKeyDialog::saveApiKey()
|
|
{
|
|
settings->setValue(COMIC_VINE_API_KEY, edit->text().trimmed());
|
|
accept();
|
|
}
|