/gui/src/forms/frmnapiprojektconfig.cpp
https://github.com/QNapi/qnapi · C++ · 53 lines · 29 code · 11 blank · 13 comment · 1 complexity · ad11795c82a806f4ab54fb755b32f336 MD5 · raw file
- /*****************************************************************************
- ** QNapi
- ** Copyright (C) 2008-2017 Piotr Krzemiński <pio.krzeminski@gmail.com>
- **
- ** This program is free 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 2 of the License, or
- ** (at your option) any later version.
- **
- ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
- ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
- **
- *****************************************************************************/
- #include <QDesktopServices>
- #include <QDesktopWidget>
- #include "engines/napiprojektdownloadengine.h"
- #include "frmnapiprojektconfig.h"
- frmNapiProjektConfig::frmNapiProjektConfig(const EngineConfig &config,
- QWidget *parent, Qt::WindowFlags f)
- : QDialog(parent, f), config(config) {
- ui.setupUi(this);
- ui.leNick->setText(config.nick());
- ui.lePass->setText(config.password());
- QIcon napiProjektIcon = QIcon(QPixmap(NapiProjektDownloadEngine::pixmapData));
- setWindowIcon(napiProjektIcon);
- connect(ui.pbRegister, SIGNAL(clicked()), this, SLOT(pbRegisterClicked()));
- QRect position = frameGeometry();
- position.moveCenter(QDesktopWidget().availableGeometry().center());
- move(position.topLeft());
- }
- EngineConfig frmNapiProjektConfig::getConfig() const { return config; }
- void frmNapiProjektConfig::accept() {
- config = config.setNick(ui.leNick->text()).setPassword(ui.lePass->text());
- QDialog::accept();
- }
- void frmNapiProjektConfig::pbRegisterClicked() {
- Maybe<QUrl> maybeRegistrationUrl =
- NapiProjektDownloadEngine::metadata.registrationUrl();
- if (maybeRegistrationUrl) {
- QDesktopServices::openUrl(maybeRegistrationUrl.value());
- }
- }