forked from nextcloud/desktop
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge #93 nmc/2003-Account_Settings_Dialog - Master
- Loading branch information
Showing
10 changed files
with
277 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
/* | ||
* Copyright (C) by Eugen Fischer | ||
* | ||
* 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 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 GNU General Public License | ||
* for more details. | ||
*/ | ||
|
||
#include "nmcgui/nmcaccountsettings.h" | ||
#include "ui_accountsettings.h" | ||
#include "qdesktopservices.h" | ||
|
||
|
||
namespace OCC { | ||
|
||
NMCAccountSettings::NMCAccountSettings(AccountState *accountState, QWidget *parent) | ||
: AccountSettings(accountState, parent) | ||
, m_liveAccountButton(new CustomButton(tr("ADD_LIVE_BACKUP"), QIcon(QLatin1String(":/client/theme/NMCIcons/action-add.svg")).pixmap(24,24))) | ||
, m_liveTitle(new QLabel(tr("LIVE_BACKUPS"))) | ||
, m_liveDescription(new QLabel(tr("LIVE_DESCRIPTION"))) | ||
, m_folderSync(new QLabel(tr("YOUR_FOLDER_SYNC"))) | ||
{ | ||
setDefaultSettings(); | ||
setLayout(); | ||
connect(m_liveAccountButton, &CustomButton::clicked, this, &NMCAccountSettings::slotAddFolder); | ||
} | ||
|
||
void NMCAccountSettings::setDefaultSettings() | ||
{ | ||
//Set default settings | ||
getUi()->encryptionMessage->setCloseButtonVisible(true); | ||
getUi()->selectiveSyncStatus->setVisible(false); | ||
getUi()->selectiveSyncNotification->setVisible(false); | ||
getUi()->accountStatus->setVisible(false); | ||
getUi()->bigFolderUi->setVisible(false); | ||
|
||
getUi()->gridLayout->setSpacing(8); | ||
} | ||
|
||
void NMCAccountSettings::setLayout() | ||
{ | ||
//Fix layout | ||
getUi()->storageGroupBox->removeWidget(getUi()->quotaInfoLabel); | ||
getUi()->storageGroupBox->removeWidget(getUi()->quotaProgressBar); | ||
|
||
getUi()->gridLayout->removeWidget(getUi()->encryptionMessage); | ||
getUi()->gridLayout->addWidget(getUi()->encryptionMessage, 0, 0); | ||
|
||
//getUi()->gridLayout->addWidget(new QLabel(""), 1, 0); //Spacer | ||
|
||
//Title | ||
m_folderSync->setStyleSheet("font-size: 15px; font-weight: 600; padding: 8px;"); //Semi-bold | ||
m_folderSync->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Fixed); | ||
getUi()->gridLayout->addWidget(m_folderSync, 1, 0); | ||
|
||
//Live backup area encryptionMessage | ||
auto *liveHLayout = new QHBoxLayout(this); | ||
liveHLayout->setContentsMargins(8,8,8,8); | ||
auto *liveVLayout = new QVBoxLayout(this); | ||
auto *liveWidget = new QWidget(this); | ||
|
||
liveWidget->setStyleSheet("QWidget {background-color: white;border-radius: 4px;}"); | ||
liveWidget->setLayout(liveHLayout); | ||
liveHLayout->addLayout(liveVLayout); | ||
|
||
liveHLayout->addSpacerItem(new QSpacerItem(1,1, QSizePolicy::Expanding, QSizePolicy::Fixed)); | ||
|
||
const QString styleSheet("QPushButton{ font-size: %5px; border: %1px solid; border-color: black; border-radius: 4px; background-color: %2; color: %3;} QPushButton:hover { background-color: %4; }" ); | ||
m_liveAccountButton->setStyleSheet(styleSheet.arg("0","#E20074","white", "#c00063", "13")); | ||
m_liveAccountButton->setFixedSize(180, 32); | ||
m_liveAccountButton->setLeftIconMargin(4); | ||
liveHLayout->addWidget(m_liveAccountButton); | ||
|
||
liveVLayout->addWidget(m_liveTitle); | ||
m_liveTitle->setStyleSheet("font-size: 15px; font-weight: 600;"); //Semi-bold | ||
liveVLayout->addWidget(m_liveDescription); | ||
m_liveDescription->setStyleSheet("font-size: 13px;"); | ||
m_liveDescription->setText("Synchronisieren Sie weitere beliebiege lokale Ordner in ihre MagentaCLOUD und schützen Sie damit ihre Onhalte kontienuierlich."); | ||
m_liveDescription->setWordWrap(true); | ||
m_liveDescription->setFixedWidth(450); | ||
|
||
getUi()->gridLayout->addWidget(liveWidget, 4, 0); | ||
|
||
|
||
//Storage area | ||
auto *magentaHLayout = new QHBoxLayout(this); | ||
magentaHLayout->setSpacing(32); | ||
|
||
auto *quotaVLayout = new QVBoxLayout(this); | ||
quotaVLayout->setSpacing(4); | ||
auto *quota = new QLabel(this); | ||
quota->setText(tr("USED_STORAGE_%1").arg(QString::number(getUi()->quotaProgressBar->value() > 0 ? getUi()->quotaProgressBar->value() : 0))); | ||
|
||
quotaVLayout->addSpacerItem(new QSpacerItem(1,12, QSizePolicy::Fixed, QSizePolicy::Fixed)); | ||
quotaVLayout->addWidget(getUi()->quotaInfoLabel); | ||
getUi()->quotaInfoLabel->setStyleSheet("QLabel{font-size: 18px; padding: 8px;}"); | ||
quotaVLayout->addWidget(getUi()->quotaProgressBar); | ||
getUi()->quotaProgressBar->setStyleSheet("QProgressBar {" | ||
" background-color: #e5e5e5;" | ||
" color: black;" | ||
" border-width: 1px;" | ||
" border-color: black;" | ||
" border-radius: 4px;" | ||
"}" | ||
|
||
"QProgressBar::chunk {" | ||
" background-color: #ea0a8e; }"); | ||
getUi()->quotaProgressBar->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); | ||
quotaVLayout->addWidget(quota); | ||
quota->setStyleSheet("font-size: 13px; padding: 8px;"); | ||
quotaVLayout->addSpacerItem(new QSpacerItem(1,20, QSizePolicy::Fixed, QSizePolicy::Fixed)); | ||
|
||
magentaHLayout->addLayout(quotaVLayout); | ||
|
||
auto *storageLinkButton = new QPushButton(tr("STORAGE_EXTENSION"), this); | ||
storageLinkButton->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Fixed); | ||
storageLinkButton->setStyleSheet("QPushButton {" | ||
" height: 32px;" | ||
" width: 180px;" | ||
" border: 1px solid black;" | ||
" background-color: #ededed;" | ||
" font-size: 13px;" | ||
" border-radius: 4px;" | ||
"} QPushButton::hover {" | ||
" background-color: white;" | ||
"}"); | ||
connect(storageLinkButton, &QPushButton::clicked, this, [](){ | ||
QDesktopServices::openUrl(QUrl("https://cloud.telekom-dienste.de/tarife")); | ||
}); | ||
magentaHLayout->addWidget(storageLinkButton); | ||
magentaHLayout->addSpacerItem(new QSpacerItem(8,1, QSizePolicy::Fixed, QSizePolicy::Fixed)); | ||
|
||
getUi()->gridLayout->addLayout(magentaHLayout, 5, 0); | ||
} | ||
|
||
} // namespace OCC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
/* | ||
* Copyright (C) by Eugen Fischer | ||
* | ||
* 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 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 GNU General Public License | ||
* for more details. | ||
*/ | ||
|
||
#ifndef MIRALL_ACCOUNTSETTINGSMAGENTA_H | ||
#define MIRALL_ACCOUNTSETTINGSMAGENTA_H | ||
|
||
#include "QtWidgets/qpushbutton.h" | ||
#include <accountsettings.h> | ||
#include <QPushButton> | ||
#include <QIcon> | ||
#include <QPainter> | ||
|
||
namespace OCC { | ||
|
||
/** | ||
* @brief The CustomButton class is a QPushButton with an additional left icon. | ||
* @ingroup gui | ||
*/ | ||
class CustomButton : public QPushButton { | ||
public: | ||
/** | ||
* @brief Constructs a CustomButton. | ||
* @param text The button text. | ||
* @param icon The button icon. | ||
* @param parent The parent widget. | ||
*/ | ||
explicit CustomButton(const QString &text, const QIcon &icon, QWidget *parent = nullptr) | ||
: QPushButton(text, parent) | ||
, icon_(icon) | ||
{ | ||
setIconSize(QSize(24, 24)); | ||
} | ||
|
||
/** | ||
* @brief Sets the left margin for the icon. | ||
* @param margin The left margin for the icon. | ||
*/ | ||
void setLeftIconMargin(int margin){ | ||
m_leftMargin = margin; | ||
} | ||
|
||
protected: | ||
void paintEvent(QPaintEvent *event) override { | ||
QPushButton::paintEvent(event); | ||
|
||
if (!icon_.isNull()) { | ||
QRect iconRect = QRect(m_leftMargin, // left margin | ||
(height() - iconSize().height()) / 2, // vertical center | ||
iconSize().width(), | ||
iconSize().height()); | ||
|
||
QPainter painter(this); | ||
painter.drawPixmap(iconRect, icon_.pixmap(iconSize())); | ||
} | ||
} | ||
|
||
private: | ||
QIcon icon_; | ||
int m_leftMargin = 4; | ||
}; | ||
|
||
/** | ||
* @brief The NMCAccountSettings class represents the account settings for a specific type. | ||
* @ingroup gui | ||
*/ | ||
class NMCAccountSettings : public AccountSettings | ||
{ | ||
Q_OBJECT | ||
|
||
public: | ||
/** | ||
* @brief Constructs NMCAccountSettings. | ||
* @param accountState The account state associated with the settings. | ||
* @param parent The parent widget. | ||
*/ | ||
explicit NMCAccountSettings(AccountState *accountState, QWidget *parent = nullptr); | ||
~NMCAccountSettings() = default; | ||
|
||
private: | ||
/** | ||
* @brief Sets default settings for NMCAccountSettings. | ||
*/ | ||
void setDefaultSettings(); | ||
|
||
/** | ||
* @brief Sets the layout for NMCAccountSettings. | ||
*/ | ||
void setLayout(); | ||
|
||
private: | ||
CustomButton *m_liveAccountButton = nullptr; | ||
QLabel *m_liveTitle = nullptr; | ||
QLabel *m_liveDescription = nullptr; | ||
QLabel *m_folderSync = nullptr; | ||
}; | ||
|
||
} // namespace OCC | ||
#endif // MIRALL_ACCOUNTSETTINGSMAGENTA_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters