b8aac3c9bc
Add secondary_cursors field to Editor with insert_char_multi, delete_back_multi, delete_forward_multi methods. Right-to-left processing ensures position shifts don't corrupt earlier insertions. 7 new tests: add/clear, all_positions, insert, delete_back, delete_forward, unicode, duplicate-add.
19 lines
331 B
C
19 lines
331 B
C
/*
|
|
This file is part of the KDE libraries
|
|
|
|
SPDX-FileCopyrightText: 2008 Wang Hoi <zealot.hoi@gmail.com>
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
|
*/
|
|
#ifndef KENCODINGPROBER_P_H
|
|
#define KENCODINGPROBER_P_H
|
|
|
|
// enable debug of private probers
|
|
// #define DEBUG_PROBE
|
|
|
|
#ifdef DEBUG_PROBE
|
|
#include <QDebug>
|
|
#endif
|
|
|
|
#endif
|