FLTK 中有多列列表框小部件吗?
我正在评估用于 C++ 开发的跨平台 GUI 工具包。我已经使用 Qt,但在这种情况下 LGPL 限制太多(我需要静态链接)。
现在,对于我的目的而言,FLTK 将是一个出色的库,因为它似乎快速且轻量级。但是,我无法弄清楚它是否具有多列列表框小部件。您知道,其中一个网格包含行和列的字符串和标题,可以单击对列进行排序 - 最好全部具有本机外观和感觉。
FLTK中有这样的东西吗?怎么称呼?或者我应该使用 wxWidgets 代替?
I'm evaluating cross-platform GUI toolkits for C++ development. I already use Qt but in this case the LGPL is too restrictive (I need to link statically).
Now FLTK would be an excellent library for my purposes, because it seems to be fast and lightweight. However, I haven't been able to figure out whether it has a multi-column listbox widget. You know, one of those grids with rows and columns of strings and headers that can be clicked to sort a column---preferably all with a native look-and-feel.
Is there such a thing in FLTK? How is it called? Or should I use wxWidgets instead?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Fl_Table。它带有 1.3 候选版本。 1.3 /test 中有一个我修改并使用的可排序表的示例。感觉比QT低很多,但是你可以用它做任何事情。另外,如果您仔细观察,wxWidgets 的某些部分具有与 QT 类似的许可。
Table.html">http://www.fltk.org/doc-1.3/classFl_Table.html
Fl_Table. It comes with the 1.3 release candidate. There is an example in 1.3 /test of a sortable table that I have modified and used. It feels a lot lower level than QT but you can do anything with it. Also, if you look close parts of wxWidgets has licensing similar to QT.
Table.html">http://www.fltk.org/doc-1.3/classFl_Table.html