Sha256: 5a1b3c0c62ee14b3d1533a20424cb73ef383bcf3070c67c776ced79816504558

Contents?: true

Size: 1.61 KB

Versions: 125

Compression:

Stored size: 1.61 KB

Contents

#!/usr/bin/env ruby
=begin
  icons-theme-viewer.rb - Ruby/GTK sample script.

  Copyright (c) 2016 Ruby-GNOME2 Project Team
  This program is licenced under the same licence as Ruby-GNOME2.
=end

require "gtk3"

def fill_model(icons)
  model = Gtk::ListStore.new(String, GdkPixbuf::Pixbuf)
  icons.each do |icon|
    pixbuf = Gtk::IconTheme.default.load_icon(icon, 32, 0)
    iter = model.append
    iter[0] = icon
    iter[1] = pixbuf
  end
  model
end

def gen_icon_view(pattern, context = nil)
  icon_theme = Gtk::IconTheme.default
  icons = icon_theme.icons(context).grep(/#{pattern}/)
  model = fill_model(icons)
  icon_view = Gtk::IconView.new(:model => model)
  icon_view.text_column = 0
  icon_view.pixbuf_column = 1
  icon_view
end

window = Gtk::Window.new("View all your icons")
window.set_default_size(700, 700)
window.signal_connect("delete-event") { Gtk.main_quit }

icon_view = gen_icon_view("application")
sw = Gtk::ScrolledWindow.new(nil, nil)
sw.add(icon_view)

entry = Gtk::Entry.new
entry.buffer.text = "application"
entry.tooltip_text = "Use a pattern to filter icons"
entry.set_icon_from_icon_name(:secondary, "edit-clear")
entry.set_icon_tooltip_text(:secondary, "Reset pattern")

entry.signal_connect "icon-release" do |widget, position|
  widget.buffer.text = "" if position == :secondary
end

entry.signal_connect "activate" do |widget|
  sw.remove(icon_view)
  pattern = widget.buffer.text
  icon_view = gen_icon_view(pattern)
  sw.add(icon_view)
  window.show_all
end

box = Gtk::Box.new(:vertical, 0)
box.pack_start(entry)
box.pack_start(sw, :expand => true, :fill => true)

window.add(box)
window.show_all

Gtk.main

Version data entries

125 entries across 117 versions & 2 rubygems

Version Path
gtk3-4.2.4 sample/misc/icons-theme-viewer.rb
gtk3-4.2.3 sample/misc/icons-theme-viewer.rb
gtk3-4.2.2 sample/misc/icons-theme-viewer.rb
gtk3-4.2.1 sample/misc/icons-theme-viewer.rb
gtk3-4.2.0 sample/misc/icons-theme-viewer.rb
gtk3-4.1.9 sample/misc/icons-theme-viewer.rb
gtk3-4.1.8 sample/misc/icons-theme-viewer.rb
gtk3-4.1.7 sample/misc/icons-theme-viewer.rb
gtk3-4.1.6 sample/misc/icons-theme-viewer.rb
gtk3-4.1.5 sample/misc/icons-theme-viewer.rb
gtk3-4.1.4 sample/misc/icons-theme-viewer.rb
gtk3-4.1.3 sample/misc/icons-theme-viewer.rb
gtk3-4.1.2 sample/misc/icons-theme-viewer.rb
gtk3-4.1.1 sample/misc/icons-theme-viewer.rb
gtk3-4.1.0 sample/misc/icons-theme-viewer.rb
gtk3-4.0.9 sample/misc/icons-theme-viewer.rb
gtk3-4.0.8 sample/misc/icons-theme-viewer.rb
gtk3-4.0.7 sample/misc/icons-theme-viewer.rb
gtk3-4.0.6 sample/misc/icons-theme-viewer.rb
gtk3-4.0.5 sample/misc/icons-theme-viewer.rb