Sha256: 3dd6cd589f7e2e8b687ed3d967ad3498589879272c3d3031967dbcfad8ddbd72

Contents?: true

Size: 1.21 KB

Versions: 11

Compression:

Stored size: 1.21 KB

Contents

# Class for automatically managing layouts
class Wx::Sizer
  # Generic method to add items, supporting positional and named
  # arguments
  ADD_ITEM_PARAMS = [ Wx::Parameter[ :index, -1 ], 
                      Wx::Parameter[ :proportion, 0 ],
                      Wx::Parameter[ :flag, 0 ],
                      Wx::Parameter[ :border, 0 ],
                      Wx::Parameter[ :user_data, nil ] ]
  
  def add_item(item, *mixed_args)

    begin
      args = Wx::args_as_list(ADD_ITEM_PARAMS, *mixed_args)
    rescue => err
      err.set_backtrace(caller)
      Kernel.raise err
    end

    full_args = []

    # extract the width and the height in the case of a spacer
    # defined as an array
    if item.kind_of?(Array)
      Kernel.raise ArgumentError,
        "Invalid Sizer specification : [width, height] expected" if item.size != 2
      full_args << item[0] << item[1]
    else
      full_args << item
    end

    # update the full arguments list with the optional arguments (except index)
    idx = args.shift
    full_args.concat(args)

    # Call add to append if default position
    if idx == -1
      add(*full_args)
    else
      insert(idx, *full_args)
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
wxruby3-0.9.0.pre.rc.3-x64-mingw-ucrt lib/wx/core/sizer.rb
wxruby3-0.9.0.pre.rc.2-x64-mingw-ucrt lib/wx/core/sizer.rb
wxruby3-0.9.0.pre.rc.1-x64-mingw-ucrt lib/wx/core/sizer.rb
wxruby3-0.9.0.pre.beta.14-x64-mingw-ucrt lib/wx/core/sizer.rb
wxruby3-0.9.0.pre.beta.13-x64-mingw-ucrt lib/wx/core/sizer.rb
wxruby3-0.9.0.pre.beta.11-x64-mingw-ucrt lib/wx/core/sizer.rb
wxruby3-0.9.0.pre.beta.10-x64-mingw-ucrt lib/wx/core/sizer.rb
wxruby3-0.9.0.pre.beta.9-x64-mingw-ucrt lib/wx/core/sizer.rb
wxruby3-0.9.0.pre.beta.8-x64-mingw-ucrt lib/wx/core/sizer.rb
wxruby3-0.9.0.pre.beta.2-x64-mingw-ucrt-3.2-3.2.2 lib/wx/core/sizer.rb
wxruby3-0.9.0.pre.beta.1-x64-mingw-ucrt-3.2 lib/wx/core/sizer.rb