Sha256: 5fdae24f0107dbd7b6d7752b22cb3da7332ada995a0b0f081b653d97a92d25a0

Contents?: true

Size: 1.56 KB

Versions: 162

Compression:

Stored size: 1.56 KB

Contents

# 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

module Gtk
  class ComboBox
    alias_method :initialize_raw, :initialize
    def initialize(options={})
      entry = options[:entry]
      model = options[:model]
      area  = options[:area]

      if entry
        if model
          initialize_new_with_model_and_entry(model)
        elsif area
          initialize_new_with_area_and_entry(area)
        else
          initialize_new_with_entry
        end
      else
        if model
          initialize_new_with_model(model)
        elsif area
          initialize_new_with_area(area)
        else
          initialize_new
        end
      end
    end

    alias_method :active_iter_raw, :active_iter
    def active_iter
      found, iter = active_iter_raw
      if found
        iter.model = model
        iter
      else
        nil
      end
    end
  end
end

Version data entries

162 entries across 154 versions & 3 rubygems

Version Path
gtk3-4.2.7 lib/gtk3/combo-box.rb
gtk3-4.2.6 lib/gtk3/combo-box.rb
gtk3-4.2.5 lib/gtk3/combo-box.rb
gtk3-4.2.4 lib/gtk3/combo-box.rb
gtk3-4.2.3 lib/gtk3/combo-box.rb
gtk3-4.2.2 lib/gtk3/combo-box.rb
gtk3-4.2.1 lib/gtk3/combo-box.rb
gtk3-4.2.0 lib/gtk3/combo-box.rb
gtk3-4.1.9 lib/gtk3/combo-box.rb
gtk3-4.1.8 lib/gtk3/combo-box.rb
gtk3-4.1.7 lib/gtk3/combo-box.rb
gtk3-4.1.6 lib/gtk3/combo-box.rb
gtk3-4.1.5 lib/gtk3/combo-box.rb
gtk3-4.1.4 lib/gtk3/combo-box.rb
gtk3-4.1.3 lib/gtk3/combo-box.rb
gtk3-4.1.2 lib/gtk3/combo-box.rb
gtk3-4.1.1 lib/gtk3/combo-box.rb
gtk3-4.1.0 lib/gtk3/combo-box.rb
gtk3-4.0.9 lib/gtk3/combo-box.rb
gtk3-4.0.8 lib/gtk3/combo-box.rb