1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
/*
SPDX-FileCopyrightText: 2014 Alex Richardson <arichardson.kde@gmail.com>
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
*/
#ifndef KDEVELOP_CONFIGPAGE_H
#define KDEVELOP_CONFIGPAGE_H
#include <KTextEditor/ConfigPage>
#include <KLocalizedString>
#include "interfacesexport.h"
class KCoreConfigSkeleton;
namespace KDevelop {
class IPlugin;
class ConfigPagePrivate;
class KDEVPLATFORMINTERFACES_EXPORT ConfigPage : public KTextEditor::ConfigPage
{
Q_OBJECT
public:
/**
* Create a new config page
* @param plugin the plugin that created this config page
* @param config the config skeleton that is used to store the preferences. If you don't use
* a K(Core)ConfigSkeleton to save the settings you can also pass null here.
* However this means that you will have to manually implement the apply(), defaults() and reset() slots
* @param parent parent widget
*/
explicit ConfigPage(IPlugin* plugin, KCoreConfigSkeleton* config = nullptr, QWidget* parent = nullptr);
~ConfigPage() override;
/**
* Get the number of subpages of this page
* @return The number of child pages or an integer < 1 if there are none.
* The default implementation returns zero.
*/
virtual int childPages() const;
/**
* @return the child config page for index @p number or @c nullptr if there is none.
* The default implementation returns @c nullptr.
*/
virtual ConfigPage* childPage(int number);
enum ConfigPageType
{
DefaultConfigPage,
LanguageConfigPage, ///< A config page that contains language specific settings. This page is appended as a child page to the "Language support" config page.
AnalyzerConfigPage, ///< A config page that contains settings for some analyzer. This page is appended as a child page to the "Analyzers" config page.
DocumentationConfigPage, ///< A config page that contains settings for some documentation plugin. This page is appended as a child page to the "Documentation" config page.
RuntimeConfigPage ///< A config page that contains settings for some runtime plugin. This page is appended as a child page to the "Runtimes" config page.
};
/**
* @return The type of this config page. Default implementation returns DefaultConfigPageType
*/
virtual ConfigPageType configPageType() const;
/**
* @return the plugin that this config page was created by or nullptr if it was not created by a plugin.
*/
IPlugin* plugin() const;
/**
* Initializes the KConfigDialogManager.
* Must be called explicitly since not all child widgets are available at the end of the constructor.
* This is handled automatically by KDevelop::ConfigDialog, subclasses don't need to call this.
*/
void initConfigManager();
/**
* @return the KCoreConfigSkeleton used to store the settings for this page or @c nullptr
* if settings are managed differently
*/
KCoreConfigSkeleton* configSkeleton() const;
/**
* Sets the config skeleton to @p skel and will create a KConfigDialogManager if needed.
* This can be used if the KCoreConfigSkeleton* doesn't exist yet when calling the base class constructor.
*/
void setConfigSkeleton(KCoreConfigSkeleton* skel);
public Q_SLOTS:
void apply() override;
void defaults() override;
void reset() override;
protected:
/**
* @return whether this page needs reset() to be called during initialization
*/
virtual bool needsResetDuringInitialization() const;
private:
const QScopedPointer<class ConfigPagePrivate> d_ptr;
Q_DECLARE_PRIVATE(ConfigPage)
};
}
#endif // KDEVELOP_CONFIGPAGE_H
|