mirror of
https://github.com/debauchee/barrier.git
synced 2026-05-10 16:31:39 +08:00
289 lines
7.1 KiB
C++
289 lines
7.1 KiB
C++
/*
|
|
* synergy -- mouse and keyboard sharing utility
|
|
* Copyright (C) 2012 Synergy Si Ltd.
|
|
*
|
|
* This package is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* found in the file LICENSE that should have accompanied this file.
|
|
*
|
|
* This package is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "SetupWizard.h"
|
|
#include "MainWindow.h"
|
|
#include "WebClient.h"
|
|
#include "SubscriptionManager.h"
|
|
#include "EditionType.h"
|
|
#include "QSynergyApplication.h"
|
|
#include "QUtility.h"
|
|
|
|
#include <QMessageBox>
|
|
|
|
SetupWizard::SetupWizard(MainWindow& mainWindow, bool startMain) :
|
|
m_MainWindow(mainWindow),
|
|
m_StartMain(startMain),
|
|
m_Edition(Unknown),
|
|
m_LoginAttemps(0)
|
|
{
|
|
setupUi(this);
|
|
m_pPluginPage = new PluginWizardPage(mainWindow);
|
|
addPage(m_pPluginPage);
|
|
|
|
#if defined(Q_OS_MAC)
|
|
|
|
// the mac style needs a little more room because of the
|
|
// graphic on the left.
|
|
resize(600, 500);
|
|
setMinimumSize(size());
|
|
|
|
#elif defined(Q_OS_WIN)
|
|
|
|
// when areo is disabled on windows, the next/back buttons
|
|
// are hidden (must be a qt bug) -- resizing the window
|
|
// to +1 of the original height seems to fix this.
|
|
// NOTE: calling setMinimumSize after this will break
|
|
// it again, so don't do that.
|
|
resize(size().width(), size().height() + 1);
|
|
|
|
#endif
|
|
|
|
connect(m_pServerRadioButton, SIGNAL(toggled(bool)), m_MainWindow.m_pGroupServer, SLOT(setChecked(bool)));
|
|
connect(m_pClientRadioButton, SIGNAL(toggled(bool)), m_MainWindow.m_pGroupClient, SLOT(setChecked(bool)));
|
|
|
|
m_Locale.fillLanguageComboBox(m_pComboLanguage);
|
|
setIndexFromItemData(m_pComboLanguage, m_MainWindow.appConfig().language());
|
|
AppConfig& appConfig = m_MainWindow.appConfig();
|
|
|
|
m_pLineEditEmail->setText(appConfig.activateEmail());
|
|
m_pLineEditSerialKey->setText(appConfig.serialKey());
|
|
|
|
m_pLineEditSerialKey->setEnabled(false);
|
|
|
|
}
|
|
|
|
SetupWizard::~SetupWizard()
|
|
{
|
|
}
|
|
|
|
bool SetupWizard::validateCurrentPage()
|
|
{
|
|
QMessageBox message;
|
|
message.setWindowTitle(tr("Setup Synergy"));
|
|
message.setIcon(QMessageBox::Information);
|
|
|
|
if (currentPage() == m_pActivatePage)
|
|
{
|
|
if (m_pRadioButtonActivate->isChecked()) {
|
|
if (m_pLineEditEmail->text().isEmpty() ||
|
|
m_pLineEditPassword->text().isEmpty()) {
|
|
message.setText(tr("Please enter your email address and password."));
|
|
message.exec();
|
|
return false;
|
|
}
|
|
else {
|
|
WebClient webClient;
|
|
m_Edition = webClient.getEdition(
|
|
m_pLineEditEmail->text(),
|
|
m_pLineEditPassword->text(),
|
|
message,
|
|
this);
|
|
|
|
if (m_Edition == Unknown) {
|
|
m_LoginAttemps++;
|
|
if (m_LoginAttemps == kMaximiumLoginAttemps) {
|
|
m_LoginAttemps = 0;
|
|
|
|
QMessageBox::StandardButton reply =
|
|
QMessageBox::information(
|
|
this, tr("Setup Synergy"),
|
|
tr("Would you like to use your serial key instead?"),
|
|
QMessageBox::Yes | QMessageBox::No);
|
|
|
|
if (reply == QMessageBox::Yes) {
|
|
m_pRadioButtonSubscription->setChecked(true);
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
else {
|
|
m_pPluginPage->setEdition(m_Edition);
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
else if (m_pRadioButtonSubscription->isChecked()) {
|
|
if (m_pLineEditSerialKey->text().isEmpty()) {
|
|
message.setText(tr("Please enter your subscription serial key."));
|
|
message.exec();
|
|
return false;
|
|
}
|
|
else {
|
|
// create subscription file in profile directory
|
|
SubscriptionManager subscriptionManager(this, m_MainWindow.appConfig(), m_Edition);
|
|
if (!subscriptionManager.activateSerial(m_pLineEditSerialKey->text())) {
|
|
return false;
|
|
}
|
|
|
|
m_pPluginPage->setEdition(m_Edition);
|
|
|
|
return true;
|
|
}
|
|
}
|
|
else {
|
|
return true;
|
|
}
|
|
}
|
|
else if (currentPage() == m_pNodePage)
|
|
{
|
|
bool result = m_pClientRadioButton->isChecked() ||
|
|
m_pServerRadioButton->isChecked();
|
|
|
|
if (!result)
|
|
{
|
|
message.setText(tr("Please select an option."));
|
|
message.exec();
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
void SetupWizard::changeEvent(QEvent* event)
|
|
{
|
|
if (event != 0)
|
|
{
|
|
switch (event->type())
|
|
{
|
|
case QEvent::LanguageChange:
|
|
{
|
|
m_pComboLanguage->blockSignals(true);
|
|
retranslateUi(this);
|
|
m_pComboLanguage->blockSignals(false);
|
|
break;
|
|
}
|
|
|
|
default:
|
|
QWizard::changeEvent(event);
|
|
}
|
|
}
|
|
}
|
|
|
|
void SetupWizard::accept()
|
|
{
|
|
AppConfig& appConfig = m_MainWindow.appConfig();
|
|
|
|
appConfig.setLanguage(m_pComboLanguage->itemData(m_pComboLanguage->currentIndex()).toString());
|
|
|
|
appConfig.setWizardHasRun();
|
|
appConfig.saveSettings();
|
|
|
|
QSettings& settings = m_MainWindow.settings();
|
|
if (m_pServerRadioButton->isChecked())
|
|
{
|
|
settings.setValue("groupServerChecked", true);
|
|
settings.setValue("groupClientChecked", false);
|
|
}
|
|
if (m_pClientRadioButton->isChecked())
|
|
{
|
|
settings.setValue("groupClientChecked", true);
|
|
settings.setValue("groupServerChecked", false);
|
|
}
|
|
|
|
if (m_pRadioButtonActivate->isChecked()) {
|
|
appConfig.setActivateEmail(m_pLineEditEmail->text());
|
|
QString mac = getFirstMacAddress();
|
|
QString hashSrc = m_pLineEditEmail->text() + mac;
|
|
QString hashResult = hash(hashSrc);
|
|
appConfig.setUserToken(hashResult);
|
|
appConfig.setEdition(m_Edition);
|
|
|
|
CoreInterface coreInterface;
|
|
coreInterface.notifyActivation("login:" + m_pLineEditEmail->text());
|
|
}
|
|
|
|
if (m_pRadioButtonSubscription->isChecked())
|
|
{
|
|
appConfig.setSerialKey(m_pLineEditSerialKey->text());
|
|
|
|
CoreInterface coreInterface;
|
|
coreInterface.notifyActivation("serial:" + m_pLineEditSerialKey->text());
|
|
}
|
|
|
|
if (m_pRadioButtonSkip->isChecked())
|
|
{
|
|
CoreInterface coreInterface;
|
|
coreInterface.notifyActivation("skip:unknown");
|
|
}
|
|
|
|
m_MainWindow.setEdition(m_Edition);
|
|
m_MainWindow.updateLocalFingerprint();
|
|
|
|
settings.sync();
|
|
|
|
QWizard::accept();
|
|
|
|
if (m_StartMain)
|
|
{
|
|
m_MainWindow.updateZeroconfService();
|
|
m_MainWindow.open();
|
|
}
|
|
}
|
|
|
|
void SetupWizard::reject()
|
|
{
|
|
QSynergyApplication::getInstance()->switchTranslator(m_MainWindow.appConfig().language());
|
|
|
|
if (m_StartMain)
|
|
{
|
|
m_MainWindow.setEdition(m_Edition);
|
|
m_MainWindow.open();
|
|
}
|
|
|
|
// treat cancel as skip
|
|
CoreInterface coreInterface;
|
|
coreInterface.notifyActivation("skip:unknown");
|
|
|
|
QWizard::reject();
|
|
}
|
|
|
|
void SetupWizard::on_m_pComboLanguage_currentIndexChanged(int index)
|
|
{
|
|
QString ietfCode = m_pComboLanguage->itemData(index).toString();
|
|
QSynergyApplication::getInstance()->switchTranslator(ietfCode);
|
|
}
|
|
|
|
void SetupWizard::on_m_pRadioButtonSkip_toggled(bool checked)
|
|
{
|
|
if (checked) {
|
|
m_pLineEditEmail->setEnabled(false);
|
|
m_pLineEditPassword->setEnabled(false);
|
|
m_pLineEditSerialKey->setEnabled(false);
|
|
}
|
|
}
|
|
|
|
void SetupWizard::on_m_pRadioButtonActivate_toggled(bool checked)
|
|
{
|
|
if (checked) {
|
|
m_pLineEditEmail->setEnabled(true);
|
|
m_pLineEditPassword->setEnabled(true);
|
|
m_pLineEditSerialKey->setEnabled(false);
|
|
}
|
|
}
|
|
|
|
void SetupWizard::on_m_pRadioButtonSubscription_toggled(bool checked)
|
|
{
|
|
if (checked) {
|
|
m_pLineEditEmail->setEnabled(false);
|
|
m_pLineEditPassword->setEnabled(false);
|
|
m_pLineEditSerialKey->setEnabled(true);
|
|
}
|
|
}
|