Sha256: 1f5ab75045f2c758e866e6d2621fc04c5bf0457023191ef1b650467b12c50f76
Contents?: true
Size: 1.24 KB
Versions: 106
Compression:
Stored size: 1.24 KB
Contents
# Copyright (c) 2008-2016 Ruby-GNOME2 Project Team # This program is licenced under the same licence as Ruby-GNOME2. # =begin = Entry/Entry Buffer Gtk::EntryBuffer provides the text content in a Gtk::Entry. Applications can provide their own buffer implementation, e.g. to provide secure handling for passwords in memory. =end class EntryBufferDemo def initialize(main_window) @window = Gtk::Window.new(:toplevel) @window.screen = main_window.screen @window.title = "Entry Buffer" @window.resizable = false vbox = Gtk::Box.new(:vertical, 5) vbox.margin = 5 @window.add(vbox) label = Gtk::Label.new markup = "Entries share a buffer. Typing in one is reflected in the other." label.markup = markup vbox.pack_start(label, :expand => false, :fill => false, :padding => 0) # Create the buffer that will be shared buffer = Gtk::EntryBuffer.new # first entry entry = Gtk::Entry.new(buffer) vbox.pack_start(entry, :expand => false, :fill => false, :padding => 0) # second entry entry = Gtk::Entry.new(buffer) vbox.pack_start(entry, :expand => false, :fill => false, :padding => 0) end def run if !@window.visible? @window.show_all else @window.destroy end end end
Version data entries
106 entries across 106 versions & 1 rubygems