mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-09-22 09:35:08 -07:00
Some checks failed
Build Desktop / Configure (push) Has been cancelled
Build Docker Image / amd64 & arm64 (push) Has been cancelled
Build Desktop / Debian 13 (push) Has been cancelled
Build Desktop / Debian 12 (push) Has been cancelled
Build Desktop / Fedora 44 (push) Has been cancelled
Build Desktop / Fedora 43 (push) Has been cancelled
Build Desktop / Servatrice_Debian 12 (push) Has been cancelled
Build Desktop / Ubuntu 26.04 (push) Has been cancelled
Build Desktop / Ubuntu 24.04 (push) Has been cancelled
Build Desktop / Arch (push) Has been cancelled
Build Desktop / macOS 14 (push) Has been cancelled
Build Desktop / macOS 15 (push) Has been cancelled
Build Desktop / macOS 13 Intel (push) Has been cancelled
Build Desktop / macOS 15 Debug (push) Has been cancelled
Build Desktop / Windows 10 (push) Has been cancelled
* Split trice_limits.h into dedicated headers * Updated docstrings
67 lines
2.1 KiB
C++
67 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/string_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();
|
|
}
|