2021-01-18 07:28:54 +00:00
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2013-11-29 02:45:52 +00:00
|
|
|
*
|
|
|
|
* 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>
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
namespace Ui {
|
2013-11-29 03:40:40 +00:00
|
|
|
class EditAccountDialog;
|
2013-11-29 02:45:52 +00:00
|
|
|
}
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
class EditAccountDialog : public QDialog {
|
2013-12-01 01:00:42 +00:00
|
|
|
Q_OBJECT
|
2013-11-29 02:45:52 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
public:
|
|
|
|
explicit EditAccountDialog(const QString& text = "", QWidget* parent = 0, int flags = UsernameField | PasswordField);
|
2013-11-29 03:40:40 +00:00
|
|
|
~EditAccountDialog();
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
void setUsername(const QString& user) const;
|
|
|
|
void setPassword(const QString& pass) const;
|
2013-11-29 02:45:52 +00:00
|
|
|
|
2015-08-14 01:27:01 +01:00
|
|
|
QString username() const;
|
2013-11-29 02:45:52 +00:00
|
|
|
QString password() const;
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
enum Flags {
|
2013-12-01 01:00:42 +00:00
|
|
|
NoFlags = 0,
|
2013-11-29 03:40:40 +00:00
|
|
|
|
|
|
|
//! Specifies that the dialog should have a username field.
|
|
|
|
UsernameField,
|
|
|
|
|
|
|
|
//! Specifies that the dialog should have a password field.
|
|
|
|
PasswordField,
|
|
|
|
};
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
private slots:
|
|
|
|
void on_label_linkActivated(const QString& link);
|
2013-12-24 22:38:37 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
private:
|
|
|
|
Ui::EditAccountDialog* ui;
|
2013-11-29 02:45:52 +00:00
|
|
|
};
|