Qt 鼠标光标透明度

发布于 2024-11-11 13:58:19 字数 182 浏览 2 评论 0原文

我想将库存光标更改为半透明的光标,即一个简单的实心圆圈,具有各种尺寸,具体取决于底层小部件的缩放级别(例如,RGBA = 200、200、200、128)。

Qt 可以做到这一点吗?如果不是,是否是 Qt 或底层库的限制?您是否有关于如何通过其他方式实现这一点的建议,例如隐藏光标并在光标位置覆盖透明像素图(尽管速度较慢)? TIA

I would like to change the stock cursor with a translucent one, a simple filled circle, of various sizes, depending on the level of zoom in the underlying widget (say, RGBA = 200, 200, 200, 128).

Is this at all possible with Qt? If not, is it a limitation in Qt or the underlying libs? Do you have suggestions as to how this could be accomplished by other means, e.g., hiding the cursor and overlaying a transparent pixmap at the cursor position (albeit slower)? TIA

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

请你别敷衍 2024-11-18 13:58:19

我刚刚为自己的一个项目解决了这个问题。我在相关小部件的构造函数中使用以下代码完成了此操作:

m_LPixmap = new QPixmap(32,32);
m_LPixmap->fill(Qt::transparent); // Otherwise you get a black background :(
QPainter painter(m_LPixmap);
QColor red(255,0,0,128);

painter.setPen(Qt::NoPen);        // Otherwise you get an thin black border
painter.setBrush(red);

painter.drawEllipse(0,0,32,32);
m_Cursor = QCursor(*m_LPixmap);
setCursor(m_Cursor);

I just figured this out for a project of my own. I did it with this code in the constructor of the relevant widget:

m_LPixmap = new QPixmap(32,32);
m_LPixmap->fill(Qt::transparent); // Otherwise you get a black background :(
QPainter painter(m_LPixmap);
QColor red(255,0,0,128);

painter.setPen(Qt::NoPen);        // Otherwise you get an thin black border
painter.setBrush(red);

painter.drawEllipse(0,0,32,32);
m_Cursor = QCursor(*m_LPixmap);
setCursor(m_Cursor);
败给现实 2024-11-18 13:58:19

QCursor 可以采用支持 Alpha 通道的 QPixmap。所以我不明白为什么它不能完成。

QCursor can take a QPixmap which does support alpha channel. So I don't see why it can't be done.

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