kwin/kcmkwin/kwinscripts/module.h
Cyril Rossi 8a79f38de8 KCM KWinScripts implement KCModuleData to highlight default at module level
Use highlight in KPluginSelector
Also remove PluginKeyword in .desktop file
2021-01-05 08:53:04 +00:00

63 lines
1.1 KiB
C++

/*
SPDX-FileCopyrightText: 2011 Tamas Krutki <ktamasw@gmail.com>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef MODULE_H
#define MODULE_H
#include <KCModule>
#include <KSharedConfig>
namespace Ui
{
class Module;
}
class KJob;
class KWinScriptsData;
class Module : public KCModule
{
Q_OBJECT
public:
/**
* Constructor.
*
* @param parent Parent widget of the module
* @param args Arguments for the module
*/
explicit Module(QWidget *parent, const QVariantList &args = QVariantList());
/**
* Destructor.
*/
~Module() override;
void load() override;
void save() override;
void defaults() override;
protected Q_SLOTS:
/**
* Called when the import script button is clicked.
*/
void importScript();
void importScriptInstallFinished(KJob *job);
private:
/**
* UI
*/
Ui::Module *ui;
/**
* Updates the contents of the list view.
*/
void updateListViewContents();
KSharedConfigPtr m_kwinConfig;
KWinScriptsData *m_kwinScriptsData;
};
#endif // MODULE_H