Go to main content

man pages section 3: Extended Library Functions, Volume 1

Exit Print View

Updated: Wednesday, July 27, 2022
 
 

wxSashLayoutWindow (3erl)

Name

wxSashLayoutWindow - Functions for wxSashLayoutWindow class

Synopsis

Please see following description for synopsis

Description

wxSashLayoutWindow(3)      Erlang Module Definition      wxSashLayoutWindow(3)



NAME
       wxSashLayoutWindow - Functions for wxSashLayoutWindow class

DESCRIPTION
       wxSashLayoutWindow  responds  to  OnCalculateLayout events generated by
       wxLayoutAlgorithm. It allows the application to use simple accessors to
       specify  how  the  window  should  be  laid  out, rather than having to
       respond to events.

       The fact that the class derives from wxSashWindow allows sashes  to  be
       used if required, to allow the windows to be user-resizable.

       The  documentation  for  wxLayoutAlgorithm explains the purpose of this
       class in more detail.

       For the window styles see wxSashWindow.

       This class handles the EVT_QUERY_LAYOUT_INFO  and  EVT_CALCULATE_LAYOUT
       events  for you. However, if you use sashes, see wxSashWindow for rele-
       vant event information.  See  also  wxLayoutAlgorithm  for  information
       about the layout events.

       See: wxLayoutAlgorithm, wxSashWindow, Overview events

       This class is derived (and can use functions) from: wxSashWindow wxWin-
       dow wxEvtHandler

       wxWidgets docs: wxSashLayoutWindow

DATA TYPES
       wxSashLayoutWindow() = wx:wx_object()

EXPORTS
       new() -> wxSashLayoutWindow()

              Default ctor.

       new(Parent) -> wxSashLayoutWindow()

              Types:

                 Parent = wxWindow:wxWindow()

       new(Parent, Options :: [Option]) -> wxSashLayoutWindow()

              Types:

                 Parent = wxWindow:wxWindow()
                 Option =
                     {id, integer()} |
                     {pos, {X :: integer(), Y :: integer()}} |
                     {size, {W :: integer(), H :: integer()}} |
                     {style, integer()}

              Constructs a sash layout window, which  can  be  a  child  of  a
              frame, dialog or any other non-control window.

       create(This, Parent) -> boolean()

              Types:

                 This = wxSashLayoutWindow()
                 Parent = wxWindow:wxWindow()

       create(This, Parent, Options :: [Option]) -> boolean()

              Types:

                 This = wxSashLayoutWindow()
                 Parent = wxWindow:wxWindow()
                 Option =
                     {id, integer()} |
                     {pos, {X :: integer(), Y :: integer()}} |
                     {size, {W :: integer(), H :: integer()}} |
                     {style, integer()}

              Initializes  a  sash  layout  window,  which can be a child of a
              frame, dialog or any other non-control window.

       getAlignment(This) -> wx:wx_enum()

              Types:

                 This = wxSashLayoutWindow()

              Returns the alignment of the window: one of wxLAYOUT_TOP, wxLAY-
              OUT_LEFT, wxLAYOUT_RIGHT, wxLAYOUT_BOTTOM.

       getOrientation(This) -> wx:wx_enum()

              Types:

                 This = wxSashLayoutWindow()

              Returns  the orientation of the window: one of wxLAYOUT_HORIZON-
              TAL, wxLAYOUT_VERTICAL.

       setAlignment(This, Alignment) -> ok

              Types:

                 This = wxSashLayoutWindow()
                 Alignment = wx:wx_enum()

              Sets the alignment of the window (which edge  of  the  available
              parent client area the window is attached to).

              alignment is one of wxLAYOUT_TOP, wxLAYOUT_LEFT, wxLAYOUT_RIGHT,
              wxLAYOUT_BOTTOM.

       setDefaultSize(This, Size) -> ok

              Types:

                 This = wxSashLayoutWindow()
                 Size = {W :: integer(), H :: integer()}

              Sets the default dimensions of the window.

              The dimension other than the orientation will be fixed  to  this
              value,  and  the  orientation  dimension will be ignored and the
              window stretched to fit the available space.

       setOrientation(This, Orientation) -> ok

              Types:

                 This = wxSashLayoutWindow()
                 Orientation = wx:wx_enum()

              Sets the orientation of the window  (the  direction  the  window
              will stretch in, to fill the available parent client area).

              orientation is one of wxLAYOUT_HORIZONTAL, wxLAYOUT_VERTICAL.

       destroy(This :: wxSashLayoutWindow()) -> ok

              Destroys the object.



wxWidgets team.                    wx 2.1.1              wxSashLayoutWindow(3)