Qt“复制/粘贴/剪切”

发布于 2024-11-19 06:04:43 字数 166 浏览 2 评论 0原文

好吧,我正在做一个文本编辑器,基本上你写文本的地方是一个“QPlainTextEdit”,我遇到了问题,我正在尝试在“编辑”菜单中执行复制/粘贴/剪切的选项。

我的意思是“复制”,您在编辑器中选择文本,打开“编辑”菜单,单击“复制”并将其发送到剪贴板。 粘贴,粘贴你复制的内容? 剪切,剪切选定的文本。

Well, i'm doing a Text Editor, basically where you write the text is a "QPlainTextEdit" i'm having issues, i'm trying to do in "Edit" Menu, an option to Copy/Paste/Cut.

With Copy i meant, you select the text in the Editor, open Edit Menu, Click Copy and sends that to Clipboard.
Paste, pastes what you copied?
Cut, cuts the selected text.

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

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

发布评论

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

评论(1

你在看孤独的风景 2024-11-26 06:04:43

QTextEdit 具有插槽复制粘贴剪切。因此,您只需将您的信号连接到这些插槽,您就可以拥有抄送\抄送功能。您可以在 QDesigner 中做到这一点,无需编码。

QTextEdit has slots copy, paste and cut. So, You need just connect Your signals with these slots and You will have C-c\C-v functionality. You can do that in QDesigner without coding.

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