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
|
/*
* SPDX-FileCopyrightText: 2013~2020 CSSlayer <wengxt@gmail.com>
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifndef FCITX_SKK_GUI_MAIN_H_
#define FCITX_SKK_GUI_MAIN_H_
#include <fcitxqtconfiguiplugin.h>
namespace fcitx {
class SkkConfigPlugin : public FcitxQtConfigUIPlugin {
Q_OBJECT
public:
Q_PLUGIN_METADATA(IID FcitxQtConfigUIFactoryInterface_iid FILE
"skk-config.json")
explicit SkkConfigPlugin(QObject *parent = 0);
FcitxQtConfigUIWidget *create(const QString &key) override;
};
} // namespace fcitx
#endif // FCITX_TOOLS_GUI_MAIN_H_
|