nextcloud-desktop/src/gui/wizard/owncloudadvancedsetuppage.h
Matthieu Gallien d2f5c6a5c7
initialize many attributes that could have been left without init value
done with clang-tidy

run-clang-tidy -p build -config="{Checks: '*', CheckOptions: [{key: UseAssignment, value: true}]}" -checks='-*,cppcoreguidelines-pro-type-member-init' -fix

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
2023-02-06 10:43:04 +01:00

106 lines
3.1 KiB
C++

/*
* Copyright (C) by Klaas Freitag <freitag@owncloud.com>
* Copyright (C) by Krzesimir Nowak <krzesimir@endocode.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 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_OWNCLOUD_ADVANCED_SETUP_PAGE_H
#define MIRALL_OWNCLOUD_ADVANCED_SETUP_PAGE_H
#include <QWizard>
#include "wizard/owncloudwizardcommon.h"
#include "ui_owncloudadvancedsetuppage.h"
#include "elidedlabel.h"
class QProgressIndicator;
namespace OCC {
class OwncloudWizard;
/**
* @brief The OwncloudAdvancedSetupPage class
* @ingroup gui
*/
class OwncloudAdvancedSetupPage : public QWizardPage
{
Q_OBJECT
public:
OwncloudAdvancedSetupPage(OwncloudWizard *wizard);
[[nodiscard]] bool isComplete() const override;
void initializePage() override;
[[nodiscard]] int nextId() const override;
bool validatePage() override;
[[nodiscard]] QString localFolder() const;
[[nodiscard]] QStringList selectiveSyncBlacklist() const;
[[nodiscard]] bool useVirtualFileSync() const;
[[nodiscard]] bool isConfirmBigFolderChecked() const;
void setRemoteFolder(const QString &remoteFolder);
void setMultipleFoldersExist(bool exist);
void directoriesCreated();
signals:
void createLocalAndRemoteFolders(const QString &, const QString &);
public slots:
void setErrorString(const QString &);
void slotStyleChanged();
private slots:
void slotSelectFolder();
void slotSyncEverythingClicked();
void slotSelectiveSyncClicked();
void slotVirtualFileSyncClicked();
void slotQuotaRetrieved(const QVariantMap &result);
private:
void setRadioChecked(QRadioButton *radio);
void setupCustomization();
void updateStatus();
bool dataChanged();
void startSpinner();
void stopSpinner();
[[nodiscard]] QUrl serverUrl() const;
[[nodiscard]] qint64 availableLocalSpace() const;
[[nodiscard]] QString checkLocalSpace(qint64 remoteSize) const;
void customizeStyle();
void setServerAddressLabelUrl(const QUrl &url);
void styleSyncLogo();
void styleLocalFolderLabel();
void setResolutionGuiVisible(bool value);
void setupResoultionWidget();
void fetchUserAvatar();
void setUserInformation();
// TODO: remove when UX decision is made
void refreshVirtualFilesAvailibility(const QString &path);
Ui_OwncloudAdvancedSetupPage _ui{};
bool _checking = false;
bool _created = false;
bool _localFolderValid = false;
QProgressIndicator *_progressIndi;
QString _remoteFolder;
QString _localPath;
QStringList _selectiveSyncBlacklist;
qint64 _rSize = -1;
qint64 _rSelectedSize = -1;
OwncloudWizard *_ocWizard;
QScopedPointer<ElidedLabel> _filePathLabel;
};
} // namespace OCC
#endif