如何将光标形状设置为'>'在 QTextEdit 中?

发布于 2024-10-21 08:51:30 字数 92 浏览 2 评论 0原文

我正在尝试模仿命令行客户端。我希望将光标形状设置为“>”,以向用户显示消息。我在 QCursor 提供的选项中没有看到该形状。有没有办法为小部件光标设置自定义形状?

I am trying to mimic a command-line client. I wish to set the cursor shape to '>', to show messages to user. I don't see that shape in the options provided by QCursor. Is there a way to set custom shapes to widget cursors?

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

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

发布评论

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

评论(3

无所谓啦 2024-10-28 08:51:30

您需要设置 QTextEdit 视口的光标: http://doc.qt.nokia.com/稳定/qtextedit.html

“QTextEdit 上鼠标光标的形状默认为 Qt::IBeamCursor。它可以通过 viewport() 的光标属性进行更改。”

例如要完全隐藏光标:

ui.textEdit->viewport()->setCursor(Qt::BlankCursor);

You need to set the QTextEdit's viewport's cursor: http://doc.qt.nokia.com/stable/qtextedit.html

"The shape of the mouse cursor on a QTextEdit is Qt::IBeamCursor by default. It can be changed through the viewport()'s cursor property."

e.g. To hide the cursor completely:

ui.textEdit->viewport()->setCursor(Qt::BlankCursor);
友谊不毕业 2024-10-28 08:51:30

您是在谈论鼠标的形状 在此处输入图像描述

还是在谈论文本插入符 在此处输入图像描述

检查 QTextLayout::drawCursor

are you talking about mouse's shape enter image description here

or about the text caret enter image description here

Check QTextLayout::drawCursor

一花一树开 2024-10-28 08:51:30

您可能认为您想这样做,但实际上不想这样做。将鼠标光标更改为“>”会给您带来什么好处?这肯定会让用户感到困惑。

You may think you want to do this, but you really don't. What will it gain you to change the mouse cursor to '>'? It will certainly confuse the user.

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