nextcloud-desktop/src/gui/macOS/fileprovider.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
1.3 KiB
C
Raw Normal View History

/*
* Copyright (C) by Claudio Cambra <claudio.cambra@nextcloud.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.
*/
#pragma once
#include <QObject>
#include "fileproviderdomainmanager.h"
#include "fileprovidersocketserver.h"
namespace OCC {
class Application;
namespace Mac {
// NOTE: For the file provider extension to work, the app bundle will
// need to be correctly codesigned!
class FileProvider : public QObject
{
Q_OBJECT
public:
static FileProvider *instance();
~FileProvider() override;
static bool fileProviderAvailable();
private:
std::unique_ptr<FileProviderDomainManager> _domainManager;
std::unique_ptr<FileProviderSocketServer> _socketServer;
static FileProvider *_instance;
explicit FileProvider(QObject * const parent = nullptr);
friend class OCC::Application;
};
} // namespace Mac
} // namespace OCC