在 PyGTK 中设置光标位置(对于 Gedit 插件)

发布于 2024-08-21 22:15:34 字数 272 浏览 6 评论 0原文

我正在开发一个基于 PyGTK 构建的 Gedit 插件。我试图弄清楚如何以编程方式告诉光标要去哪里。例如,我想让光标自动转到第一个“|”之前(管道)在当前行。

有什么想法或出发点吗?到目前为止,我一直在使用 Gedit API(就在这里),这很有帮助大多数情况下,但没有提及任何有关操纵光标位置的内容。

I'm developing a Gedit plugin which is built on PyGTK. I'm trying to figure out how to programatically tell the cursor where to go. For example, I'd like to have the cursor automatically go to right before the first "|" (pipe) in the current line.

Any ideas or starting points? I've been using the Gedit API up until now (right here) which is helpful for the most part but doesn't mention anything about manipulating the cursor position.

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

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

发布评论

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

评论(1

莫言歌 2024-08-28 22:15:34

查看 gedit 插件 API,看起来 gedit.DocumentGtkSourceBuffer 的子类,它本身又是 GtkTextBuffer 的子类,最后一个具有你想要的光标操作API。特别是,get_insert()place_cursor(where) 给出了移动光标的基础知识。对于其他操作(例如,获取当前行),您需要使用 get_iter_at_mark(mark) 转换为 GtkTextIter;光标本质上只是一个特殊的GtkTextMark

Looking at the gedit plugin API, it looks like gedit.Document is a subclass of GtkSourceBuffer which itself subclasses GtkTextBuffer, the last of which has the cursor manipulation API you want. In particular, get_insert() and place_cursor(where) give the basics of moving the cursor around. For other operations (e.g., getting the current line) you'll need to convert to a GtkTextIter using get_iter_at_mark(mark); the cursor is essentially just a special GtkTextMark.

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