2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2019 The Qt Company Ltd.
|
|
|
|
|
// Copyright (C) 2019 Andre Hartmann <aha_1980@gmx.de>
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2017-07-30 21:39:50 +02:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "utils_global.h"
|
|
|
|
|
|
|
|
|
|
#include <QTextCursor>
|
|
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
class QLineEdit;
|
|
|
|
|
class QPlainTextEdit;
|
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
2021-06-28 09:13:57 +02:00
|
|
|
namespace Utils {
|
|
|
|
|
|
|
|
|
|
class MultiTextCursor;
|
|
|
|
|
|
2017-07-30 21:39:50 +02:00
|
|
|
class QTCREATOR_UTILS_EXPORT CamelCaseCursor
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
static bool left(QTextCursor *cursor, QPlainTextEdit *edit, QTextCursor::MoveMode mode);
|
2021-06-28 09:13:57 +02:00
|
|
|
static bool left(MultiTextCursor *cursor, QPlainTextEdit *edit, QTextCursor::MoveMode mode);
|
2017-07-30 21:39:50 +02:00
|
|
|
static bool left(QLineEdit *edit, QTextCursor::MoveMode mode);
|
|
|
|
|
static bool right(QTextCursor *cursor, QPlainTextEdit *edit, QTextCursor::MoveMode mode);
|
2021-06-28 09:13:57 +02:00
|
|
|
static bool right(MultiTextCursor *cursor, QPlainTextEdit *edit, QTextCursor::MoveMode mode);
|
2017-07-30 21:39:50 +02:00
|
|
|
static bool right(QLineEdit *edit, QTextCursor::MoveMode mode);
|
|
|
|
|
};
|
2021-06-28 09:13:57 +02:00
|
|
|
|
|
|
|
|
} // namespace Utils
|