KTextAddons

textgotolinewidget.cpp
1/*
2 SPDX-FileCopyrightText: 2014-2025 Laurent Montel <montel@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#include "textgotolinewidget.h"
8
9#include <KLocalizedString>
10#include <QIcon>
11#include <QPushButton>
12
13#include <QHBoxLayout>
14#include <QKeyEvent>
15#include <QLabel>
16#include <QSpinBox>
17#include <QToolButton>
18
19using namespace TextCustomEditor;
20
21class Q_DECL_HIDDEN TextCustomEditor::TextGoToLineWidgetPrivate
22{
23public:
24 TextGoToLineWidgetPrivate() = default;
25
26 QSpinBox *mSpinbox = nullptr;
27 QPushButton *mGoToLine = nullptr;
28};
29
30TextGoToLineWidget::TextGoToLineWidget(QWidget *parent)
31 : QWidget(parent)
32 , d(new TextCustomEditor::TextGoToLineWidgetPrivate)
33{
34 auto hbox = new QHBoxLayout(this);
35 hbox->setContentsMargins(2, 2, 2, 2);
36 auto closeBtn = new QToolButton(this);
37 closeBtn->setIcon(QIcon::fromTheme(QStringLiteral("dialog-close")));
38 closeBtn->setIconSize(QSize(16, 16));
39 closeBtn->setToolTip(i18nc("@info:tooltip", "Close"));
40 closeBtn->setObjectName(QStringLiteral("closebutton"));
41#ifndef QT_NO_ACCESSIBILITY
42 closeBtn->setAccessibleName(i18n("Close"));
43#endif
44
45 closeBtn->setAutoRaise(true);
46 connect(closeBtn, &QToolButton::clicked, this, &TextGoToLineWidget::slotCloseBar);
47 hbox->addWidget(closeBtn);
48
49 auto lab = new QLabel(i18nc("@label:textbox", "Go to Line:"));
50 lab->setTextFormat(Qt::PlainText);
51 hbox->addWidget(lab);
52 d->mSpinbox = new QSpinBox(this);
53 d->mSpinbox->setMinimum(1);
54 d->mSpinbox->setObjectName(QStringLiteral("line"));
55 connect(d->mSpinbox, &QSpinBox::editingFinished, this, &TextGoToLineWidget::slotGoToLine);
56 hbox->addWidget(d->mSpinbox);
57 d->mGoToLine = new QPushButton(QIcon::fromTheme(QStringLiteral("go-jump")), i18n("Go"));
58 d->mGoToLine->setFlat(true);
59 connect(d->mGoToLine, &QPushButton::clicked, this, &TextGoToLineWidget::slotGoToLine);
60 d->mGoToLine->setObjectName(QStringLiteral("gotoline"));
61 hbox->addWidget(d->mGoToLine);
62 hbox->addStretch();
63 d->mSpinbox->setFocus();
64 d->mSpinbox->installEventFilter(this);
65}
66
67TextGoToLineWidget::~TextGoToLineWidget()
68{
69 // mSpinbox can emit signals from its dtor, which are connected to this object
70 // so we need to make sure these connections are removed before we destroy ourselves
71 delete d->mSpinbox;
72}
73
74bool TextGoToLineWidget::eventFilter(QObject *obj, QEvent *event)
75{
76 if (obj == d->mSpinbox) {
77 if (event->type() == QEvent::KeyPress) {
78 auto e = static_cast<QKeyEvent *>(event);
79 if (e->key() == Qt::Key_Return || e->key() == Qt::Key_Enter) {
80 slotGoToLine();
81 return true;
82 }
83 }
84 }
85 return QObject::eventFilter(obj, event);
86}
87
88void TextGoToLineWidget::setMaximumLineCount(int max)
89{
90 d->mSpinbox->setMaximum(max);
91}
92
93void TextGoToLineWidget::goToLine()
94{
95 show();
96 d->mSpinbox->setFocus();
97 d->mSpinbox->selectAll();
98}
99
100void TextGoToLineWidget::slotGoToLine()
101{
102 Q_EMIT moveToLine(d->mSpinbox->value());
103}
104
105void TextGoToLineWidget::showEvent(QShowEvent *e)
106{
107 if (!e->spontaneous()) {
108 d->mSpinbox->setFocus();
109 }
111}
112
113void TextGoToLineWidget::slotBlockCountChanged(int numberBlockCount)
114{
115 if (!isHidden()) {
116 setMaximumLineCount(numberBlockCount);
117 }
118}
119
120void TextGoToLineWidget::slotCloseBar()
121{
122 hide();
123 Q_EMIT hideGotoLine();
124}
125
126bool TextGoToLineWidget::event(QEvent *e)
127{
128 // Close the bar when pressing Escape.
129 // Not using a QShortcut for this because it could conflict with
130 // window-global actions (e.g. Emil Sedgh binds Esc to "close tab").
131 // With a shortcut override we can catch this before it gets to kactions.
132 const bool shortCutOverride = (e->type() == QEvent::ShortcutOverride);
133 if (shortCutOverride || e->type() == QEvent::KeyPress) {
134 auto kev = static_cast<QKeyEvent *>(e);
135 if (kev->key() == Qt::Key_Escape) {
136 e->accept();
137 slotCloseBar();
138 return true;
139 }
140 }
141 return QWidget::event(e);
142}
143
144#include "moc_textgotolinewidget.cpp"
QString i18nc(const char *context, const char *text, const TYPE &arg...)
QString i18n(const char *text, const TYPE &arg...)
void clicked(bool checked)
void editingFinished()
void accept()
bool spontaneous() const const
Type type() const const
QIcon fromTheme(const QString &name)
Q_EMITQ_EMIT
virtual bool eventFilter(QObject *watched, QEvent *event)
Key_Return
PlainText
QFuture< ArgsType< Signal > > connect(Sender *sender, Signal signal)
virtual bool event(QEvent *event) override
void hide()
bool isHidden() const const
void show()
virtual void showEvent(QShowEvent *event)
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Apr 4 2025 11:55:34 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.