Sha256: 6907b36a2bc4ce3a9d8fd1771ecb967a0ce97b57db23398316bf152acc936648
Contents?: true
Size: 993 Bytes
Versions: 9
Compression:
Stored size: 993 Bytes
Contents
# A set of buttons and controls attached to one edge of a Wx::Frame class Wx::ToolBar # Generic method to add items, supporting positional and named # arguments ADD_ITEM_PARAMS = [ Wx::Parameter[ :bitmap2, Wx::NULL_BITMAP ], Wx::Parameter[ :position, -1 ], Wx::Parameter[ :id, -1 ], Wx::Parameter[ :label, "" ], Wx::Parameter[ :kind, Wx::ITEM_NORMAL ], Wx::Parameter[ :short_help, "" ], Wx::Parameter[ :long_help, "" ], Wx::Parameter[ :client_data, nil ] ] def add_item(bitmap1, *mixed_args) args = Wx::args_as_list(ADD_ITEM_PARAMS, *mixed_args) bitmap2 = args.shift pos = args.shift args.insert(2, bitmap1) args.insert(3, bitmap2) # Call add_tool to append if default position if pos == -1 add_tool(*args) else insert_tool(pos, *args) end end end
Version data entries
9 entries across 9 versions & 2 rubygems