Qt 扩展支持吗
我正在评估即将推出的项目的嵌入式 Linux GUI 工具包,并整理了一个必须具备的“功能列表”来帮助我做出决定:
- 图形中的颜色渐变(用于菜单标题按钮、图标等……)
- 绘制复杂波浪的能力带有背景网格、注释的图形。
- 能够在横向和纵向之间切换。
Qt Extended 似乎是一个流行的工具包,拥有广泛的用户群。谁能告诉我 Qt Extended 中是否提供上述功能?任何教程或文档的链接都很棒!
I am evaluating Embedded Linux GUI toolkits for an upcoming project and have put together a must have “feature list” to help me with the decision:
- Color gradients in graphics (for menu headers buttons, icons, etc…)
- The ability to draw complex wave graphics with say a background grid, notations.
- The ability to swap between to landscape and portrait orientation.
Qt Extended seems to be a popular toolkit with a wide user base. Can anyone tell me if the above features are available in Qt Extended? Any links to tutorials or documentation would be great!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,可以通过自定义样式、样式表 或通过实现自定义小部件(取决于您想要获得的异国风情)
当然,您可以绘制任何内容。对于您想要的内容,请查看 Qwt。
是的,但您可能需要在这里应用一些您自己的魔法。 屏幕驱动程序确实支持此操作,因此可以完成。此外,Qt for Symbian 端口会动态执行此操作,因此查看他们的解决方案,然后将其应用到您的场景中可能会起作用。
Yes, either through a custom style, a style sheet or by implementing custom widgets (depending on how exotic you want to get)
Sure, you can draw anything. For what you're after, check out Qwt.
Yes, but you might have to apply some magic of your own here. The screen driver does support this, so it can be done. Also, the Qt for Symbian port does this on the fly, so looking at their solution and then applying it to your scenario might work.