Qt C++将 QSlider 连接到 QWebView 的 setTextSizeMultiplier

发布于 2024-12-15 08:06:39 字数 265 浏览 3 评论 0原文

如何在Qt中将QSlider连接到QWebView的setTextSizeMultiplier?我希望网页的文本在更改时根据滑块的值变小或变大。

这就是我试图做到的,但没有取得任何进展: thesliderbar是QSlider,vweb是QWe​​bView

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寄居人 2024-12-22 08:06:39

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文