Class: Wx::ToolBar
- Inherits:
-
Object
- Object
- Wx::ToolBar
- Defined in:
- lib/wx/classes/toolbar.rb
Overview
A set of buttons and controls attached to one edge of a Wx::Frame
Constant Summary collapse
- ADD_ITEM_PARAMS =
Generic method to add items, supporting positional and named arguments
[ 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 ] ]
Instance Method Summary collapse
Instance Method Details
#add_item(bitmap1, *mixed_args) ⇒ Object
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/wx/classes/toolbar.rb', line 15 def add_item(bitmap1, *mixed_args) begin args = Wx::args_as_list(ADD_ITEM_PARAMS, *mixed_args) rescue => err err.set_backtrace(caller) Kernel.raise err end 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 |