LoginSignup
1
0

More than 3 years have passed since last update.

Ruby/GTK3 - AboutDialog

Last updated at Posted at 2020-02-24

gem install gtk3

AboutDialog

image.png
image.png
image.png

require 'gtk3'

unless Gtk::Version.or_later?(3, 4, 2)
  puts "This sample requires GTK+ 3.4.2 or later: #{Gtk::Version::STRING}"
  exit
end

a = Gtk::AboutDialog.new
a.artists            = ['Artist 1 <no1@foo.bar.com>', 'Artist 2 <no2@foo.bar.com>']
a.authors            = ['Author 1 <no1@foo.bar.com>', 'Author 2 <no2@foo.bar.com>']
a.comments           = 'This is a sample script for Gtk::AboutDialog'
a.copyright          = 'Copyright (C) 2020 Ruby-GNOME Project'
a.documenters        = ['Documenter 1 <no1@foo.bar.com>', 'Documenter 2 <no2@foo.bar.com>']
a.license            = 'This program is licenced under the same licence as Ruby-GNOME.'
a.logo               = GdkPixbuf::Pixbuf.new(file: File.join(__dir__, 'gnome-logo-icon.png'))
a.program_name       = 'Gtk::AboutDialog sample'
a.translator_credits = "Translator 1\nTranslator 2\n"
a.version            = '1.0.0'
a.website            = 'https://ruby-gnome2.osdn.jp'
a.website_label      = 'Ruby-GNOME Project Website'

a.signal_connect('activate-link') do |_widget, uri|
  p _widget.class
  p uri
end

p a.run

image.png
image.png
image.png

#!/usr/bin/env ruby
# frozen_string_literal: true

#   aboutdialog2.rb - Ruby/GTK sample script.
#
#   Copyright (c) 2005-2020 Ruby-GNOME Project Team
#   This program is licenced under the same licence as Ruby-GNOME.
require 'gtk3'

unless Gtk::Version.or_later?(3, 4, 2)
  puts "This sample requires GTK+ 3.4.2 or later: #{Gtk::Version::STRING}"
  exit
end

about_dialog = Gtk::AboutDialog.show(
  nil,
  'artists' => ['Artist 1 <no1@foo.bar.com>', 'Artist 2 <no2@foo.bar.com>'],
  'authors' => ['Author 1 <no1@foo.bar.com>', 'Author 2 <no2@foo.bar.com>'],
  'comments' => 'This is a sample script for Gtk::AboutDialog',
  'copyright' => 'Copyright (C) 2005-2020 Ruby-GNOME Project',
  'documenters' => ['Documenter 1 <no1@foo.bar.com>', 'Documenter 2 <no2@foo.bar.com>'],
  'license' => 'This program is licenced under the same licence as Ruby-GNOME.',
  'logo_icon_name' => 'gtk-home',
  'program_name' => 'Gtk::AboutDialog sample',
  'translator_credits' => "Translator 1 <no1@foo.bar.com>\nTranslator 2 <no2@foo.bar.com>\n",
  'version' => '1.0.0',
  'website' => 'https://ruby-gnome2.osdn.jp',
  'website_label' => 'Ruby-GNOME Project Website'
)

about_dialog.signal_connect('delete_event') do
  Gtk.main_quit
end

Gtk.main

1
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
1
0