Qt C++将 QSlider 连接到 QWebView 的 setTextSizeMultiplier
如何在Qt中将QSlider连接到QWebView的setTextSizeMultiplier?我希望网页的文本在更改时根据滑块的值变小或变大。
这就是我试图做到的,但没有取得任何进展: thesliderbar是QSlider,vweb是QWebView
connect(thesliderbar,SIGNAL(valueChanged(int)),ui->vweb,SLOT(setTextSizeMultiplier(int)));
How do I connect QSlider to QWebView's setTextSizeMultiplier in Qt? I want to web's text to get smaller or larger depending on the slider's value when it changes.
This is how I'm trying to do it, but not getting anywhere:
thesliderbar is QSlider and vweb is QWebView
connect(thesliderbar,SIGNAL(valueChanged(int)),ui->vweb,SLOT(setTextSizeMultiplier(int)));
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://doc.qt.io/qt-5/qwebview.html在这里您可以看到 setTextSizeMultiplier 它不是一个插槽,因此您无法连接/编译...
EDIT1:函数签名也不同。您使用 int 作为参数,但它是 qreal...
在您的类中创建一个插槽,连接到它并从那里更新文本乘数。
http://doc.qt.io/qt-5/qwebview.html for here you can see that setTextSizeMultiplier it is not a slot so you can not connect/compile...
EDIT1: also function signature is different. You are using int as a parameter but it is a qreal...
Make a slot in your class, connect to it and update the text multiplier from there.