-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwingtextblockuserdata.h
More file actions
30 lines (26 loc) · 1.03 KB
/
wingtextblockuserdata.h
File metadata and controls
30 lines (26 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/****************************************************************************
**
** Copyright (C) 2025-2028 WingSummer
**
** This file may be used under the terms of the GNU General Public License
** version 3 as published by the Free Software Foundation.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
** You should have received a copy of the GNU General Public License version 3
** along with this program. If not, see <https://www.gnu.org/licenses/>.
**
****************************************************************************/
#ifndef WINGTEXTBLOCKUSERDATA_H
#define WINGTEXTBLOCKUSERDATA_H
#include <KSyntaxHighlighting/FoldingRegion>
#include <KSyntaxHighlighting/State>
#include <QTextBlockUserData>
class WingTextBlockUserData : public QTextBlockUserData {
public:
KSyntaxHighlighting::State state;
QList<KSyntaxHighlighting::FoldingRegion> foldingRegions;
QString symbolID;
};
#endif // WINGTEXTBLOCKUSERDATA_H