mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
* [Cleanup] Unused #includes Took 44 minutes * [Cleanup] More unused #includes Took 55 minutes * [Cleanup] Include QSet Took 4 minutes * [Cleanup] Include QDebug in deck_list.cpp Took 3 minutes * [Cleanup] Include protocol stuff in servatrice_database_interface.h Took 3 minutes * [Cleanup] Include QDialogButtonBox Took 8 minutes * [Cleanup] Include QUrl Took 8 minutes * [Cleanup] Include QTextOption in header. Took 3 minutes * [Cleanup] Include QMap in user_list_manager.h Took 8 minutes * [Cleanup] Adjust qjson Took 8 minutes * [Cleanup] include button box. Took 3 minutes * [Cleanup] Redo fwd declarations. * [Cleanup] Redo last removed fwd declarations. --------- Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de>
66 lines
2.1 KiB
C++
66 lines
2.1 KiB
C++
#include "dlg_edit_user.h"
|
|
|
|
#include "../../../client/settings/cache_settings.h"
|
|
|
|
#include <QDialogButtonBox>
|
|
#include <QGridLayout>
|
|
#include <QHBoxLayout>
|
|
#include <QLabel>
|
|
#include <libcockatrice/utility/trice_limits.h>
|
|
|
|
DlgEditUser::DlgEditUser(QWidget *parent, QString email, QString country, QString realName) : QDialog(parent)
|
|
{
|
|
emailLabel = new QLabel(tr("Email:"));
|
|
emailEdit = new QLineEdit();
|
|
emailEdit->setMaxLength(MAX_NAME_LENGTH);
|
|
emailLabel->setBuddy(emailEdit);
|
|
emailEdit->setText(email);
|
|
|
|
countryLabel = new QLabel(tr("Country:"));
|
|
countryEdit = new QComboBox();
|
|
countryLabel->setBuddy(countryEdit);
|
|
countryEdit->insertItem(0, tr("Undefined"));
|
|
countryEdit->setCurrentIndex(0);
|
|
|
|
QStringList countries = SettingsCache::instance().getCountries();
|
|
int i = 1;
|
|
for (const QString &c : countries) {
|
|
countryEdit->addItem(QPixmap("theme:countries/" + c.toLower()), c);
|
|
if (c == country)
|
|
countryEdit->setCurrentIndex(i);
|
|
|
|
++i;
|
|
}
|
|
|
|
realnameLabel = new QLabel(tr("Real name:"));
|
|
realnameEdit = new QLineEdit();
|
|
realnameEdit->setMaxLength(MAX_NAME_LENGTH);
|
|
realnameLabel->setBuddy(realnameEdit);
|
|
realnameEdit->setText(realName);
|
|
|
|
QGridLayout *grid = new QGridLayout;
|
|
grid->addWidget(emailLabel, 0, 0);
|
|
grid->addWidget(emailEdit, 0, 1);
|
|
grid->addWidget(countryLabel, 2, 0);
|
|
grid->addWidget(countryEdit, 2, 1);
|
|
grid->addWidget(realnameLabel, 3, 0);
|
|
grid->addWidget(realnameEdit, 3, 1);
|
|
|
|
QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel);
|
|
connect(buttonBox, &QDialogButtonBox::accepted, this, &DlgEditUser::actOk);
|
|
connect(buttonBox, &QDialogButtonBox::rejected, this, &DlgEditUser::reject);
|
|
|
|
QVBoxLayout *mainLayout = new QVBoxLayout;
|
|
mainLayout->addLayout(grid);
|
|
mainLayout->addWidget(buttonBox);
|
|
setLayout(mainLayout);
|
|
|
|
setWindowTitle(tr("Edit user profile"));
|
|
setFixedHeight(sizeHint().height());
|
|
setMinimumWidth(300);
|
|
}
|
|
|
|
void DlgEditUser::actOk()
|
|
{
|
|
accept();
|
|
}
|