-
Notifications
You must be signed in to change notification settings - Fork 2
/
camelcasecursor.h
31 lines (23 loc) · 1006 Bytes
/
camelcasecursor.h
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
31
// Copyright (C) 2019 The Qt Company Ltd.
// Copyright (C) 2019 Andre Hartmann <[email protected]>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "gui_global.hpp"
#include <QTextCursor>
QT_BEGIN_NAMESPACE
class QLineEdit;
class QPlainTextEdit;
QT_END_NAMESPACE
namespace GUI {
class MultiTextCursor;
class GUI_EXPORT CamelCaseCursor
{
public:
static auto left(QTextCursor *cursor, QPlainTextEdit *edit, QTextCursor::MoveMode mode) -> bool;
static auto left(MultiTextCursor *cursor, QPlainTextEdit *edit, QTextCursor::MoveMode mode) -> bool;
static auto left(QLineEdit *edit, QTextCursor::MoveMode mode) -> bool;
static auto right(QTextCursor *cursor, QPlainTextEdit *edit, QTextCursor::MoveMode mode) -> bool;
static auto right(MultiTextCursor *cursor, QPlainTextEdit *edit, QTextCursor::MoveMode mode) -> bool;
static auto right(QLineEdit *edit, QTextCursor::MoveMode mode) -> bool;
};
} // namespace GUI