File indexing completed on 2025-02-16 04:57:43

0001 /* SPDX-FileCopyrightText: 2011-2024 Laurent Montel <montel@kde.org>
0002  *
0003  * SPDX-License-Identifier: LGPL-2.0-or-later
0004  */
0005 
0006 #pragma once
0007 
0008 #include "templateparser_export.h"
0009 
0010 #include <TextCustomEditor/PlainTextEditorWidget>
0011 
0012 namespace TemplateParser
0013 {
0014 /**
0015  * @brief The TemplatesTextEdit class
0016  * @author Laurent Montel <montel@kde.org>
0017  */
0018 class TEMPLATEPARSER_EXPORT TemplatesTextEdit : public TextCustomEditor::PlainTextEditorWidget
0019 {
0020     Q_OBJECT
0021 public:
0022     explicit TemplatesTextEdit(QWidget *parent = nullptr);
0023     ~TemplatesTextEdit() override;
0024 };
0025 }