view src/gui/dialog/settings/services.cc @ 282:19eb6c4dca78

autotools: ax_have_qt sucks, use pkgconf instead this is particularly useful because m4_ax_have_qt really sucked when cross compiling because of qmake
author Paper <paper@paper.us.eu.org>
date Wed, 08 May 2024 15:54:10 -0400
parents 657fda1b9cac
children b1f4d1867ab1
line wrap: on
line source

#include "core/anime.h"
#include "core/session.h"
#include "core/strings.h"
#include "gui/dialog/settings.h"
#include "gui/translate/anime.h"
#include "services/anilist.h"
#include <QComboBox>
#include <QGroupBox>
#include <QLabel>
#include <QLineEdit>
#include <QPushButton>
#include <QSizePolicy>
#include <QVBoxLayout>

QWidget* SettingsPageServices::CreateMainPage() {
	QWidget* result = new QWidget(this);
	result->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Maximum);

	QVBoxLayout* full_layout = new QVBoxLayout(result);

	{
		QGroupBox* sync_group_box = new QGroupBox(tr("Synchronization"), result);
		sync_group_box->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Maximum);

		QVBoxLayout* sync_layout = new QVBoxLayout(sync_group_box);

		{
			QLabel* sync_combo_box_label = new QLabel(tr("Active service and metadata provider:"), sync_group_box);
			sync_layout->addWidget(sync_combo_box_label);
		}

		{
			QComboBox* sync_combo_box = new QComboBox(sync_group_box);
			for (const auto& service : Anime::Services)
				sync_combo_box->addItem(Strings::ToQString(Translate::ToLocalString(service)), static_cast<int>(service));

			connect(sync_combo_box, QOverload<int>::of(&QComboBox::currentIndexChanged), this,
			        [this, sync_combo_box](int index) {
				service = static_cast<Anime::Service>(sync_combo_box->itemData(index).toInt());
			});

			/* this is evil */
			sync_combo_box->setCurrentIndex(static_cast<int>(service) - 1);
			sync_layout->addWidget(sync_combo_box);
		}

		{
			QLabel* sync_note_label = new QLabel(
			    tr("Note: Minori is unable to synchronize multiple services at the same time."), sync_group_box);
			sync_layout->addWidget(sync_note_label);
		}

		full_layout->addWidget(sync_group_box);
	}

	full_layout->setSpacing(10);
	full_layout->addStretch();

	return result;
}

QWidget* SettingsPageServices::CreateAniListPage() {
	QWidget* result = new QWidget(this);
	result->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Maximum);

	QVBoxLayout* full_layout = new QVBoxLayout(result);

	{
		/* Account */
		QGroupBox* group_box = new QGroupBox(tr("Account"), result);
		group_box->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Maximum);

		QVBoxLayout* layout = new QVBoxLayout(group_box);

		{
			/* Authorization */
			QWidget* auth_widget = new QWidget(group_box);
			QHBoxLayout* auth_layout = new QHBoxLayout(auth_widget);

			{
				QPushButton* auth_button = new QPushButton(auth_widget);
				connect(auth_button, &QPushButton::clicked, this, [] { Services::AniList::AuthorizeUser(); });
				auth_button->setText(session.config.auth.anilist.auth_token.empty() ? tr("Authorize...")
				                                                                    : tr("Re-authorize..."));
				auth_layout->addWidget(auth_button);
			}

			layout->addWidget(auth_widget);
		}

		{
			/* Note on creating new accounts... */
			QLabel* note_label =
			    new QLabel(tr("<a href=\"http://anilist.co/\">Create a new AniList account</a>"), group_box);
			note_label->setTextFormat(Qt::RichText);
			note_label->setTextInteractionFlags(Qt::TextBrowserInteraction);
			note_label->setOpenExternalLinks(true);
			layout->addWidget(note_label);
		}

		full_layout->addWidget(group_box);
	}

	full_layout->setSpacing(10);
	full_layout->addStretch();
	return result;
}

void SettingsPageServices::SaveInfo() {
	// see services/anilist.cc for why this is commented out
	session.config.service = service;
}

SettingsPageServices::SettingsPageServices(QWidget* parent) : SettingsPage(parent, tr("Services")) {
	service = session.config.service;
	AddTab(CreateMainPage(), tr("Main"));
	AddTab(CreateAniListPage(), tr("AniList"));
}