KTextAddons

textautogeneratetextclient.h
1/*
2 SPDX-FileCopyrightText: 2025 Laurent Montel <montel@kde.org>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#pragma once
8#include "textautogeneratetext_export.h"
9#include <QObject>
10namespace TextAutogenerateText
11{
12class TextAutogenerateTextPlugin;
13/**
14 * @brief The TextAutogenerateTextClient class
15 * @author Laurent Montel <montel@kde.org>
16 */
17class TEXTAUTOGENERATETEXT_EXPORT TextAutogenerateTextClient : public QObject
18{
20public:
21 enum class EngineType : uint8_t {
22 Local,
23 Network,
24 };
25
26 // Add more status
27 enum class Status : uint8_t {
28 Unknown,
29 Broken,
30 };
31
32 explicit TextAutogenerateTextClient(QObject *parent = nullptr);
33 ~TextAutogenerateTextClient() override;
34
35 /**
36 * @returns the name of the implementing class.
37 */
38 virtual QString name() const = 0;
39
40 virtual QString translatedName() const = 0;
41
42 virtual QString webSite() const = 0;
43
44 virtual TextAutogenerateTextPlugin *createTextAutogeneratePlugin() = 0;
45
46 [[nodiscard]] virtual bool hasConfigurationDialog() const;
47
48 virtual bool showConfigureDialog(QWidget *parentWidget);
49
50 [[nodiscard]] virtual TextAutogenerateText::TextAutogenerateTextClient::EngineType engineType() const = 0;
51
52 [[nodiscard]] static QString convertEngineType(TextAutogenerateText::TextAutogenerateTextClient::EngineType type);
54 void configureChanged();
55};
56}
57Q_DECLARE_INTERFACE(TextAutogenerateText::TextAutogenerateTextClient, "org.kde.textautogeneratetext.client")
QObject(QObject *parent)
Q_OBJECTQ_OBJECT
Q_SIGNALSQ_SIGNALS
QObject * parent() const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Apr 4 2025 11:55:34 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.