File indexing completed on 2024-12-15 04:51:47

0001 /*
0002    SPDX-FileCopyrightText: 2013-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 #pragma once
0007 
0008 #include <TextCustomEditor/RichTextEditorWidget>
0009 
0010 namespace NoteShared
0011 {
0012 class NoteEditor : public TextCustomEditor::RichTextEditorWidget
0013 {
0014     Q_OBJECT
0015 public:
0016     explicit NoteEditor(QWidget *parent);
0017     ~NoteEditor() override;
0018 };
0019 }