__current_itemconfiginfo(tagOrId, slot = nil)
click to toggle source
__destroy_hook__()
click to toggle source
def __destroy_hook__
Axis::AxisID_TBL.delete(@path)
Crosshairs::CrosshairsID_TBL.delete(@path)
Element::ElementID_TBL.delete(@path)
GridLine::GridLineID_TBL.delete(@path)
Legend::LegendID_TBL.delete(@path)
Pen::PenID_TBL.delete(@path)
Postscript::PostscriptID_TBL.delete(@path)
Marker::MarkerID_TBL.delete(@path)
super()
end
__itemcget(tagOrId, option)
click to toggle source
__itemcget_strict(tagOrId, option)
click to toggle source
__itemcget_tkstring(tagOrId, option)
click to toggle source
__itemconfiginfo(tagOrId, slot = nil)
click to toggle source
axis_bind(tag, context, *args)
click to toggle source
def axis_bind(tag, context, *args)
_component_bind('axis', tag, context, *args)
end
axis_bind_append(tag, context, *args)
click to toggle source
def axis_bind_append(tag, context, *args)
_component_bind_append('axis', tag, context, *args)
end
axis_bind_remove(tag, context)
click to toggle source
def axis_bind_remove(tag, context)
_component_bind_remove('axis', tag, context)
end
axis_bindinfo(tag, context=nil)
click to toggle source
def axis_bindinfo(tag, context=nil)
_component_bindinfo('axis', tag, context)
end
axis_cget(id, option)
click to toggle source
def axis_cget(id, option)
ret = itemcget(['axis', tagid(id)], option)
end
axis_cget_strict(id, option)
click to toggle source
def axis_cget_strict(id, option)
ret = itemcget_strict(['axis', tagid(id)], option)
end
axis_cget_tkstring(id, option)
click to toggle source
def axis_cget_tkstring(id, option)
ret = itemcget_tkstring(['axis', tagid(id)], option)
end
axis_configinfo(id, slot=nil)
click to toggle source
def axis_configinfo(id, slot=nil)
itemconfiginfo(['axis', tagid(id)], slot)
end
axis_create(id=nil, keys={})
click to toggle source
def axis_create(id=nil, keys={})
Tk::BLT::PlotComponent::Axis.new(self, tagid(id), keys)
end
axis_delete(*ids)
click to toggle source
def axis_delete(*ids)
tk_send('axis', 'delete', *(ids.collect{|id| tagid(id)}))
self
end
axis_limits(id)
click to toggle source
def axis_limits(id)
list(tk_send('axis', 'limits', tagid(id)))
end
axis_names(*pats)
click to toggle source
def axis_names(*pats)
simplelist(tk_send('axis', 'names',
*(pats.collect{|pat| tagid(pat)}))).collect{|axis|
Tk::BLT::PlotComponent::Axis.id2obj(self, axis)
}
end
axis_use(id, target=nil)
click to toggle source
def axis_use(id, target=nil)
if target
Tk::BLT::PlotComponent::Axis.id2obj(self,
tk_send('axis', 'use',
tagid(id), tagid(target)))
else
Tk::BLT::PlotComponent::Axis.id2obj(self,
tk_send('axis', 'use', tagid(id)))
end
end
axis_view(id)
click to toggle source
def axis_view(id)
tk_send('axis', 'view', tagid(id))
self
end
bar(id=nil, keys={})
click to toggle source
bar_activate(*args)
click to toggle source
def bar_activate(*args)
if args.empty?
list(tk_send('bar', 'activate')).collect{|elem|
Tk::BLT::PlotComponent::Element.id2obj(self, elem)
}
else
id = args.shift
tk_send('bar', 'activate', tagid(id), *args)
end
end
bar_bind(tag, context, *args)
click to toggle source
def bar_bind(tag, context, *args)
_component_bind('bar', tag, context, *args)
end
bar_bind_append(tag, context, *args)
click to toggle source
def bar_bind_append(tag, context, *args)
_component_bind_append('bar', tag, context, *args)
end
bar_bind_remove(tag, context)
click to toggle source
def bar_bind_remove(tag, context)
_component_bind_remove('bar', tag, context)
end
bar_bindinfo(tag, context=nil)
click to toggle source
def bar_bindinfo(tag, context=nil)
_component_bindinfo('bar', tag, context)
end
bar_cget(id, option)
click to toggle source
def bar_cget(id, option)
itemcget(['bar', tagid(id)], option)
end
bar_cget_strict(id, option)
click to toggle source
def bar_cget_strict(id, option)
itemcget_strict(['bar', tagid(id)], option)
end
bar_cget_tkstring(id, option)
click to toggle source
def bar_cget_tkstring(id, option)
itemcget_tkstring(['bar', tagid(id)], option)
end
bar_closest(x, y, var, *args)
click to toggle source
def bar_closest(x, y, var, *args)
if args[-1].kind_of?(Hash)
keys = args.pop
bool(tk_send('bar', 'closest', x, y, var,
*(hash_kv(keys).concat(args.collect{|id| tagid(id)}))))
else
bool(tk_send('bar', 'closest', x, y, var,
*(args.collect{|id| tagid(id)})))
end
end
bar_configinfo(id, slot=nil)
click to toggle source
def bar_configinfo(id, slot=nil)
itemconfiginfo(['bar', tagid(id)], slot)
end
bar_create(id=nil, keys={})
click to toggle source
def bar_create(id=nil, keys={})
Tk::BLT::PlotComponent::Bar.new(self, tagid(id), keys)
end
bar_deactivate(*ids)
click to toggle source
def bar_deactivate(*ids)
tk_send('bar', 'deactivate', *(ids.collect{|id| tagid(id)}))
self
end
bar_delete(*ids)
click to toggle source
def bar_delete(*ids)
tk_send('bar', 'delete', *(ids.collect{|id| tagid(id)}))
self
end
bar_exist?(id)
click to toggle source
def bar_exist?(id)
bool(tk_send('bar', 'exists', tagid(id)))
end
bar_names(*pats)
click to toggle source
def bar_names(*pats)
simplelist(tk_send('bar', 'names',
*(pats.collect{|pat| tagid(pat)}))).collect{|elem|
Tk::BLT::PlotComponent::Element.id2obj(self, elem)
}
end
bar_show(*names)
click to toggle source
def bar_show(*names)
if names.empty?
simplelist(tk_send('bar', 'show'))
else
tk_send('bar', 'show', *(names.collect{|n| tagid(n)}))
self
end
end
bar_type(id)
click to toggle source
def bar_type(id)
tk_send('bar', 'type', tagid(id))
end
crosshairs_cget(option)
click to toggle source
def crosshairs_cget(option)
itemcget('crosshairs', option)
end
crosshairs_cget_strict(option)
click to toggle source
def crosshairs_cget_strict(option)
itemcget_strict('crosshairs', option)
end
crosshairs_cget_tkstring(option)
click to toggle source
def crosshairs_cget_tkstring(option)
itemcget_tkstring('crosshairs', option)
end
crosshairs_configinfo(slot=nil)
click to toggle source
def crosshairs_configinfo(slot=nil)
itemconfiginfo('crosshairs', slot)
end
crosshairs_off()
click to toggle source
def crosshairs_off
tk_send_without_enc('crosshairs', 'off')
self
end
crosshairs_on()
click to toggle source
def crosshairs_on
tk_send_without_enc('crosshairs', 'on')
self
end
crosshairs_toggle()
click to toggle source
def crosshairs_toggle
tk_send_without_enc('crosshairs', 'toggle')
self
end
current_axis_configinfo(id, slot=nil)
click to toggle source
def current_axis_configinfo(id, slot=nil)
current_itemconfiginfo(['axis', tagid(id)], slot)
end
current_bar_configinfo(id, slot=nil)
click to toggle source
def current_bar_configinfo(id, slot=nil)
current_itemconfiginfo(['bar', tagid(id)], slot)
end
current_crosshairs_configinfo(slot=nil)
click to toggle source
def current_crosshairs_configinfo(slot=nil)
current_itemconfiginfo('crosshairs', slot)
end
current_element_configinfo(id, slot=nil)
click to toggle source
def current_element_configinfo(id, slot=nil)
current_itemconfiginfo(['element', tagid(id)], slot)
end
current_gridline_configinfo(slot=nil)
click to toggle source
def current_gridline_configinfo(slot=nil)
current_itemconfiginfo('grid', slot)
end
current_legend_configinfo(slot=nil)
click to toggle source
def current_legend_configinfo(slot=nil)
current_itemconfiginfo('legend', slot)
end
current_line_configinfo(id, slot=nil)
click to toggle source
def current_line_configinfo(id, slot=nil)
current_itemconfiginfo(['line', tagid(id)], slot)
end
current_marker_configinfo(id, slot=nil)
click to toggle source
def current_marker_configinfo(id, slot=nil)
current_itemconfiginfo(['marker', tagid(id)], slot)
end
current_pen_configinfo(id, slot=nil)
click to toggle source
def current_pen_configinfo(id, slot=nil)
current_itemconfiginfo(['pen', tagid(id)], slot)
end
current_postscript_configinfo(slot=nil)
click to toggle source
def current_postscript_configinfo(slot=nil)
current_itemconfiginfo('postscript', slot)
end
current_x2axis_configinfo(slot=nil)
click to toggle source
def current_x2axis_configinfo(slot=nil)
current_itemconfiginfo('x2axis', slot)
end
current_xaxis_configinfo(slot=nil)
click to toggle source
def current_xaxis_configinfo(slot=nil)
current_itemconfiginfo('xaxis', slot)
end
current_y2axis_configinfo(slot=nil)
click to toggle source
def current_y2axis_configinfo(slot=nil)
current_itemconfiginfo('y2axis', slot)
end
current_yaxis_configinfo(slot=nil)
click to toggle source
def current_yaxis_configinfo(slot=nil)
current_itemconfiginfo('yaxis', slot)
end
element_activate(*args)
click to toggle source
def element_activate(*args)
if args.empty?
list(tk_send('element', 'activate')).collect{|elem|
Tk::BLT::PlotComponent::Element.id2obj(self, elem)
}
else
id = args.shift
tk_send('element', 'activate', tagid(id), *args)
end
end
element_bind(tag, context, *args)
click to toggle source
def element_bind(tag, context, *args)
_component_bind('element', tag, context, *args)
end
element_bind_append(tag, context, *args)
click to toggle source
def element_bind_append(tag, context, *args)
_component_bind_append('element', tag, context, *args)
end
element_bind_remove(tag, context)
click to toggle source
def element_bind_remove(tag, context)
_component_bind_remove('element', tag, context)
end
element_bindinfo(tag, context=nil)
click to toggle source
def element_bindinfo(tag, context=nil)
_component_bindinfo('element', tag, context)
end
element_cget(id, option)
click to toggle source
def element_cget(id, option)
itemcget(['element', tagid(id)], option)
end
element_cget_strict(id, option)
click to toggle source
def element_cget_strict(id, option)
itemcget_strict(['element', tagid(id)], option)
end
element_cget_tkstring(id, option)
click to toggle source
def element_cget_tkstring(id, option)
itemcget_tkstring(['element', tagid(id)], option)
end
element_closest(x, y, var, *args)
click to toggle source
def element_closest(x, y, var, *args)
if args[-1].kind_of?(Hash)
keys = args.pop
bool(tk_send('element', 'closest', x, y, var,
*(hash_kv(keys).concat(args.collect{|id| tagid(id)}))))
else
bool(tk_send('element', 'closest', x, y, var,
*(args.collect{|id| tagid(id)})))
end
end
element_configinfo(id, slot=nil)
click to toggle source
def element_configinfo(id, slot=nil)
itemconfiginfo(['element', tagid(id)], slot)
end
element_create(id=nil, keys={})
click to toggle source
def element_create(id=nil, keys={})
Tk::BLT::PlotComponent::Element.new(self, tagid(id), keys)
end
element_deactivate(*ids)
click to toggle source
def element_deactivate(*ids)
tk_send('element', 'deactivate', *(ids.collect{|id| tagid(id)}))
self
end
element_delete(*ids)
click to toggle source
def element_delete(*ids)
tk_send('element', 'delete', *(ids.collect{|id| tagid(id)}))
self
end
element_exist?(id)
click to toggle source
def element_exist?(id)
bool(tk_send('element', 'exists', tagid(id)))
end
element_names(*pats)
click to toggle source
def element_names(*pats)
simplelist(tk_send('element', 'names',
*(pats.collect{|pat| tagid(pat)}))).collect{|elem|
Tk::BLT::PlotComponent::Element.id2obj(self, elem)
}
end
element_show(*names)
click to toggle source
def element_show(*names)
if names.empty?
simplelist(tk_send('element', 'show'))
else
tk_send('element', 'show', *(names.collect{|n| tagid(n)}))
self
end
end
element_type(id)
click to toggle source
def element_type(id)
tk_send('element', 'type', tagid(id))
end
gridline_cget(option)
click to toggle source
def gridline_cget(option)
itemcget('grid', option)
end
gridline_cget_strict(option)
click to toggle source
def gridline_cget_strict(option)
itemcget_strict('grid', option)
end
gridline_cget_tkstring(option)
click to toggle source
def gridline_cget_tkstring(option)
itemcget_tkstring('grid', option)
end
gridline_configinfo(slot=nil)
click to toggle source
def gridline_configinfo(slot=nil)
itemconfiginfo('grid', slot)
end
gridline_off()
click to toggle source
def gridline_off
tk_send_without_enc('grid', 'off')
self
end
gridline_on()
click to toggle source
def gridline_on
tk_send_without_enc('grid', 'on')
self
end
gridline_toggle()
click to toggle source
def gridline_toggle
tk_send_without_enc('grid', 'toggle')
self
end
legend_activate(*pats)
click to toggle source
def legend_activate(*pats)
list(tk_send('legend', 'activate',
*(pats.collect{|pat| tagid(pat)}))).collect{|elem|
Tk::BLT::PlotComponent::Element.id2obj(self, elem)
}
end
legend_bind(tag, context, *args)
click to toggle source
def legend_bind(tag, context, *args)
_component_bind('legend', tag, context, *args)
end
legend_bind_append(tag, context, *args)
click to toggle source
def legend_bind_append(tag, context, *args)
_component_bind_append('legend', tag, context, *args)
end
legend_bind_remove(tag, context)
click to toggle source
def legend_bind_remove(tag, context)
_component_bind_remove('legend', tag, context)
end
legend_bindinfo(tag, context=nil)
click to toggle source
def legend_bindinfo(tag, context=nil)
_component_bindinfo('legend', tag, context)
end
legend_cget(option)
click to toggle source
def legend_cget(option)
itemcget('legend', option)
end
legend_cget_strict(option)
click to toggle source
def legend_cget_strict(option)
itemcget_strict('legend', option)
end
legend_cget_tkstring(option)
click to toggle source
def legend_cget_tkstring(option)
itemcget_tkstring('legend', option)
end
legend_configinfo(slot=nil)
click to toggle source
def legend_configinfo(slot=nil)
itemconfiginfo('legend', slot)
end
legend_deactivate(*pats)
click to toggle source
def legend_deactivate(*pats)
list(tk_send('legend', 'deactivate',
*(pats.collect{|pat| tagid(pat)}))).collect{|elem|
Tk::BLT::PlotComponent::Element.id2obj(self, elem)
}
end
legend_get(pos, y=nil)
click to toggle source
def legend_get(pos, y=nil)
if y
Tk::BLT::PlotComponent::Element.id2obj(self,
tk_send('legend', 'get',
_at(pos, y)))
else
Tk::BLT::PlotComponent::Element.id2obj(self,
tk_send('legend', 'get', pos))
end
end
legend_window_create(parent=nil, keys=nil)
click to toggle source
def legend_window_create(parent=nil, keys=nil)
if parent.kind_of?(Hash)
keys = _symbolkey2str(parent)
parent = keys.delete('parent')
widgetname = keys.delete('widgetname')
keys.delete('without_creating')
elsif keys
keys = _symbolkey2str(keys)
widgetname = keys.delete('widgetname')
keys.delete('without_creating')
end
legend = self.class.new(parent, :without_creating=>true,
:widgetname=>widgetname)
class << legend
def __destroy_hook__
TkCore::INTERP.tk_windows.delete(@path)
end
end
if keys
self.legend_configure(keys.update('position'=>legend))
else
self.legend_configure('position'=>legend)
end
legend
end
line_activate(*args)
click to toggle source
def line_activate(*args)
if args.empty?
list(tk_send('line', 'activate')).collect{|elem|
Tk::BLT::PlotComponent::Element.id2obj(self, elem)
}
else
id = args.shift
tk_send('line', 'activate', tagid(id), *args)
end
end
line_bind(tag, context, *args)
click to toggle source
def line_bind(tag, context, *args)
_component_bind('line', tag, context, *args)
end
line_bind_append(tag, context, *args)
click to toggle source
def line_bind_append(tag, context, *args)
_component_bind_append('line', tag, context, *args)
end
line_bind_remove(tag, context)
click to toggle source
def line_bind_remove(tag, context)
_component_bind_remove('line', tag, context)
end
line_bindinfo(tag, context=nil)
click to toggle source
def line_bindinfo(tag, context=nil)
_component_bindinfo('line', tag, context)
end
line_cget(id, option)
click to toggle source
def line_cget(id, option)
itemcget(['line', tagid(id)], option)
end
line_cget_strict(id, option)
click to toggle source
def line_cget_strict(id, option)
itemcget_strict(['line', tagid(id)], option)
end
line_cget_tkstring(id, option)
click to toggle source
def line_cget_tkstring(id, option)
itemcget_tkstring(['line', tagid(id)], option)
end
line_closest(x, y, var, *args)
click to toggle source
def line_closest(x, y, var, *args)
if args[-1].kind_of?(Hash)
keys = args.pop
bool(tk_send('line', 'closest', x, y, var,
*(hash_kv(keys).concat(args.collect{|id| tagid(id)}))))
else
bool(tk_send('line', 'closest', x, y, var,
*(args.collect{|id| tagid(id)})))
end
end
line_configinfo(id, slot=nil)
click to toggle source
def line_configinfo(id, slot=nil)
itemconfiginfo(['line', tagid(id)], slot)
end
line_create(id=nil, keys={})
click to toggle source
def line_create(id=nil, keys={})
Tk::BLT::PlotComponent::Line.new(self, tagid(id), keys)
end
Also aliased as: bar
line_deactivate(*ids)
click to toggle source
def line_deactivate(*ids)
tk_send('line', 'deactivate', *(ids.collect{|id| tagid(id)}))
self
end
line_delete(*ids)
click to toggle source
def line_delete(*ids)
tk_send('line', 'delete', *(ids.collect{|id| tagid(id)}))
self
end
line_exist?(id)
click to toggle source
def line_exist?(id)
bool(tk_send('line', 'exists', tagid(id)))
end
line_names(*pats)
click to toggle source
def line_names(*pats)
simplelist(tk_send('line', 'names',
*(pats.collect{|pat| tagid(pat)}))).collect{|elem|
Tk::BLT::PlotComponent::Element.id2obj(self, elem)
}
end
line_show(*names)
click to toggle source
def line_show(*names)
if names.empty?
simplelist(tk_send('line', 'show'))
else
tk_send('line', 'show', *(names.collect{|n| tagid(n)}))
self
end
end
line_type(id)
click to toggle source
def line_type(id)
tk_send('line', 'type', tagid(id))
end
marker_after(id, target=nil)
click to toggle source
def marker_after(id, target=nil)
if target
tk_send_without_enc('marker', 'after', tagid(id), tagid(target))
else
tk_send_without_enc('marker', 'after', tagid(id))
end
self
end
marker_before(id, target=None)
click to toggle source
def marker_before(id, target=None)
if target
tk_send_without_enc('marker', 'before', tagid(id), tagid(target))
else
tk_send_without_enc('marker', 'before', tagid(id))
end
self
end
marker_bind(tag, context, *args)
click to toggle source
def marker_bind(tag, context, *args)
_component_bind('marker', tag, context, *args)
end
marker_bind_append(tag, context, *args)
click to toggle source
def marker_bind_append(tag, context, *args)
_component_bind_append('marker', tag, context, *args)
end
marker_bind_remove(tag, context)
click to toggle source
def marker_bind_remove(tag, context)
_component_bind_remove('marker', tag, context)
end
marker_bindinfo(tag, context=nil)
click to toggle source
def marker_bindinfo(tag, context=nil)
_component_bindinfo('marker', tag, context)
end
marker_cget(id, option)
click to toggle source
def marker_cget(id, option)
itemcget(['marker', tagid(id)], option)
end
marker_cget_strict(id, option)
click to toggle source
def marker_cget_strict(id, option)
itemcget_strict(['marker', tagid(id)], option)
end
marker_cget_tkstring(id, option)
click to toggle source
def marker_cget_tkstring(id, option)
itemcget_tkstring(['marker', tagid(id)], option)
end
marker_configinfo(id, slot=nil)
click to toggle source
def marker_configinfo(id, slot=nil)
itemconfiginfo(['marker', tagid(id)], slot)
end
marker_create(type, keys={})
click to toggle source
def marker_create(type, keys={})
case type
when :text, 'text'
Tk::BLT::PlotComponent::TextMarker.new(self, keys)
when :line, 'line'
Tk::BLT::PlotComponent::LineMarker.new(self, keys)
when :bitmap, 'bitmap'
Tk::BLT::PlotComponent::BitmapMarker.new(self, keys)
when :image, 'image'
Tk::BLT::PlotComponent::ImageMarker.new(self, keys)
when :polygon, 'polygon'
Tk::BLT::PlotComponent::PolygonMarker.new(self, keys)
when :window, 'window'
Tk::BLT::PlotComponent::WindowMarker.new(self, keys)
else
if type.kind_of?(Tk::BLT::PlotComponent::Marker)
type.new(self, keys)
else
Tk::BLT::PlotComponent::Marker.create_type(self, type, keys)
end
end
end
marker_delete(*ids)
click to toggle source
def marker_delete(*ids)
tk_send('marker', 'delete', *(ids.collect{|id| tagid(id)}))
self
end
marker_exist?(id)
click to toggle source
def marker_exist?(id)
bool(tk_send('marker', 'exists', tagid(id)))
end
marker_names(*pats)
click to toggle source
def marker_names(*pats)
simplelist(tk_send('marker', 'names',
*(pats.collect{|pat| tagid(pat)}))).collect{|id|
Tk::BLT::PlotComponent::Marker.id2obj(self, id)
}
end
marker_type(id)
click to toggle source
def marker_type(id)
tk_send('marker', 'type', tagid(id))
end
pen_cget(id, option)
click to toggle source
def pen_cget(id, option)
itemcget(['pen', tagid(id)], option)
end
pen_cget_strict(id, option)
click to toggle source
def pen_cget_strict(id, option)
itemcget_strict(['pen', tagid(id)], option)
end
pen_cget_tkstring(id, option)
click to toggle source
def pen_cget_tkstring(id, option)
itemcget_tkstring(['pen', tagid(id)], option)
end
pen_configinfo(id, slot=nil)
click to toggle source
def pen_configinfo(id, slot=nil)
itemconfiginfo(['pen', tagid(id)], slot)
end
pen_create(id=nil, keys={})
click to toggle source
def pen_create(id=nil, keys={})
Tk::BLT::PlotComponent::Pen.new(self, tagid(id), keys)
end
pen_delete(*ids)
click to toggle source
def pen_delete(*ids)
tk_send('pen', 'delete', *(ids.collect{|id| tagid(id)}))
self
end
pen_names(*pats)
click to toggle source
def pen_names(*pats)
simplelist(tk_send('pen', 'names',
*(pats.collect{|pat| tagid(pat)}))).collect{|pen|
Tk::BLT::PlotComponent::Pen.id2obj(self, pen)
}
end
postscript_cget(option)
click to toggle source
def postscript_cget(option)
itemcget('postscript', option)
end
postscript_cget_strict(option)
click to toggle source
def postscript_cget_strict(option)
itemcget_strict('postscript', option)
end
postscript_cget_tkstring(option)
click to toggle source
def postscript_cget_tkstring(option)
itemcget_tkstring('postscript', option)
end
postscript_configinfo(slot=nil)
click to toggle source
def postscript_configinfo(slot=nil)
itemconfiginfo('postscript', slot)
end
postscript_configure(slot, value=None)
click to toggle source
def postscript_configure(slot, value=None)
itemconfigure('postscript', slot, value)
end
postscript_output(file=nil, keys={})
click to toggle source
def postscript_output(file=nil, keys={})
if file.kind_of?(Hash)
keys = file
file = nil
end
if file
tk_send('postscript', 'output', file, keys)
self
else
tk_send('postscript', 'output', keys)
end
end
tagid(tag)
click to toggle source
def tagid(tag)
if tag.kind_of?(Axis) ||
tag.kind_of?(Crosshairs) ||
tag.kind_of?(Element) ||
tag.kind_of?(GridLine) ||
tag.kind_of?(Legend) ||
tag.kind_of?(Pen) ||
tag.kind_of?(Postscript) ||
tag.kind_of?(Marker)
tag.id
else
tag
end
end
x2axis_bind(context, *args)
click to toggle source
def x2axis_bind(context, *args)
if TkComm._callback_entry?(args[0]) || !block_given?
cmd = args.shift
else
cmd = Proc.new
end
_bind([path, 'x2axis', 'bind'], context, cmd, *args)
self
end
x2axis_bind_append(context, *args)
click to toggle source
def x2axis_bind_append(context, *args)
if TkComm._callback_entry?(args[0]) || !block_given?
cmd = args.shift
else
cmd = Proc.new
end
_bind_append([path, 'x2axis', 'bind'], context, cmd, *args)
self
end
x2axis_bind_remove(context)
click to toggle source
def x2axis_bind_remove(context)
_bind_remove([path, 'x2axis', 'bind'], context)
self
end
x2axis_bindinfo(context=nil)
click to toggle source
def x2axis_bindinfo(context=nil)
_bindinfo([path, 'x2axis', 'bind'], context)
end
x2axis_cget(option)
click to toggle source
def x2axis_cget(option)
itemcget('x2axis', option)
end
x2axis_cget_strict(option)
click to toggle source
def x2axis_cget_strict(option)
itemcget_strict('x2axis', option)
end
x2axis_cget_tkstring(option)
click to toggle source
def x2axis_cget_tkstring(option)
itemcget_tkstring('x2axis', option)
end
x2axis_configinfo(slot=nil)
click to toggle source
def x2axis_configinfo(slot=nil)
itemconfiginfo('x2axis', slot)
end
x2axis_limits()
click to toggle source
def x2axis_limits
list(tk_send('x2axis', 'limits'))
end
x2axis_use(target=nil)
click to toggle source
def x2axis_use(target=nil)
if target
Tk::BLT::PlotComponent::Axis.id2obj(self,
tk_send('x2axis', 'use',
tagid(target)))
else
Tk::BLT::PlotComponent::Axis.id2obj(self, tk_send('x2axis', 'use'))
end
end
xaxis_bind(context, *args)
click to toggle source
def xaxis_bind(context, *args)
if TkComm._callback_entry?(args[0]) || !block_given?
cmd = args.shift
else
cmd = Proc.new
end
_bind([path, 'xaxis', 'bind'], context, cmd, *args)
self
end
xaxis_bind_append(context, *args)
click to toggle source
def xaxis_bind_append(context, *args)
if TkComm._callback_entry?(args[0]) || !block_given?
cmd = args.shift
else
cmd = Proc.new
end
_bind_append([path, 'xaxis', 'bind'], context, cmd, *args)
self
end
xaxis_bind_remove(context)
click to toggle source
def xaxis_bind_remove(context)
_bind_remove([path, 'xaxis', 'bind'], context)
self
end
xaxis_bindinfo(context=nil)
click to toggle source
def xaxis_bindinfo(context=nil)
_bindinfo([path, 'xaxis', 'bind'], context)
end
xaxis_cget(option)
click to toggle source
def xaxis_cget(option)
itemcget('xaxis', option)
end
xaxis_cget_strict(option)
click to toggle source
def xaxis_cget_strict(option)
itemcget_strict('xaxis', option)
end
xaxis_cget_tkstring(option)
click to toggle source
def xaxis_cget_tkstring(option)
itemcget_tkstring('xaxis', option)
end
xaxis_configinfo(slot=nil)
click to toggle source
def xaxis_configinfo(slot=nil)
itemconfiginfo('xaxis', slot)
end
xaxis_limits()
click to toggle source
def xaxis_limits
list(tk_send('xaxis', 'limits'))
end
xaxis_use(target=nil)
click to toggle source
def xaxis_use(target=nil)
if target
Tk::BLT::PlotComponent::Axis.id2obj(self,
tk_send('xaxis', 'use',
tagid(target)))
else
Tk::BLT::PlotComponent::Axis.id2obj(self, tk_send('xaxis', 'use'))
end
end
y2axis_bind(context, *args)
click to toggle source
def y2axis_bind(context, *args)
if TkComm._callback_entry?(args[0]) || !block_given?
cmd = args.shift
else
cmd = Proc.new
end
_bind([path, 'y2axis', 'bind'], context, cmd, *args)
self
end
y2axis_bind_append(context, *args)
click to toggle source
def y2axis_bind_append(context, *args)
if TkComm._callback_entry?(args[0]) || !block_given?
cmd = args.shift
else
cmd = Proc.new
end
_bind_append([path, 'y2axis', 'bind'], context, cmd, *args)
self
end
y2axis_bind_remove(context)
click to toggle source
def y2axis_bind_remove(context)
_bind_remove([path, 'y2axis', 'bind'], context)
self
end
y2axis_bindinfo(context=nil)
click to toggle source
def y2axis_bindinfo(context=nil)
_bindinfo([path, 'y2axis', 'bind'], context)
end
y2axis_cget(option)
click to toggle source
def y2axis_cget(option)
itemcget('y2axis', option)
end
y2axis_cget_strict(option)
click to toggle source
def y2axis_cget_strict(option)
itemcget_strict('y2axis', option)
end
y2axis_cget_tkstring(option)
click to toggle source
def y2axis_cget_tkstring(option)
itemcget_tkstring('y2axis', option)
end
y2axis_configinfo(slot=nil)
click to toggle source
def y2axis_configinfo(slot=nil)
axis_configinfo('y2axis', slot)
end
y2axis_limits()
click to toggle source
def y2axis_limits
list(tk_send('y2axis', 'limits'))
end
y2axis_use(target=nil)
click to toggle source
def y2axis_use(target=nil)
if target
Tk::BLT::PlotComponent::Axis.id2obj(self,
tk_send('y2axis', 'use',
tagid(target)))
else
Tk::BLT::PlotComponent::Axis.id2obj(self, tk_send('y2axis', 'use'))
end
end
yaxis_bind(context, *args)
click to toggle source
def yaxis_bind(context, *args)
if TkComm._callback_entry?(args[0]) || !block_given?
cmd = args.shift
else
cmd = Proc.new
end
_bind([path, 'yaxis', 'bind'], context, cmd, *args)
self
end
yaxis_bind_append(context, *args)
click to toggle source
def yaxis_bind_append(context, *args)
if TkComm._callback_entry?(args[0]) || !block_given?
cmd = args.shift
else
cmd = Proc.new
end
_bind_append([path, 'yaxis', 'bind'], context, cmd, *args)
self
end
yaxis_bind_remove(context)
click to toggle source
def yaxis_bind_remove(context)
_bind_remove([path, 'yaxis', 'bind'], context)
self
end
yaxis_bindinfo(context=nil)
click to toggle source
def yaxis_bindinfo(context=nil)
_bindinfo([path, 'yaxis', 'bind'], context)
end
yaxis_cget(option)
click to toggle source
def yaxis_cget(option)
itemcget('yaxis', option)
end
yaxis_cget_strict(option)
click to toggle source
def yaxis_cget_strict(option)
itemcget_strict('yaxis', option)
end
yaxis_cget_tkstring(option)
click to toggle source
def yaxis_cget_tkstring(option)
itemcget_tkstring('yaxis', option)
end
yaxis_configinfo(slot=nil)
click to toggle source
def yaxis_configinfo(slot=nil)
itemconfiginfo('yaxis', slot)
end
yaxis_limits()
click to toggle source
def yaxis_limits
list(tk_send('yaxis', 'limits'))
end
yaxis_use(target=nil)
click to toggle source
def yaxis_use(target=nil)
if target
Tk::BLT::PlotComponent::Axis.id2obj(self,
tk_send('yaxis', 'use',
tagid(target)))
else
Tk::BLT::PlotComponent::Axis.id2obj(self, tk_send('yaxis', 'use'))
end
end