0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Ruby/GTK3 - 表示するだけのTreeView

Last updated at Posted at 2020-03-01

gem install gtk3

image.png
image.png

なるべくシンプルにしてみたらこんな感じになった。
改良の余地があるはず。

require 'gtk3'
require 'csv'
require 'open-uri'

url = "https://raw.githubusercontent.com/pandas-dev/pandas/master/pandas/tests/data/iris.csv"
iris = CSV.parse(URI.open(url))

ls = Gtk::ListStore.new(*([String] * 5))
mf = ls.create_filter

treeview = Gtk::TreeView.new(mf)
iris.shift.each_with_index do |header, i|
  column = Gtk::TreeViewColumn.new(header, Gtk::CellRendererText.new, text: i)
  treeview.append_column(column)
end

iris.each do |val|
  iter = ls.append
  iter.values = val
end

win = Gtk::Window.new
win.title = 'Gtk::TreeModelFilter sample'
win.set_size_request 500, 400

sw = Gtk::ScrolledWindow.new
sw.add_with_viewport(treeview)

win.add sw
win.signal_connect('destroy') { Gtk.main_quit }
win.show_all
Gtk.main
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?