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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
|
# 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
#
# Original:
# * URL: https://git.gnome.org/browse/gtk+/tree/examples/application8/exampleapp.c
# * URL: https://git.gnome.org/browse/gtk+/tree/examples/application8/exampleappwin.c
# * License: LGPL 2
require "gtk3"
require "fileutils"
current_path = File.expand_path(File.dirname(__FILE__))
gresource_bin = "#{current_path}/exampleapp.gresource"
gresource_xml = "#{current_path}/exampleapp.gresource.xml"
system("glib-compile-resources",
"--target", gresource_bin,
"--sourcedir", current_path,
gresource_xml)
gschema_bin = "#{current_path}/gschemas.compiled"
system("glib-compile-schemas", current_path)
at_exit do
FileUtils.rm_f([gresource_bin, gschema_bin])
end
resource = Gio::Resource.load(gresource_bin)
Gio::Resources.register(resource)
ENV["GSETTINGS_SCHEMA_DIR"] = current_path
def update_words(win)
tab = win.stack.visible_child
return unless tab
view = tab.child
buffer = view.buffer
iter = buffer.start_iter
strings = []
done = false
until iter.end?
until iter.starts_word
unless iter.forward_char
done = true
break
end
end
break if done
word_end = iter.clone
break unless word_end.forward_word_end
strings << buffer.get_text(iter, word_end, false)
iter = word_end
end
children = win.words.children
children.each { |c| win.words.remove(c) } unless children.empty?
strings.each do |s|
row = Gtk::Button.new(:label => s)
row.signal_connect("clicked") { |_widget| win.searchentry.text = s }
row.show
win.words.add(row)
end
end
class ExampleAppPrefs < Gtk::Dialog
type_register
class << self
def init
set_template(:resource => "/org/gtk/exampleapp/prefs.ui")
bind_template_child("font")
bind_template_child("transition")
end
end
def initialize(args)
parent = args[:transient_for]
super(:transient_for => parent, :use_header_bar => 1)
settings = Gio::Settings.new("org.gtk.exampleapp")
settings.bind("font",
font,
"font",
Gio::SettingsBindFlags::DEFAULT)
settings.bind("transition",
transition,
"active-id",
Gio::SettingsBindFlags::DEFAULT)
end
end
class ExampleAppWindow < Gtk::ApplicationWindow
type_register
class << self
def init
set_template(:resource => "/org/gtk/exampleapp/window.ui")
bind_template_child("stack")
bind_template_child("search")
bind_template_child("searchbar")
bind_template_child("searchentry")
bind_template_child("gears")
bind_template_child("words")
bind_template_child("sidebar")
set_connect_func do |name|
method(name)
end
end
private
def search_text_changed(search_entry)
text = search_entry.text
return if text.empty?
win = search_entry.toplevel
tab = win.stack.visible_child
view = tab.child
buffer = view.buffer
range = buffer.start_iter.forward_search(text,
Gtk::TextSearchFlags::CASE_INSENSITIVE)
return unless range
buffer.select_range(range[0], range[1])
view.scroll_to_iter(range[0], 0.0, false, 0.0, 0.0)
end
def visible_child_changed(stack, params)
return if stack.in_destruction?
win = stack.toplevel
win.searchbar.set_search_mode(false)
update_words(win)
end
end
def initialize(application)
super(:application => application)
@settings = Gio::Settings.new("org.gtk.exampleapp")
@settings.bind("transition",
stack,
"transition-type",
Gio::SettingsBindFlags::DEFAULT)
search.bind_property("active", searchbar, "search-mode-enabled", :bidirectional)
@settings.bind("show-words",
sidebar,
"reveal-child",
Gio::SettingsBindFlags::DEFAULT)
sidebar.signal_connect "notify::reveal-child" do |_sidebar, _gparamspec|
update_words(self)
end
builder = Gtk::Builder.new(:resource => "/org/gtk/exampleapp/gears-menu.ui")
menu = builder.get_object("menu")
gears.set_menu_model(menu)
action = @settings.create_action("show-words")
add_action(action)
end
def open(file)
basename = file.basename
scrolled = Gtk::ScrolledWindow.new
scrolled.show
scrolled.set_hexpand(true)
scrolled.set_vexpand(true)
view = Gtk::TextView.new
view.set_editable(false)
view.set_cursor_visible(false)
view.show
scrolled.add(view)
stack.add_titled(scrolled, basename, basename)
stream = file.read
buffer = view.buffer
buffer.text = stream.read
tag = buffer.create_tag
@settings.bind("font", tag, "font", Gio::SettingsBindFlags::DEFAULT)
buffer.apply_tag(tag, buffer.start_iter, buffer.end_iter)
search.sensitive = true
update_words(self)
end
end
class ExampleApp < Gtk::Application
def initialize
super("org.gtk.exampleapp", :handles_open)
signal_connect "startup" do |application|
quit_accels = ["<Ctrl>Q"]
action = Gio::SimpleAction.new("quit")
action.signal_connect("activate") do |_action, _parameter|
application.quit
end
application.add_action(action)
application.set_accels_for_action("app.quit", quit_accels)
action = Gio::SimpleAction.new("preferences")
action.signal_connect("activate") do |_action, _parameter|
win = application.windows.first
prefs = ExampleAppPrefs.new(:transient_for => win,
:use_header_bar => true)
prefs.present
end
application.add_action(action)
builder = Gtk::Builder.new(:resource => "/org/gtk/exampleapp/app-menu.ui")
app_menu = builder.get_object("appmenu")
application.set_app_menu(app_menu)
end
signal_connect "activate" do |application|
window = ExampleAppWindow.new(application)
window.present
end
signal_connect "open" do |application, files, _hint|
windows = application.windows
win = nil
if windows.empty?
win = ExampleAppWindow.new(application)
else
win = windows.first
end
files.each { |file| win.open(file) }
win.present
end
end
end
app = ExampleApp.new
puts app.run([$PROGRAM_NAME] + ARGV)
|