Class: Wx::AUI::AuiPaneLayoutInfo
- Inherits:
-
AuiDockLayoutInfo
- Object
- AuiDockLayoutInfo
- Wx::AUI::AuiPaneLayoutInfo
- Defined in:
- lib/wx/doc/gen/aui/aui_manager.rb
Overview
This class is untracked and should not be derived from nor instances extended!
Description of user-modifiable pane layout information.
This struct is used with AuiSerializer and AuiDeserializer to store the pane layout. Its fields, including the inherited ones from AuiDockLayoutInfo, have the same meaning as the corresponding fields in AuiPaneInfo (with the exception of is_maximized and is_hidden, which rather correspond to the individual bits of its state field), but it doesn’t contain the fields that it wouldn’t make sense to serialize.
Instance Method Summary collapse
-
#floating_pos ⇒ Wx::Point
Position of the pane when floating, may be invalid.
-
#floating_pos=(val) ⇒ void
Position of the pane when floating, may be invalid.
-
#floating_size ⇒ Wx::Size
Size of the pane when floating, may be invalid.
-
#floating_size=(val) ⇒ void
Size of the pane when floating, may be invalid.
-
#initialize(name) ⇒ Wx::AUI::AuiPaneLayoutInfo
constructor
Ctor sets the name, which is always required.
-
#is_maximized ⇒ Boolean
True if the pane is currently maximized.
-
#is_maximized=(val) ⇒ void
True if the pane is currently maximized.
-
#name ⇒ String
Unique name of the pane.
-
#name=(val) ⇒ void
Unique name of the pane.
Methods inherited from AuiDockLayoutInfo
#dock_direction, #dock_direction=, #dock_layer, #dock_layer=, #dock_pos, #dock_pos=, #dock_proportion, #dock_proportion=, #dock_row, #dock_row=, #dock_size, #dock_size=
Constructor Details
#initialize(name) ⇒ Wx::AUI::AuiPaneLayoutInfo
Ctor sets the name, which is always required.
661 |
# File 'lib/wx/doc/gen/aui/aui_manager.rb', line 661 def initialize(name) end |
Instance Method Details
#floating_pos ⇒ Wx::Point
Position of the pane when floating, may be invalid.
626 |
# File 'lib/wx/doc/gen/aui/aui_manager.rb', line 626 def floating_pos; end |
#floating_pos=(val) ⇒ void
This method returns an undefined value.
Position of the pane when floating, may be invalid.
632 |
# File 'lib/wx/doc/gen/aui/aui_manager.rb', line 632 def floating_pos=(val); end |
#floating_size ⇒ Wx::Size
Size of the pane when floating, may be invalid.
638 |
# File 'lib/wx/doc/gen/aui/aui_manager.rb', line 638 def floating_size; end |
#floating_size=(val) ⇒ void
This method returns an undefined value.
Size of the pane when floating, may be invalid.
644 |
# File 'lib/wx/doc/gen/aui/aui_manager.rb', line 644 def floating_size=(val); end |
#is_maximized ⇒ Boolean
True if the pane is currently maximized.
650 |
# File 'lib/wx/doc/gen/aui/aui_manager.rb', line 650 def is_maximized; end |
#is_maximized=(val) ⇒ void
This method returns an undefined value.
True if the pane is currently maximized.
656 |
# File 'lib/wx/doc/gen/aui/aui_manager.rb', line 656 def is_maximized=(val); end |
#name ⇒ String
Unique name of the pane.
614 |
# File 'lib/wx/doc/gen/aui/aui_manager.rb', line 614 def name; end |
#name=(val) ⇒ void
This method returns an undefined value.
Unique name of the pane.
620 |
# File 'lib/wx/doc/gen/aui/aui_manager.rb', line 620 def name=(val); end |