KTextAddons

textfindreplacewidget.cpp
1/*
2 SPDX-FileCopyrightText: 2013-2025 Laurent Montel <montel@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#include "textfindreplacewidget.h"
8#include <KStatefulBrush>
9
10#include <KColorScheme>
11#include <KLocalizedString>
12#include <QPushButton>
13
14#include <QHBoxLayout>
15#include <QLabel>
16#include <QLineEdit>
17#include <QMenu>
18#include <QRegularExpression>
19
20using namespace Qt::Literals::StringLiterals;
21using namespace TextCustomEditor;
22
23TextReplaceWidget::TextReplaceWidget(QWidget *parent)
24 : QWidget(parent)
25 , mReplace(new QLineEdit(this))
26 , mReplaceBtn(new QPushButton(i18nc("@action:button", "Replace"), this))
27 , mReplaceAllBtn(new QPushButton(i18nc("@action:button", "Replace All"), this))
28{
29 auto lay = new QHBoxLayout(this);
30 auto label = new QLabel(i18nc("Replace text", "Replace:"), this);
31 label->setTextFormat(Qt::PlainText);
32 lay->addWidget(label);
33 const int marg1 = lay->contentsMargins().left();
34 const int marg2 = lay->contentsMargins().right();
35 lay->setContentsMargins(marg1, 0, marg2, 0);
36
37 mReplace->setClearButtonEnabled(true);
38 lay->addWidget(mReplace);
39
40 mReplace->setObjectName(QStringLiteral("mReplace"));
41 mReplaceBtn->setObjectName(QStringLiteral("mReplaceBtn"));
42 mReplaceAllBtn->setObjectName(QStringLiteral("mReplaceAllBtn"));
43
44 connect(mReplaceBtn, &QPushButton::clicked, this, &TextReplaceWidget::replaceText);
45 lay->addWidget(mReplaceBtn);
46
47 connect(mReplaceAllBtn, &QPushButton::clicked, this, &TextReplaceWidget::replaceAllText);
48 lay->addWidget(mReplaceAllBtn);
49}
50
51TextReplaceWidget::~TextReplaceWidget() = default;
52
53QLineEdit *TextReplaceWidget::replaceLineEdit() const
54{
55 return mReplace;
56}
57
58void TextReplaceWidget::slotSearchStringEmpty(bool isEmpty)
59{
60 mReplaceBtn->setDisabled(isEmpty);
61 mReplaceAllBtn->setDisabled(isEmpty);
62}
63
64TextFindWidget::TextFindWidget(QWidget *parent)
65 : QWidget(parent)
66 , mSearch(new QLineEdit(this))
67 , mFindPrevBtn(new QPushButton(QIcon::fromTheme(QStringLiteral("go-up-search")), i18nc("Find and go to the previous search match", "Previous"), this))
68 , mFindNextBtn(new QPushButton(QIcon::fromTheme(QStringLiteral("go-down-search")), i18nc("Find and go to the next search match", "Next"), this))
69{
70 auto lay = new QHBoxLayout(this);
71 const int marg1 = lay->contentsMargins().left();
72 const int marg2 = lay->contentsMargins().right();
73 lay->setContentsMargins(marg1, 0, marg2, 0);
74 auto label = new QLabel(i18nc("Find text", "F&ind:"), this);
75 label->setTextFormat(Qt::PlainText);
76 lay->addWidget(label);
77
78 mSearch->setToolTip(i18nc("@info:tooltip", "Text to search for"));
79 mSearch->setClearButtonEnabled(true);
80 mSearch->setObjectName(QStringLiteral("mSearch"));
81 label->setBuddy(mSearch);
82 lay->addWidget(mSearch);
83
84 mFindNextBtn->setToolTip(i18nc("@info:tooltip", "Jump to next match"));
85 lay->addWidget(mFindNextBtn);
86 mFindNextBtn->setEnabled(false);
87 mFindNextBtn->setObjectName(QStringLiteral("mFindNextBtn"));
88
89 mFindPrevBtn->setToolTip(i18nc("@info:tooltip", "Jump to previous match"));
90 lay->addWidget(mFindPrevBtn);
91 mFindPrevBtn->setEnabled(false);
92 mFindPrevBtn->setObjectName(QStringLiteral("mFindPrevBtn"));
93
94 auto optionsBtn = new QPushButton(this);
95 optionsBtn->setText(i18n("Options"));
96 optionsBtn->setToolTip(i18nc("@info:tooltip", "Modify search behavior"));
97 optionsBtn->setObjectName(QStringLiteral("optionsBtn"));
98 auto optionsMenu = new QMenu(optionsBtn);
99 mCaseSensitiveAct = optionsMenu->addAction(i18n("Case sensitive"));
100 mCaseSensitiveAct->setCheckable(true);
101
102 mWholeWordAct = optionsMenu->addAction(i18n("Whole word"));
103 mWholeWordAct->setCheckable(true);
104
105 mRegularExpressionAct = optionsMenu->addAction(i18n("Regular Expression"));
106 mRegularExpressionAct->setCheckable(true);
107
108 mRespectDiacriticAct = optionsMenu->addAction(i18n("Respect Diacritic and Accents"));
109 mRespectDiacriticAct->setCheckable(true);
110 mRespectDiacriticAct->setChecked(true);
111
112 optionsBtn->setMenu(optionsMenu);
113 lay->addWidget(optionsBtn);
114
115 connect(mFindNextBtn, &QPushButton::clicked, this, &TextFindWidget::findNext);
116 connect(mFindPrevBtn, &QPushButton::clicked, this, &TextFindWidget::findPrev);
117 connect(mCaseSensitiveAct, &QAction::toggled, this, &TextFindWidget::updateSearchOptions);
118 connect(mWholeWordAct, &QAction::toggled, this, &TextFindWidget::updateSearchOptions);
119 connect(mRespectDiacriticAct, &QAction::toggled, this, &TextFindWidget::updateSearchOptions);
120 connect(mRegularExpressionAct, &QAction::toggled, this, &TextFindWidget::slotRegularExpressionChanged);
121 connect(mSearch, &QLineEdit::textChanged, this, &TextFindWidget::slotAutoSearch);
122 connect(mSearch, &QLineEdit::returnPressed, this, &TextFindWidget::findNext);
123}
124
125TextFindWidget::~TextFindWidget() = default;
126
127void TextFindWidget::slotRegularExpressionChanged(bool b)
128{
129 mRespectDiacriticAct->setEnabled(!b);
130 Q_EMIT updateSearchOptions();
131}
132
133void TextFindWidget::setFoundMatch(bool match)
134{
135#ifndef QT_NO_STYLE_STYLESHEET
136 QString styleSheet;
137
138 if (!mSearch->text().isEmpty()) {
139 KColorScheme::BackgroundRole bgColorScheme;
140
141 if (match) {
142 bgColorScheme = KColorScheme::PositiveBackground;
143 } else {
144 bgColorScheme = KColorScheme::NegativeBackground;
145 }
146
147 KStatefulBrush bgBrush(KColorScheme::View, bgColorScheme);
148
149 styleSheet = QStringLiteral("QLineEdit{ background-color:%1 }").arg(bgBrush.brush(mSearch->palette()).color().name());
150 }
151
152 mSearch->setStyleSheet(styleSheet);
153#endif
154}
155
156void TextFindWidget::slotAutoSearch(const QString &str)
157{
158 const bool isNotEmpty = (!str.isEmpty());
159 mFindPrevBtn->setEnabled(isNotEmpty);
160 mFindNextBtn->setEnabled(isNotEmpty);
161 Q_EMIT searchStringEmpty(!isNotEmpty);
162 Q_EMIT autoSearch(str);
163 if (str.isEmpty()) {
164 Q_EMIT clearSearch();
165 }
166}
167
168QLineEdit *TextFindWidget::searchLineEdit() const
169{
170 return mSearch;
171}
172
173bool TextFindWidget::isRegularExpression() const
174{
175 return mRegularExpressionAct->isChecked();
176}
177
178QString TextFindWidget::searchText() const
179{
180 return mSearch->text();
181}
182
183QRegularExpression TextFindWidget::searchRegularExpression() const
184{
185 QRegularExpression reg;
186 if (!mCaseSensitiveAct->isChecked()) {
188 }
189 QString searchTextString = mSearch->text();
190 if (mWholeWordAct->isChecked()) {
191 searchTextString = "\\b"_L1 + searchTextString + "\\b"_L1;
192 }
193 reg.setPattern(searchTextString);
194 return reg;
195}
196
197TextEditFindBarBase::FindFlags TextFindWidget::searchOptions() const
198{
199 TextEditFindBarBase::FindFlags opt = {};
200 if (mCaseSensitiveAct->isChecked()) {
201 opt |= TextEditFindBarBase::FindCaseSensitively;
202 }
203 if (mWholeWordAct->isChecked()) {
204 opt |= TextEditFindBarBase::FindWholeWords;
205 }
206 if (mRespectDiacriticAct->isChecked()) {
207 opt |= TextEditFindBarBase::FindRespectDiacritics;
208 }
209 return opt;
210}
211
212#include "moc_textfindreplacewidget.cpp"
QString i18nc(const char *context, const char *text, const TYPE &arg...)
QString i18n(const char *text, const TYPE &arg...)
QString label(StandardShortcut id)
void clicked(bool checked)
void toggled(bool checked)
void returnPressed()
void textChanged(const QString &text)
Q_EMITQ_EMIT
void setPattern(const QString &pattern)
void setPatternOptions(PatternOptions options)
bool isEmpty() const const
QString left(qsizetype n) const const
QString right(qsizetype n) const const
PlainText
QFuture< ArgsType< Signal > > connect(Sender *sender, Signal signal)
void setDisabled(bool disable)
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.