2014-09-15 18:45:59 +08:00
|
|
|
/*
|
2016-11-28 21:33:38 +08:00
|
|
|
Copyright © 2014-2015 by The qTox Project Contributors
|
2015-06-06 09:40:08 +08:00
|
|
|
|
2014-09-15 18:45:59 +08:00
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
|
2015-06-06 09:40:08 +08:00
|
|
|
qTox is libre software: you can redistribute it and/or modify
|
2014-09-15 18:45:59 +08:00
|
|
|
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.
|
2015-06-06 09:40:08 +08:00
|
|
|
|
|
|
|
qTox is distributed in the hope that it will be useful,
|
2014-09-15 18:45:59 +08:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-06-06 09:40:08 +08:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2014-09-15 18:45:59 +08:00
|
|
|
|
2015-06-06 09:40:08 +08:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with qTox. If not, see <http://www.gnu.org/licenses/>.
|
2014-09-15 18:45:59 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef IDENTITYFORM_H
|
|
|
|
#define IDENTITYFORM_H
|
|
|
|
|
2017-02-26 19:52:45 +08:00
|
|
|
#include "src/core/core.h"
|
|
|
|
#include "src/widget/qrwidget.h"
|
2014-10-06 00:17:01 +08:00
|
|
|
#include <QLabel>
|
2017-02-26 19:52:45 +08:00
|
|
|
#include <QLineEdit>
|
2014-11-11 07:20:10 +08:00
|
|
|
#include <QTimer>
|
2015-03-05 03:35:34 +08:00
|
|
|
#include <QVBoxLayout>
|
2014-10-06 00:17:01 +08:00
|
|
|
|
2014-09-30 17:44:27 +08:00
|
|
|
class CroppingLabel;
|
2014-10-23 20:41:47 +08:00
|
|
|
class Core;
|
2015-03-04 04:29:01 +08:00
|
|
|
class MaskablePixmapWidget;
|
2015-06-17 02:25:19 +08:00
|
|
|
class ContentLayout;
|
2014-09-30 17:44:27 +08:00
|
|
|
|
2014-10-06 00:17:01 +08:00
|
|
|
namespace Ui {
|
|
|
|
class IdentitySettings;
|
|
|
|
}
|
|
|
|
|
2014-10-06 02:02:12 +08:00
|
|
|
class ClickableTE : public QLineEdit
|
2014-09-30 17:44:27 +08:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
signals:
|
|
|
|
void clicked();
|
2015-08-30 19:25:46 +08:00
|
|
|
|
2014-09-30 17:44:27 +08:00
|
|
|
protected:
|
2016-07-07 17:55:53 +08:00
|
|
|
virtual void mouseReleaseEvent(QMouseEvent*) final override
|
|
|
|
{
|
|
|
|
emit clicked();
|
|
|
|
}
|
2014-09-30 17:44:27 +08:00
|
|
|
};
|
2014-09-15 18:45:59 +08:00
|
|
|
|
2015-03-04 04:29:01 +08:00
|
|
|
class ProfileForm : public QWidget
|
2014-09-15 18:45:59 +08:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2017-01-06 19:02:54 +08:00
|
|
|
explicit ProfileForm(QWidget* parent = nullptr);
|
2015-03-04 04:29:01 +08:00
|
|
|
~ProfileForm();
|
2017-02-26 19:52:45 +08:00
|
|
|
virtual void show() final
|
|
|
|
{
|
|
|
|
}
|
2015-06-17 02:25:19 +08:00
|
|
|
void show(ContentLayout* contentLayout);
|
2015-07-01 00:29:09 +08:00
|
|
|
bool isShown() const;
|
2014-09-30 17:44:27 +08:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void userNameChanged(QString);
|
|
|
|
void statusMessageChanged(QString);
|
|
|
|
|
2015-03-04 04:29:01 +08:00
|
|
|
public slots:
|
2017-02-26 19:52:45 +08:00
|
|
|
void onSelfAvatarLoaded(const QPixmap& pic);
|
2015-08-30 19:25:46 +08:00
|
|
|
void onLogoutClicked();
|
2015-03-04 04:29:01 +08:00
|
|
|
|
2014-09-30 17:44:27 +08:00
|
|
|
private slots:
|
2016-05-14 19:28:42 +08:00
|
|
|
void setPasswordButtonsText();
|
2017-02-26 19:52:45 +08:00
|
|
|
void setToxId(const ToxId& id);
|
2014-09-30 17:44:27 +08:00
|
|
|
void copyIdClicked();
|
|
|
|
void onUserNameEdited();
|
|
|
|
void onStatusMessageEdited();
|
2014-10-09 16:07:26 +08:00
|
|
|
void onRenameClicked();
|
|
|
|
void onExportClicked();
|
|
|
|
void onDeleteClicked();
|
2015-06-04 17:37:54 +08:00
|
|
|
void onCopyQrClicked();
|
|
|
|
void onSaveQrClicked();
|
2015-06-04 23:09:13 +08:00
|
|
|
void onDeletePassClicked();
|
|
|
|
void onChangePassClicked();
|
2015-10-04 19:51:01 +08:00
|
|
|
void onAvatarClicked();
|
2017-02-26 19:52:45 +08:00
|
|
|
void showProfilePictureContextMenu(const QPoint& point);
|
2015-12-30 23:45:46 +08:00
|
|
|
void onRegisterButtonClicked();
|
|
|
|
|
2015-06-06 03:37:01 +08:00
|
|
|
private:
|
2016-04-13 06:20:16 +08:00
|
|
|
void showExistingToxme();
|
2015-06-06 03:37:01 +08:00
|
|
|
void retranslateUi();
|
2015-07-10 15:43:20 +08:00
|
|
|
void prFileLabelUpdate();
|
2015-06-06 03:37:01 +08:00
|
|
|
|
2014-09-15 18:45:59 +08:00
|
|
|
private:
|
2017-02-26 19:52:45 +08:00
|
|
|
bool eventFilter(QObject* object, QEvent* event);
|
2015-03-04 06:04:16 +08:00
|
|
|
void refreshProfiles();
|
2014-10-06 00:17:01 +08:00
|
|
|
Ui::IdentitySettings* bodyUI;
|
2015-03-04 04:29:01 +08:00
|
|
|
MaskablePixmapWidget* profilePicture;
|
2014-10-23 20:41:47 +08:00
|
|
|
Core* core;
|
2014-11-11 07:20:10 +08:00
|
|
|
QTimer timer;
|
2015-01-20 16:07:56 +08:00
|
|
|
bool hasCheck = false;
|
2017-02-26 19:52:45 +08:00
|
|
|
QRWidget* qr;
|
2014-09-30 17:44:27 +08:00
|
|
|
ClickableTE* toxId;
|
2016-01-24 05:50:57 +08:00
|
|
|
void showRegisterToxme();
|
2014-09-15 18:45:59 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|