File indexing completed on 2024-06-23 05:18:35

0001 /*
0002    SPDX-FileCopyrightText: 2017-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #include "plugineditorconverttext.h"
0008 
0009 using namespace MessageComposer;
0010 
0011 PluginEditorConvertText::PluginEditorConvertText(QObject *parent)
0012     : PluginEditorBase(parent)
0013 {
0014 }
0015 
0016 PluginEditorConvertText::~PluginEditorConvertText() = default;
0017 
0018 bool PluginEditorConvertText::canWorkOnHtml() const
0019 {
0020     return true;
0021 }
0022 
0023 bool PluginEditorConvertText::hasToolBarSupport() const
0024 {
0025     return false;
0026 }
0027 
0028 bool PluginEditorConvertText::hasStatusBarSupport() const
0029 {
0030     return false;
0031 }
0032 
0033 bool PluginEditorConvertText::hasPopupMenuSupport() const
0034 {
0035     return false;
0036 }
0037 
0038 #include "moc_plugineditorconverttext.cpp"