File indexing completed on 2025-01-19 04:46:39
0001 /* 0002 SPDX-FileCopyrightText: 2016-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #include "changecaseplugineditor.h" 0008 #include "changecaseplugineditorinterface.h" 0009 #include <KPluginFactory> 0010 0011 K_PLUGIN_CLASS_WITH_JSON(ChangeCasePluginEditor, "kmail_changecaseeditorplugin.json") 0012 0013 ChangeCasePluginEditor::ChangeCasePluginEditor(QObject *parent, const QList<QVariant> &) 0014 : MessageComposer::PluginEditor(parent) 0015 { 0016 } 0017 0018 ChangeCasePluginEditor::~ChangeCasePluginEditor() = default; 0019 0020 bool ChangeCasePluginEditor::hasPopupMenuSupport() const 0021 { 0022 return true; 0023 } 0024 0025 MessageComposer::PluginEditorInterface *ChangeCasePluginEditor::createInterface(QObject *parent) 0026 { 0027 return new ChangeCasePluginEditorInterface(parent); 0028 } 0029 0030 #include "changecaseplugineditor.moc" 0031 0032 #include "moc_changecaseplugineditor.cpp"