2015-06-06 09:40:08 +08:00
|
|
|
/*
|
2018-04-13 04:02:28 +08:00
|
|
|
Copyright © 2015-2018 by The qTox Project Contributors
|
2015-06-06 09:40:08 +08:00
|
|
|
|
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
|
|
|
|
qTox is libre software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
qTox 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 qTox. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2015-06-04 01:04:28 +08:00
|
|
|
#ifndef LOGINSCREEN_H
|
|
|
|
#define LOGINSCREEN_H
|
|
|
|
|
2015-06-05 21:45:43 +08:00
|
|
|
#include <QShortcut>
|
2016-05-10 16:29:49 +08:00
|
|
|
#include <QToolButton>
|
2018-01-09 02:49:06 +08:00
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
class Profile;
|
2015-06-04 01:04:28 +08:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class LoginScreen;
|
|
|
|
}
|
|
|
|
|
2018-01-09 02:49:06 +08:00
|
|
|
class LoginScreen : public QDialog
|
2015-06-04 01:04:28 +08:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2018-04-20 14:54:14 +08:00
|
|
|
LoginScreen(QString selectedProfile = QString(), QWidget* parent = nullptr);
|
2015-06-04 01:04:28 +08:00
|
|
|
~LoginScreen();
|
2018-04-20 14:54:14 +08:00
|
|
|
void reset(QString selectedProfile = QString());
|
2018-01-09 02:49:06 +08:00
|
|
|
Profile* getProfile() const;
|
2015-06-04 01:04:28 +08:00
|
|
|
|
2015-07-30 07:46:19 +08:00
|
|
|
bool event(QEvent* event) final override;
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void windowStateChanged(Qt::WindowStates states);
|
2017-02-17 12:55:23 +08:00
|
|
|
void closed();
|
|
|
|
|
|
|
|
protected:
|
2017-02-26 19:52:45 +08:00
|
|
|
virtual void closeEvent(QCloseEvent* event) final override;
|
2015-07-30 07:46:19 +08:00
|
|
|
|
2015-06-04 01:28:16 +08:00
|
|
|
private slots:
|
2015-06-05 21:24:02 +08:00
|
|
|
void onAutoLoginToggled(int state);
|
2015-06-04 07:30:17 +08:00
|
|
|
void onLoginUsernameSelected(const QString& name);
|
2015-06-05 01:21:22 +08:00
|
|
|
void onPasswordEdited();
|
2015-06-04 01:28:16 +08:00
|
|
|
// Buttons to change page
|
|
|
|
void onNewProfilePageClicked();
|
|
|
|
void onLoginPageClicked();
|
|
|
|
// Buttons to submit form
|
|
|
|
void onCreateNewProfile();
|
|
|
|
void onLogin();
|
2016-04-25 22:46:08 +08:00
|
|
|
void onImportProfile();
|
2015-06-04 01:28:16 +08:00
|
|
|
|
2015-06-06 03:37:01 +08:00
|
|
|
private:
|
|
|
|
void retranslateUi();
|
2016-05-10 16:29:49 +08:00
|
|
|
void showCapsIndicator();
|
|
|
|
void hideCapsIndicator();
|
|
|
|
void checkCapsLock();
|
2015-06-06 03:37:01 +08:00
|
|
|
|
2015-06-04 01:04:28 +08:00
|
|
|
private:
|
2017-02-26 19:52:45 +08:00
|
|
|
Ui::LoginScreen* ui;
|
2015-06-05 21:45:43 +08:00
|
|
|
QShortcut quitShortcut;
|
2018-01-09 02:49:06 +08:00
|
|
|
Profile* profile{nullptr};
|
2015-06-04 01:04:28 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LOGINSCREEN_H
|