2023-11-13 16:35:01 +01:00
|
|
|
// Copyright (C) 2023 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/welcomepagehelper.h>
|
|
|
|
|
|
|
|
|
|
namespace ExtensionManager::Internal {
|
|
|
|
|
|
|
|
|
|
class ExtensionManagerWidget final : public Core::ResizeSignallingWidget
|
|
|
|
|
{
|
|
|
|
|
public:
|
2024-05-29 16:00:22 +02:00
|
|
|
explicit ExtensionManagerWidget(QWidget *parent = nullptr);
|
|
|
|
|
~ExtensionManagerWidget();
|
2023-11-13 16:35:01 +01:00
|
|
|
|
|
|
|
|
private:
|
2024-05-29 16:00:22 +02:00
|
|
|
void updateView(const QModelIndex ¤t);
|
|
|
|
|
void fetchAndInstallPlugin(const QUrl &url);
|
2023-11-13 16:35:01 +01:00
|
|
|
|
2024-05-29 16:00:22 +02:00
|
|
|
class ExtensionManagerWidgetPrivate *d = nullptr;
|
2023-11-13 16:35:01 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // ExtensionManager::Internal
|