1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
# Copyright (C) 2015 Ruby-GNOME2 Project Team
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
require "uri"
require "webkit2-gtk"
uri = URI.parse(ARGV.shift || "https://webkitgtk.org/")
app = Gtk::Application.new("com.github.ruby-gnome2.webkit2-gtk.sample.browser",
:flags_none)
app.signal_connect(:activate) do
window = Gtk::ApplicationWindow.new(app)
window.set_default_size(800, 600)
view = nil
box = Gtk::Box.new(:vertical)
window.add(box)
entry = Gtk::Entry.new
entry.signal_connect("activate") do
view.load_uri(entry.text)
end
box.pack_start(entry)
# For supporting http_proxy and https_proxy.
# view_context = WebKit2Gtk::WebContext.new
# proxy_settings = WebKit2Gtk::NetworkProxySettings.new
# proxy_settings.add_proxy_for_scheme("http", ENV["http_proxy"])
# proxy_settings.add_proxy_for_scheme("https", ENV["https_proxy"])
# view_context.set_network_proxy_settings(:custom, proxy_settings)
# view = WebKit2Gtk::WebView.new(context: view_context)
view = WebKit2Gtk::WebView.new
view.signal_connect("load-changed") do |_, load_event|
p [:load_changed, view.uri, load_event]
entry.text = view.uri
end
view.signal_connect("load-failed") do |_, _, failed_uri, error|
message = "failed to load URI: #{failed_uri}: "
message << "#{error.class}(#{error.code}): #{error.message}"
puts(message)
true
end
if uri.class == URI::Generic
view.load_html(File.read(uri.path), uri.to_s)
else
view.load_uri(uri.to_s)
end
box.pack_start(view, expand: true, fill: true)
window.show_all
end
app.run
|