Kgapi

fileabstractmodifyjob.h
1/*
2 * This file is part of LibKGAPI library
3 *
4 * SPDX-FileCopyrightText: 2013 Daniel Vrátil <dvratil@redhat.com>
5 *
6 * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
7 */
8
9#pragma once
10
11#include "kgapidrive_export.h"
12#include "modifyjob.h"
13
14#include <QStringList>
15
16namespace KGAPI2
17{
18
19namespace Drive
20{
21
22class KGAPIDRIVE_EXPORT FileAbstractModifyJob : public KGAPI2::ModifyJob
23{
24 Q_OBJECT
25
26public:
27 explicit FileAbstractModifyJob(const QString &fileId, const AccountPtr &account, QObject *parent = nullptr);
28 explicit FileAbstractModifyJob(const QStringList &filesIds, const AccountPtr &account, QObject *parent = nullptr);
29 explicit FileAbstractModifyJob(const FilePtr &file, const AccountPtr &account, QObject *parent = nullptr);
30 explicit FileAbstractModifyJob(const FilesList &files, const AccountPtr &account, QObject *parent = nullptr);
31 ~FileAbstractModifyJob() override;
32
33 /**
34 * @brief Whether the request supports both My Drives and shared drives.
35 *
36 * Set to true by default as LibKGAPI supports Team Drives.
37 *
38 * @deprecated This parameter will only be effective until June 1, 2020. Afterwards all applications
39 * are assumed to support shared drives.
40 */
41 KGAPIDRIVE_DEPRECATED bool supportsAllDrives() const;
42
43 /**
44 * @brief Sets whether the request supports both My Drives and shared drives.
45 *
46 * Set to true by default as LibKGAPI supports Team Drives.
47 *
48 * @deprecated This parameter will only be effective until June 1, 2020. Afterwards all applications
49 * are assumed to support shared drives.
50 */
51 KGAPIDRIVE_DEPRECATED void setSupportsAllDrives(bool supportsAllDrives);
52
53protected:
54 void start() override;
55 KGAPI2::ObjectsList handleReplyWithItems(const QNetworkReply *reply, const QByteArray &rawData) override;
56
57 virtual QUrl url(const QString &fileId) = 0;
58
59private:
60 class Private;
61 Private *const d;
62 friend class Private;
63};
64
65} // namespace Drive
66
67} // namespace KGAPI2
Abstract superclass for all jobs that somehow modify resources on Google.
Definition modifyjob.h:25
Q_SCRIPTABLE Q_NOREPLY void start()
A job to fetch a single map tile described by a StaticMapUrl.
Definition blog.h:16
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:19:52 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.