gtk.gdk.color_parse() 等效于 vala
我试图在 Vala 中找到与 pyGtk 函数 gtk.gdk.color_parse 等效的函数。我能找到的只是 Gdk.Color.parse ,它有点相似,但返回一个布尔值而不是 Gdk.Color 结构。看起来我应该能够找到与 Python 函数等效的函数,但我似乎找不到。
I'm trying to find an equivalent to the pyGtk function gtk.gdk.color_parse
in Vala. All I can find is Gdk.Color.parse
which is sort of similar, but returns a boolean instead of a Gdk.Color structure. It seems like I should be able to find the equivalent to the Python function, but I don't seem to be able to.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,就是这样 - 它为您提供颜色作为“输出参数”而不是返回值。 Python 没有 out 参数(好吧,如果你足够努力的话,Python 有任何功能......)布尔返回值告诉解析是否成功。如果没有,PyGTK 可能会引发异常。
像这样使用它:
No, that's the one - it gives you the color as an "out parameter" instead of return value. Python doesn't have out parameters (well, Python has any feature if you try hard enough...) The boolean return value tells whether the parsing succeeded. PyGTK probably raises an exception if it doesn't.
Use it like this: