我的窗口中有一个包含文本的 QWebView。我希望将所选单词(或无关紧要的单词)写在其他地方,但信号 selectionChanged 永远不会被调用。我需要先设置一些东西吗?现在,我所拥有的只是一个等待被调用的插槽......我现在什至不做任何事情,因为从未发送过信号
谢谢!
#include "mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent)
{
this->setupUi();
connect(m_WebView, SIGNAL(selectionChanged()), this, SLOT(newSelection()));
}
MainWindow::~MainWindow()
{
}
void MainWindow::setupUi()
{
m_WebView = new QWebView();
m_LineEdit = new QLineEdit();
QVBoxLayout* lay = new QVBoxLayout();
lay->addWidget(m_LineEdit);
lay->addWidget(m_WebView);
QWidget* wid = new QWidget(this);
wid->setLayout(lay);
setCentralWidget(wid);
}
void MainWindow::newSelection()
{
m_LineEdit->setText(m_WebView->selectedText());
}