class TkResizingTitledFrame

Public Class Methods

new(parent=nil, *args) click to toggle source
Calls superclass method
# File lib/a-tkcommons.rb, line 1937
def initialize(parent=nil, *args)
  super(parent, *args)
  @resizing_label=TkLabel.new(self, Arcadia.style('label')){
    text '-'
    image Arcadia.image_res(EXPAND_LIGHT_GIF)
  }.pack('side'=> 'right','anchor'=> 's')
  start_resizing(@resizing_label, self)
end