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 "noteshared_export.h" 0009 class QTextCursor; 0010 class QTextEdit; 0011 namespace NoteShared 0012 { 0013 class NOTESHARED_EXPORT NoteEditorUtils 0014 { 0015 public: 0016 NoteEditorUtils(); 0017 void addCheckmark(QTextCursor &cursor); 0018 void insertDate(QTextEdit *editor); 0019 }; 0020 }