2014-09-15 18:45:59 +08:00
|
|
|
/*
|
|
|
|
Copyright (C) 2014 by Project Tox <https://tox.im>
|
|
|
|
|
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
|
|
|
|
This program 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.
|
|
|
|
This program 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 COPYING file for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef IDENTITYFORM_H
|
|
|
|
#define IDENTITYFORM_H
|
|
|
|
|
|
|
|
#include "genericsettings.h"
|
|
|
|
#include <QGroupBox>
|
2014-09-30 17:44:27 +08:00
|
|
|
#include <QTextEdit>
|
|
|
|
#include <QLineEdit>
|
2014-10-06 00:17:01 +08:00
|
|
|
#include <QLabel>
|
|
|
|
|
2014-09-30 17:44:27 +08:00
|
|
|
class CroppingLabel;
|
2014-10-23 20:41:47 +08:00
|
|
|
class Core;
|
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();
|
|
|
|
protected:
|
|
|
|
void mouseReleaseEvent(QMouseEvent*) {emit clicked();}
|
|
|
|
};
|
2014-09-15 18:45:59 +08:00
|
|
|
|
|
|
|
class IdentityForm : public GenericForm
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
IdentityForm();
|
|
|
|
~IdentityForm();
|
|
|
|
|
2014-10-08 20:25:32 +08:00
|
|
|
virtual void present();
|
2014-09-30 17:44:27 +08:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void userNameChanged(QString);
|
|
|
|
void statusMessageChanged(QString);
|
|
|
|
|
|
|
|
private slots:
|
2014-10-18 09:15:26 +08:00
|
|
|
void setToxId(const QString& id);
|
2014-09-30 17:44:27 +08:00
|
|
|
void copyIdClicked();
|
|
|
|
void onUserNameEdited();
|
|
|
|
void onStatusMessageEdited();
|
2014-10-09 16:07:26 +08:00
|
|
|
void onLoadClicked();
|
|
|
|
void onRenameClicked();
|
|
|
|
void onExportClicked();
|
|
|
|
void onDeleteClicked();
|
|
|
|
void onImportClicked();
|
2014-10-20 11:07:51 +08:00
|
|
|
void onNewClicked();
|
2014-10-20 11:36:39 +08:00
|
|
|
bool checkContinue(const QString& title, const QString& msg);
|
2014-10-23 20:41:47 +08:00
|
|
|
void disableSwitching();
|
|
|
|
void enableSwitching();
|
2014-09-30 17:44:27 +08:00
|
|
|
|
2014-09-15 18:45:59 +08:00
|
|
|
private:
|
2014-10-06 00:17:01 +08:00
|
|
|
Ui::IdentitySettings* bodyUI;
|
2014-10-23 20:41:47 +08:00
|
|
|
Core* core;
|
2014-10-06 00:17:01 +08:00
|
|
|
|
2014-09-30 17:44:27 +08:00
|
|
|
ClickableTE* toxId;
|
2014-09-15 18:45:59 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|