2021-01-18 12:58:54 +05:30
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2013-11-29 08:15:52 +05:30
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
2013-12-01 06:30:42 +05:30
|
|
|
namespace Ui
|
|
|
|
{
|
2013-11-29 09:10:40 +05:30
|
|
|
class EditAccountDialog;
|
2013-11-29 08:15:52 +05:30
|
|
|
}
|
|
|
|
|
2013-11-29 09:10:40 +05:30
|
|
|
class EditAccountDialog : public QDialog
|
2013-11-29 08:15:52 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
Q_OBJECT
|
2013-11-29 08:15:52 +05:30
|
|
|
|
|
|
|
public:
|
2018-07-15 18:21:05 +05:30
|
|
|
explicit EditAccountDialog(const QString &text = "", QWidget *parent = 0,
|
|
|
|
int flags = UsernameField | PasswordField);
|
|
|
|
~EditAccountDialog();
|
2013-11-29 09:10:40 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
void setUsername(const QString & user) const;
|
|
|
|
void setPassword(const QString & pass) const;
|
2013-11-29 08:15:52 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
QString username() const;
|
|
|
|
QString password() const;
|
2013-11-29 08:15:52 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
enum Flags
|
|
|
|
{
|
|
|
|
NoFlags = 0,
|
2013-11-29 09:10:40 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
//! Specifies that the dialog should have a username field.
|
|
|
|
UsernameField,
|
2013-11-29 09:10:40 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
//! Specifies that the dialog should have a password field.
|
|
|
|
PasswordField,
|
|
|
|
};
|
2013-11-29 09:10:40 +05:30
|
|
|
|
2013-12-25 04:08:37 +05:30
|
|
|
private slots:
|
|
|
|
void on_label_linkActivated(const QString &link);
|
|
|
|
|
2013-11-29 08:15:52 +05:30
|
|
|
private:
|
2018-07-15 18:21:05 +05:30
|
|
|
Ui::EditAccountDialog *ui;
|
2013-11-29 08:15:52 +05:30
|
|
|
};
|