有 Python PyGTK Pango 编辑器工具栏的示例吗?
我正在寻找用 Python 和 PyGTK 编写的示例应用程序。
应该有一个编辑器已经这样做了。
一些带有文本编辑器行按钮的应用程序: - 字体 - 粗体/斜体/下划线 - 等等
我希望避免重新发明轮子! 谢谢
I am looking for an example application written in Python and PyGTK.
There should be an editor out there somewhere that already does this.
Some app with a text editor row of buttons:
- Font
- Bold/italic/underline
- etc
I am hoping to avoid reinventing the wheel on this one!
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我找不到任何 pygtk 程序可以完成您想要的操作,但这里有一个使用 pango 的很好的教程: http://zetcode.com/tutorials/pygtktutorial/pango/
I couldn't find any pygtk programs that do what you want, but here is a good tutorial to using pango: http://zetcode.com/tutorials/pygtktutorial/pango/
我找到了一些相关的例子:KeepNote,它有一个自定义的rich edit,以及Rednotebook,它实现了KeepNote的richedit。
I found some related examples: KeepNote, which has a custom rich edit, and Rednotebook which implements KeepNote's richedit.