Class: AGTkSplittedFrames
- Inherits:
-
TkFrameAdapter
- Object
- TkFrame
- TkFrameAdapter
- AGTkSplittedFrames
- Defined in:
- lib/a-tkcommons.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#frame1 ⇒ Object
readonly
Returns the value of attribute frame1.
-
#frame2 ⇒ Object
readonly
Returns the value of attribute frame2.
Attributes inherited from TkFrameAdapter
Instance Method Summary collapse
-
#initialize(parent = nil, frame = nil, length = 10, slen = 5, user_control = true, keys = nil) ⇒ AGTkSplittedFrames
constructor
A new instance of AGTkSplittedFrames.
- #maximize(_frame) ⇒ Object
- #minimize(_frame) ⇒ Object
Methods inherited from TkFrameAdapter
#attach_frame, #detach_frame, #is_pack?, #is_place?, #is_undefined?, #layout_manager, #map, #refresh_layout_manager, #unmap
Constructor Details
#initialize(parent = nil, frame = nil, length = 10, slen = 5, user_control = true, keys = nil) ⇒ AGTkSplittedFrames
Returns a new instance of AGTkSplittedFrames.
379 380 381 382 383 384 385 386 387 388 389 390 391 |
# File 'lib/a-tkcommons.rb', line 379 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
#frame1 ⇒ Object (readonly)
Returns the value of attribute frame1.
377 378 379 |
# File 'lib/a-tkcommons.rb', line 377 def frame1 @frame1 end |
#frame2 ⇒ Object (readonly)
Returns the value of attribute frame2.
378 379 380 |
# File 'lib/a-tkcommons.rb', line 378 def frame2 @frame2 end |
Instance Method Details
#maximize(_frame) ⇒ Object
393 394 395 396 397 398 |
# File 'lib/a-tkcommons.rb', line 393 def maximize(_frame) p = TkWinfo.parent(@frame) if p.kind_of?(AGTkSplittedFrames) p.maximize(@frame) end end |
#minimize(_frame) ⇒ Object
400 401 402 403 404 405 |
# File 'lib/a-tkcommons.rb', line 400 def minimize(_frame) p = TkWinfo.parent(@frame) if p.kind_of?(AGTkSplittedFrames) p.minimize(@frame) end end |