File indexing completed on 2024-05-19 15:10:52

0001 /*
0002     This file is part of the KDE libraries
0003     SPDX-FileCopyrightText: 2014 Daniel Vrátil <dvratil@redhat.com>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0006 */
0007 
0008 #ifndef KTEXTTOHTML_INTEGRATION_H
0009 #define KTEXTTOHTML_INTEGRATION_H
0010 
0011 
0012 #include <KTextToHTMLEmoticonsInterface>
0013 
0014 class KTextToHTMLEmoticons : public KTextToHTMLEmoticonsInterface
0015 {
0016 public:
0017     KTextToHTMLEmoticons();
0018     ~KTextToHTMLEmoticons() override {}
0019 
0020     virtual QString parseEmoticons(const QString &text,
0021                                    bool strictParse = false,
0022                                    const QStringList &exclude = QStringList()) override;
0023 };
0024 
0025 #endif