【问题标题】:QPlainTextEdit - searches the document to the end and again from the beginningQPlainTextEdit - 将文档搜索到末尾并从头开始搜索
【发布时间】:2016-10-02 14:25:24
【问题描述】:

我想在 QPlainTextEdit 中搜索从当前光标到结尾的字符串。如果什么也没找到,我想从头开始搜索。只有在这个阶段,如果没有找到,就会出现一条消息。 这是代码:

void BasicEdit::findString(QString s, bool reverse, bool casesens, bool words) {
QTextDocument::FindFlags flag;
if (reverse) flag |= QTextDocument::FindBackward;
if (casesens) flag |= QTextDocument::FindCaseSensitively;
if (words) flag |= QTextDocument::FindWholeWords;

QTextCursor cursor = this->textCursor();

if (!find(s, flag)) {
    //nothing is found | jump to start/end
    cursor.movePosition(reverse?QTextCursor::End:QTextCursor::Start);
    setTextCursor(cursor); //!!!!!!
    if (!find(s, flag)) {
        //no match in whole document
        QMessageBox msgBox;
        msgBox.setText(tr("String not found."));
        msgBox.setStandardButtons(QMessageBox::Ok);
        msgBox.setDefaultButton(QMessageBox::Ok);
        msgBox.exec();
    }
  }
}

问题出在setTextCursor(cursor);

  • 没有这一行,搜索不会从头/尾继续
  • 有了这一行,一切都很好,除了找不到字符串时,光标位于文档的开头/结尾,并且用户在文档中的当前位置丢失了。

如何在文档中搜索字符串,如果没有找到不改变当前位置?


更新

感谢 IAmInPLS,代码如下所示。 我为verticalScrollBar 添加了保值。 即便如此,当没有找到任何东西时也会有短暂的闪烁:cursor.movePosition(reverse?QTextCursor::End:QTextCursor::Start);

我们怎样才能摆脱它? 怎么可能看起来像专业编辑? 是否可以创建另一个不可见的 QPlainTextEdit 元素在其中进行搜索?

void BasicEdit::findString(QString s, bool reverse, bool casesens, bool words)
{
QTextDocument::FindFlags flag;
if (reverse) flag |= QTextDocument::FindBackward;
if (casesens) flag |= QTextDocument::FindCaseSensitively;
if (words) flag |= QTextDocument::FindWholeWords;

QTextCursor cursor = this->textCursor();
// here we save the cursor position and the verticalScrollBar value
QTextCursor cursorSaved = cursor;
int scroll = verticalScrollBar()->value();

if (!find(s, flag))
{
    //nothing is found | jump to start/end
    cursor.movePosition(reverse?QTextCursor::End:QTextCursor::Start);
    setTextCursor(cursor);

    if (!find(s, flag))
    {
        // word not found : we set the cursor back to its initial position and restore verticalScrollBar value
        setTextCursor(cursorSaved);
        verticalScrollBar()->setValue(scroll);
        QMessageBox msgBox(this);
        msgBox.setText(tr("String not found."));
        msgBox.setStandardButtons(QMessageBox::Ok);
        msgBox.setDefaultButton(QMessageBox::Ok);
        msgBox.exec();
    }
}
}

【问题讨论】:

  • 在开头保存初始光标位置,如果没有找到则恢复。

标签: c++ qt find qplaintextedit qtextcursor


【解决方案1】:

这个想法是保持光标位置之前开始搜索单词。然后,在研究完成后,您会将光标设置回您保存的位置

void BasicEdit::findString(QString s, bool reverse, bool casesens, bool words) 
{
    QTextDocument::FindFlags flag;
    if (reverse) flag |= QTextDocument::FindBackward;
    if (casesens) flag |= QTextDocument::FindCaseSensitively;
    if (words) flag |= QTextDocument::FindWholeWords;

    QTextCursor cursor = this->textCursor();
    // here , you save the cursor position
    QTextCursor cursorSaved = cursor;

    if (!find(s, flag)) 
    {
        //nothing is found | jump to start/end
        cursor.movePosition(reverse?QTextCursor::End:QTextCursor::Start);

        /* following line :
        - the cursor is set at the beginning/end of the document (if search is reverse or not)
        - in the next "find", if the word is found, now you will change the cursor position
        */ 
        setTextCursor(cursor);

        if (!find(s, flag)) 
        {
            //no match in whole document
            QMessageBox msgBox;
            msgBox.setText(tr("String not found."));
            msgBox.setStandardButtons(QMessageBox::Ok);
            msgBox.setDefaultButton(QMessageBox::Ok);
            msgBox.exec();

            // word not found : we set the cursor back to its initial position
            setTextCursor(cursorSaved);
        }
    }
}

【讨论】:

  • 谢谢。我更新了代码,但看起来仍然不专业。我们可以在搜索过程中屏蔽verticalScrollBar来避免闪烁吗?或者我们可以使用 QPlainTextEdit 的副本在后台进行搜索?
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2012-10-19
  • 1970-01-01
  • 2021-01-27
  • 1970-01-01
相关资源
最近更新 更多