是否有 Tk 的 Perl/Moose 包装器
您见过 Tk 的 Perl/Moose 包装吗?
或者其他关于如何使用 Perl 干净地构建/编码 GUI 的建议!
Have you seen a Perl/Moose wrapper for Tk.
Or other suggestions how to cleanly build/code a GUI with Perl!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,没有。有三组(据我所知)从 Perl 到 Tk 的绑定: Perl/Tk、Tkx 和 Tcl::Tk。都是面向对象的,但是没有一个使用Moose。
由于这些是您将使用而不是修改的模块,因此我看不到用 Moose 包装它们的优势。您可以直接使用它们编写完全干净的代码。最重要的是将 UI 代码与业务逻辑(可以使用 Moose)完全分离。
No, there isn't. There are three (that I'm aware of) sets of bindings from Perl to Tk: Perl/Tk, Tkx, and Tcl::Tk. All are object-oriented, but none of them use Moose.
Since these are modules that you will use, not modify, I don't see the advantage of wrapping them with Moose. You can write perfectly clean code using them directly. The most important thing is to cleanly separate the UI code from the business logic (which could use Moose).