Kgapi

parentreferencecreatejob.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 "createjob.h"
12#include "kgapidrive_export.h"
13
14#include <QStringList>
15
16namespace KGAPI2
17{
18
19namespace Drive
20{
21
22class KGAPIDRIVE_EXPORT ParentReferenceCreateJob : public KGAPI2::CreateJob
23{
24 Q_OBJECT
25
26public:
27 explicit ParentReferenceCreateJob(const QString &fileId, const QString &parentId, const AccountPtr &account, QObject *parent = nullptr);
28 explicit ParentReferenceCreateJob(const QString &fileId, const QStringList &parentsIds, const AccountPtr &account, QObject *parent = nullptr);
29 explicit ParentReferenceCreateJob(const QString &fileId, const ParentReferencePtr &reference, const AccountPtr &account, QObject *parent = nullptr);
30 explicit ParentReferenceCreateJob(const QString &fileId, const ParentReferencesList &references, const AccountPtr &account, QObject *parent = nullptr);
31 ~ParentReferenceCreateJob() 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
57private:
58 class Private;
59 Private *const d;
60 friend class Private;
61};
62
63} // namespace Drive
64
65} // namespace KGAPI2
Abstract superclass for all jobs that create new objects on the server.
Definition createjob.h:26
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.