pollymc/launcher/dialogs/EditAccountDialog.cpp

62 lines
1.6 KiB
C++
Raw Normal View History

2021-01-18 12:58:54 +05:30
/* Copyright 2013-2021 MultiMC Contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "EditAccountDialog.h"
#include "ui_EditAccountDialog.h"
#include <DesktopServices.h>
2013-12-25 04:08:37 +05:30
#include <QUrl>
EditAccountDialog::EditAccountDialog(const QString &text, QWidget *parent, int flags)
2018-07-15 18:21:05 +05:30
: QDialog(parent), ui(new Ui::EditAccountDialog)
{
2018-07-15 18:21:05 +05:30
ui->setupUi(this);
2018-07-15 18:21:05 +05:30
ui->label->setText(text);
ui->label->setVisible(!text.isEmpty());
2018-07-15 18:21:05 +05:30
ui->userTextBox->setEnabled(flags & UsernameField);
ui->passTextBox->setEnabled(flags & PasswordField);
}
EditAccountDialog::~EditAccountDialog()
{
2018-07-15 18:21:05 +05:30
delete ui;
}
2013-12-25 04:08:37 +05:30
void EditAccountDialog::on_label_linkActivated(const QString &link)
{
2018-07-15 18:21:05 +05:30
DesktopServices::openUrl(QUrl(link));
2013-12-25 04:08:37 +05:30
}
2015-08-14 05:57:01 +05:30
void EditAccountDialog::setUsername(const QString & user) const
{
2018-07-15 18:21:05 +05:30
ui->userTextBox->setText(user);
2015-08-14 05:57:01 +05:30
}
QString EditAccountDialog::username() const
{
2018-07-15 18:21:05 +05:30
return ui->userTextBox->text();
}
2015-08-14 05:57:01 +05:30
void EditAccountDialog::setPassword(const QString & pass) const
{
2018-07-15 18:21:05 +05:30
ui->passTextBox->setText(pass);
2015-08-14 05:57:01 +05:30
}
QString EditAccountDialog::password() const
{
2018-07-15 18:21:05 +05:30
return ui->passTextBox->text();
}