GObject 是在 Clutter 中使用信号创建菜单选项的最佳方法吗?
我想创建一个具有焦点切换能力的垂直菜单。
我是否需要使用 GObject 方式来创建具有自己的事件信号的自定义选项,还是应该在没有 GObject 的情况下单独创建它?
任何建议都会有所帮助。任何人都可以给我正确示例代码的链接,其中编码是在生产环境中完成的,而不是花哨的示例。
I want to create a vertical menus with focus switching ability.
Do i need to do it using GObject way to create a custom option with its own event signal or should i create it separately without GObject ?
Any suggestion would help. And can anyone give me links for proper example codes where coding is done in production environment instead of fancy examples.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的问题有混乱标签,所以我假设您想使用混乱。在这种情况下,您可以将菜单项作为 ClutterActor 对象放入 ClutterGroup 中,并在容器级别处理菜单导航逻辑。这对于键盘事件来说是微不足道的,但对于鼠标导航,您可以在每个菜单项上拦截它们,然后将其传递到具有项目 id 或其他内容的容器。非常简单,但也很混乱。不幸的是,我目前没有可以分享的代码示例。
You have clutter tag with your question so I assume you want to use clutter. In that case you could put your menu items as ClutterActor objects into ClutterGroup and handle menu navigation logic on the container level. This is trivial for keyboard events but for mouse navigation you can intercept them on each menu item and then pass it down to the container with item id or something. It is very simple with clutter. Unfortunately, I have no code samples to share at the moment.