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
#add_moved_by, #attach_frame, #detach_frame, #is_pack?, #is_place?, #refresh, #unmap
Methods included from TkMovable
#moving_do_move_obj, #moving_do_press, #start_moving, #stop_moving
Constructor Details
#initialize(parent = nil, frame = nil, length = 10, slen = 5, user_control = true, keys = nil) ⇒ AGTkSplittedFrames
Returns a new instance of AGTkSplittedFrames.
332 333 334 335 336 337 338 339 340 341 342 343 344 |
# File 'lib/a-tkcommons.rb', line 332 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.
330 331 332 |
# File 'lib/a-tkcommons.rb', line 330 def frame1 @frame1 end |
#frame2 ⇒ Object (readonly)
Returns the value of attribute frame2.
331 332 333 |
# File 'lib/a-tkcommons.rb', line 331 def frame2 @frame2 end |
Instance Method Details
#maximize(_frame) ⇒ Object
346 347 348 349 350 351 |
# File 'lib/a-tkcommons.rb', line 346 def maximize(_frame) p = TkWinfo.parent(@frame) if p.kind_of?(AGTkSplittedFrames) p.maximize(@frame) end end |
#minimize(_frame) ⇒ Object
353 354 355 356 357 358 |
# File 'lib/a-tkcommons.rb', line 353 def minimize(_frame) p = TkWinfo.parent(@frame) if p.kind_of?(AGTkSplittedFrames) p.minimize(@frame) end end |