Sha256: b92089dd4ba9ee3882a111ac66e9d62b7f79540d5fffe093a0b6138961b37844

Contents?: true

Size: 1.58 KB

Versions: 151

Compression:

Stored size: 1.58 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 Table
    alias_method :initialize_raw, :initialize
    def initialize(n_rows, n_columns, homogeneous=false)
      initialize_raw(n_rows, n_columns, homogeneous)
    end

    alias_method :default_column_spacing, :default_col_spacing

    def column_spacings(column)
      get_col_spacings(column)
    end
    alias_method :set_column_spacings, :set_col_spacings
    alias_method :column_spacings=,    :col_spacings=

    alias_method :attach_raw, :attach
    def attach(child, left, right, top, bottom,
               x_options=nil, y_options=nil,
               x_space=nil, y_space=nil)
      attach_raw(child, left, right, top, bottom,
                 x_options || [:expand, :fill],
                 y_options || [:expand, :fill],
                 x_space || 0,
                 y_space || 0)
    end
  end
end

Version data entries

151 entries across 143 versions & 3 rubygems

Version Path
gtk3-3.1.4-x86-mingw32 lib/gtk3/table.rb
gtk3-3.1.4 lib/gtk3/table.rb
gtk3-3.1.3-x64-mingw32 lib/gtk3/table.rb
gtk3-3.1.3-x86-mingw32 lib/gtk3/table.rb
gtk3-3.1.3 lib/gtk3/table.rb
gtk3-3.1.2-x64-mingw32 lib/gtk3/table.rb
gtk3-3.1.2-x86-mingw32 lib/gtk3/table.rb
gtk3-3.1.2 lib/gtk3/table.rb
savant-echo-1.0.4 bin/packaging/vendor/ruby/2.2.0/gems/gtk3-3.1.0/lib/gtk3/table.rb
savant-echo-1.0.4 bin/alexa-0.1.2-osx/lib/vendor/ruby/2.2.0/gems/gtk3-3.1.0/lib/gtk3/table.rb
gtk3-3.1.1-x64-mingw32 lib/gtk3/table.rb
gtk3-3.1.1-x86-mingw32 lib/gtk3/table.rb
gtk3-3.1.1 lib/gtk3/table.rb
savant-echo-1.0.1 bin/alexa-0.1.2-osx/lib/vendor/ruby/2.2.0/gems/gtk3-3.1.0/lib/gtk3/table.rb
savant-echo-1.0.1 bin/packaging/vendor/ruby/2.2.0/gems/gtk3-3.1.0/lib/gtk3/table.rb
savant-echo-0.1.91 bin/packaging/vendor/ruby/2.2.0/gems/gtk3-3.1.0/lib/gtk3/table.rb
savant-echo-0.1.91 bin/alexa-0.1.2-osx/lib/vendor/ruby/2.2.0/gems/gtk3-3.1.0/lib/gtk3/table.rb
savant-echo-0.1.9 bin/packaging/vendor/ruby/2.2.0/gems/gtk3-3.1.0/lib/gtk3/table.rb
savant-echo-0.1.9 bin/alexa-0.1.2-osx/lib/vendor/ruby/2.2.0/gems/gtk3-3.1.0/lib/gtk3/table.rb
savant-echo-0.1.6 bin/alexa-0.1.2-osx/lib/vendor/ruby/2.2.0/gems/gtk3-3.1.0/lib/gtk3/table.rb