如何在 Ruby Glade/GTK 中制作多选列表框,也许使用 TreeView?
我正在尝试在glade/ruby 程序中创建一个多选列表框,我想知道如何执行此操作,例如我添加到窗口的元素以及我可以使用的相应示例代码。 我正在查看 GTKList 但它说它现在已被弃用,而且我也不知道如何让它在 ruby 中工作。 GTK List 文档说使用 TreeView,但我不知道如何设置。
需要明确的是,我想要这样的东西,用户可以选择多个条目:
替代文本 http://geekswithblogs.net/images/geekswithblogs_net/dotNETvinz/OutputPreselectListBox.JPG
感谢大家的帮助! 对于这个问题我真的很绝望。
I am trying to make a multiple-select listbox in glade/ruby program and I am wondering how I go about doing this, like what element I add to the window and the corresponding example code I can use. I was looking at GTKList but it says it is deprecated now, and also I don't know how to get it working in ruby. GTK List docs say to use TreeView, but I have no idea how to set that up.
Just to be clear, I would like something like this, where the user can select multiple entries:
alt text http://geekswithblogs.net/images/geekswithblogs_net/dotNETvinz/OutputPreselectListBox.JPG
Thanks for the help guys! I am really desperate on this question.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
上面的答案是正确的,但是如果您使用 VisualRuby 编写它会容易得多:
这会将所有内容设置得与您的示例完全相同,包括标题。
然后,您只需将其添加到框或滚动窗口中即可:
转到:
http://www.visualruby.net
THe above answer is correct, but if you wrote it using visualruby it would be a lot easier:
That would set everything exactly like your example, including the title.
Then you just add it to a box, or scrolledwindow:
Go to:
http://www.visualruby.net
基本上,您必须使用 GtkTreeView 并将其“model”属性设置为包含您的数据的 GtkListStore。
GtkTreeView 使用 GtkTreeSelection 类管理选择。 使用 gtk_tree_view_get_selection (或者 ruby-gtk 中映射到的任何内容)来获取 GtkTreeSelection。 并将选择模式设置为“多个”。
这是一个 Python 示例。 在 Ruby/Gtk 中应该是类似的。
Basically, you have to use GtkTreeView and set its "model" property to a GtkListStore that contains your data.
GtkTreeView manages selection with GtkTreeSelection class. Use gtk_tree_view_get_selection (or whatever it is mapped to in ruby-gtk) to get the GtkTreeSelection. And set the selection mode to "multiple".
Here's an example in Python. In Ruby/Gtk it should be similar.