Class: AGTkSplittedFrames

Inherits:
TkFrameAdapter show all
Defined in:
lib/a-tkcommons.rb

Direct Known Subclasses

AGTkOSplittedFrames, AGTkVSplittedFrames

Instance Attribute Summary collapse

Attributes inherited from TkFrameAdapter

#frame

Instance Method Summary collapse

Methods inherited from TkFrameAdapter

#attach_frame, #detach_frame, #is_pack?, #is_place?, #refresh, #unmap

Constructor Details

#initialize(parent = nil, frame = nil, length = 10, slen = 5, user_control = true, keys = nil) ⇒ AGTkSplittedFrames

Returns a new instance of AGTkSplittedFrames.



335
336
337
338
339
340
341
342
343
344
345
346
347
# File 'lib/a-tkcommons.rb', line 335

def initialize(parent=nil, frame=nil, length=10, slen=5, user_control=true, keys=nil)
#    if keys.nil?
#      keys = Hash.new
#    end
#    keys.update(Arcadia.style('panel'))
  super(parent, keys)
  @parent = parent
  @slen = slen
  @user_control = user_control
  if frame
    self.attach_frame(frame)
  end
end

Instance Attribute Details

#frame1Object (readonly)

Returns the value of attribute frame1.



333
334
335
# File 'lib/a-tkcommons.rb', line 333

def frame1
  @frame1
end

#frame2Object (readonly)

Returns the value of attribute frame2.



334
335
336
# File 'lib/a-tkcommons.rb', line 334

def frame2
  @frame2
end

Instance Method Details

#maximize(_frame) ⇒ Object



349
350
351
352
353
354
# File 'lib/a-tkcommons.rb', line 349

def maximize(_frame)
  p = TkWinfo.parent(@frame)
  if p.kind_of?(AGTkSplittedFrames)
    p.maximize(@frame)
  end
end

#minimize(_frame) ⇒ Object



356
357
358
359
360
361
# File 'lib/a-tkcommons.rb', line 356

def minimize(_frame)
  p = TkWinfo.parent(@frame)
  if p.kind_of?(AGTkSplittedFrames)
    p.minimize(@frame)
  end
end