mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-20 21:02:02 +03:00
35e4fe061d
Some slot were protected or private but needed to be public. Some needed a static_cast (can't use qOverload because it is in Qt 5.7) This is not only a partial change.
132 lines
3.5 KiB
C++
132 lines
3.5 KiB
C++
/*
|
|
* Copyright (C) by Roeland Jago Douma <roeland@famdouma.nl>
|
|
* Copyright (C) 2015 by Klaas Freitag <freitag@owncloud.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 SHARELINKWIDGET_H
|
|
#define SHARELINKWIDGET_H
|
|
|
|
#include "accountfwd.h"
|
|
#include "sharepermissions.h"
|
|
#include "QProgressIndicator.h"
|
|
#include <QDialog>
|
|
#include <QSharedPointer>
|
|
#include <QList>
|
|
|
|
class QMenu;
|
|
class QTableWidgetItem;
|
|
|
|
namespace OCC {
|
|
|
|
namespace Ui {
|
|
class ShareLinkWidget;
|
|
}
|
|
|
|
class AbstractCredentials;
|
|
class QuotaInfo;
|
|
class SyncResult;
|
|
class LinkShare;
|
|
class Share;
|
|
class ShareManager;
|
|
|
|
/**
|
|
* @brief The ShareDialog class
|
|
* @ingroup gui
|
|
*/
|
|
class ShareLinkWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ShareLinkWidget(AccountPtr account,
|
|
const QString &sharePath,
|
|
const QString &localPath,
|
|
SharePermissions maxSharingPermissions,
|
|
QWidget *parent = 0);
|
|
~ShareLinkWidget();
|
|
void getShares();
|
|
|
|
private slots:
|
|
void slotSharesFetched(const QList<QSharedPointer<Share>> &shares);
|
|
void slotShareSelectionChanged();
|
|
|
|
void slotShareNameEntered();
|
|
void slotDeleteShareClicked();
|
|
void slotCheckBoxPasswordClicked();
|
|
void slotCheckBoxExpireClicked();
|
|
void slotPasswordReturnPressed();
|
|
void slotPermissionsCheckboxClicked();
|
|
void slotExpireDateChanged(const QDate &date);
|
|
void slotPasswordChanged(const QString &newText);
|
|
void slotNameEdited(QTableWidgetItem *item);
|
|
|
|
void slotShareLinkButtonClicked();
|
|
void slotShareLinkActionTriggered(QAction *action);
|
|
|
|
void slotDeleteShareFetched();
|
|
void slotCreateShareFetched(const QSharedPointer<LinkShare> &share);
|
|
void slotCreateShareRequiresPassword(const QString &message);
|
|
void slotPasswordSet();
|
|
void slotExpireSet();
|
|
void slotPermissionsSet();
|
|
|
|
void slotServerError(int code, const QString &message);
|
|
void slotPasswordSetError(int code, const QString &message);
|
|
|
|
private:
|
|
void displayError(const QString &errMsg);
|
|
|
|
void setPassword(const QString &password);
|
|
void setExpireDate(const QDate &date);
|
|
|
|
void copyShareLink(const QUrl &url);
|
|
void emailShareLink(const QUrl &url);
|
|
void openShareLink(const QUrl &url);
|
|
|
|
/**
|
|
* Retrieve the selected share, returning 0 if none.
|
|
*/
|
|
QSharedPointer<LinkShare> selectedShare() const;
|
|
|
|
Ui::ShareLinkWidget *_ui;
|
|
AccountPtr _account;
|
|
QString _sharePath;
|
|
QString _localPath;
|
|
QString _shareUrl;
|
|
|
|
QProgressIndicator *_pi_create;
|
|
QProgressIndicator *_pi_password;
|
|
QProgressIndicator *_pi_date;
|
|
QProgressIndicator *_pi_editing;
|
|
|
|
ShareManager *_manager;
|
|
|
|
bool _isFile;
|
|
bool _passwordRequired;
|
|
bool _expiryRequired;
|
|
bool _namesSupported;
|
|
|
|
// When a new share is created, we want to select it
|
|
// the next time getShares() finishes. This stores its id.
|
|
QString _newShareOverrideSelectionId;
|
|
|
|
QMenu *_shareLinkMenu;
|
|
QAction *_openLinkAction;
|
|
QAction *_copyLinkAction;
|
|
QAction *_copyDirectLinkAction;
|
|
QAction *_emailLinkAction;
|
|
QAction *_emailDirectLinkAction;
|
|
};
|
|
}
|
|
|
|
#endif // SHARELINKWIDGET_H
|