pygtk textview选项卡宽度?

发布于 2024-12-10 11:01:05 字数 160 浏览 0 评论 0原文

有没有办法将 pygtk TextView 小部件的制表符宽度设置为 8spaces 以外的值?

现在我尝试了 textview.set_tabs(pango.TabArray(4, False)) 但是,我似乎误解了文档。实际的做法是什么?

谢谢

Is there a way to set the tab width of the pygtk TextView widget to be something other than 8spaces?

Right now I tried textview.set_tabs(pango.TabArray(4, False)) However, it seems like I misunderstood the docs. What the actual way to do it?

Thanks

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

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

发布评论

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

评论(1

二智少女猫性小仙女 2024-12-17 11:01:05

请参阅 pango.TabArray文档:您的语句 pango.Tabarray(4, False) 创建一个具有四个制表位的制表符数组,全部位于位置 0 点。您想要的是这样的:

tabs = pango.TabArray(1, True)
tabs.set_tab(0, pango.TAB_LEFT, desired_tab_width)
textview.set_tab(tabs)

然而,desired_tab_width 的值不在空格中。请参阅 此代码中的函数 set_tab_stops_internal() GtkSourceView 看看他们如何计算空间的宽度。

See the docs for pango.TabArray: your statement pango.Tabarray(4, False) creates a tab array with four tab stops, all at position 0 points. What you want is this:

tabs = pango.TabArray(1, True)
tabs.set_tab(0, pango.TAB_LEFT, desired_tab_width)
textview.set_tab(tabs)

The value of desired_tab_width is not in spaces, however. See the function set_tab_stops_internal() in this code from GtkSourceView to see how they calculate the width of a space.

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