gtk.gdk.color_parse() 等效于 vala

发布于 2024-11-06 11:15:03 字数 148 浏览 0 评论 0原文

我试图在 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 技术交流群。

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

发布评论

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

评论(1

今天小雨转甜 2024-11-13 11:15:03

不,就是这样 - 它为您提供颜色作为“输出参数”而不是返回值。 Python 没有 out 参数(好吧,如果你足够努力的话,Python 有任何功能......)布尔返回值告诉解析是否成功。如果没有,PyGTK 可能会引发异常。

像这样使用它:

Gdk.Color fuchsia;
if (!Gdk.Color.parse("fuchsia", out fuchsia))
    print("There was an error parsing, I must have spelled fuchsia wrong");

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:

Gdk.Color fuchsia;
if (!Gdk.Color.parse("fuchsia", out fuchsia))
    print("There was an error parsing, I must have spelled fuchsia wrong");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文