wxSizerItem.3erl - Man Page

Functions for wxSizerItem class

Description

The wxSizerItem class is used to track the position, size and other attributes of each item managed by a wxSizer.

It is not usually necessary to use this class because the sizer elements can also be identified by their positions or window or sizer pointers but sometimes it may be more convenient to use it directly.

wxWidgets docs: wxSizerItem

Data Types

wxSizerItem() = wx:wx_object()

Exports

new(Window) -> wxSizerItem()
Types:

Window = wxWindow:wxWindow() | wxSizer:wxSizer()

new(Width, Height) -> wxSizerItem()
new(Window, Flags) -> wxSizerItem()
new(Window, Height :: [Option]) -> wxSizerItem()
Types:

Window = wxWindow:wxWindow() | wxSizer:wxSizer()
Option =
   {proportion, integer()} |
   {flag, integer()} |
   {border, integer()} |
   {userData, wx:wx_object()}

new(Width, Height, Options :: [Option]) -> wxSizerItem()
Types:

Width = Height = integer()
Option =
   {proportion, integer()} |
   {flag, integer()} |
   {border, integer()} |
   {userData, wx:wx_object()}

Construct a sizer item for tracking a spacer.

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

Deletes the user data and subsizer, if any.

calcMin(This) -> {W :: integer(), H :: integer()}
Types:

This = wxSizerItem()

Calculates the minimum desired size for the item, including any space needed by borders.

deleteWindows(This) -> ok
Types:

This = wxSizerItem()

Destroy the window or the windows in a subsizer, depending on the type of item.

detachSizer(This) -> ok
Types:

This = wxSizerItem()

Enable deleting the SizerItem without destroying the contained sizer.

getBorder(This) -> integer()
Types:

This = wxSizerItem()

Return the border attribute.

getFlag(This) -> integer()
Types:

This = wxSizerItem()

Return the flags attribute.

See wxSizer flags list (not implemented in wx) for details.

getMinSize(This) -> {W :: integer(), H :: integer()}
Types:

This = wxSizerItem()

Get the minimum size needed for the item.

getPosition(This) -> {X :: integer(), Y :: integer()}
Types:

This = wxSizerItem()

What is the current position of the item, as set in the last Layout.

getProportion(This) -> integer()
Types:

This = wxSizerItem()

Get the proportion item attribute.

getRatio(This) -> number()
Types:

This = wxSizerItem()

Get the ratio item attribute.

getRect(This) ->
           {X :: integer(),
            Y :: integer(),
            W :: integer(),
            H :: integer()}
Types:

This = wxSizerItem()

Get the rectangle of the item on the parent window, excluding borders.

getSize(This) -> {W :: integer(), H :: integer()}
Types:

This = wxSizerItem()

Get the current size of the item, as set in the last Layout.

getSizer(This) -> wxSizer:wxSizer()
Types:

This = wxSizerItem()

If this item is tracking a sizer, return it.

NULL otherwise.

getSpacer(This) -> {W :: integer(), H :: integer()}
Types:

This = wxSizerItem()

If this item is tracking a spacer, return its size.

getUserData(This) -> wx:wx_object()
Types:

This = wxSizerItem()

Get the userData item attribute.

getWindow(This) -> wxWindow:wxWindow()
Types:

This = wxSizerItem()

If this item is tracking a window then return it.

NULL otherwise.

isSizer(This) -> boolean()
Types:

This = wxSizerItem()

Is this item a sizer?

isShown(This) -> boolean()
Types:

This = wxSizerItem()

Returns true if this item is a window or a spacer and it is shown or if this item is a sizer and not all of its elements are hidden.

In other words, for sizer items, all of the child elements must be hidden for the sizer itself to be considered hidden.

As an exception, if the wxRESERVE_SPACE_EVEN_IF_HIDDEN flag was used for this sizer item, then isShown/1 always returns true for it (see wxSizerFlags::ReserveSpaceEvenIfHidden() (not implemented in wx)).

isSpacer(This) -> boolean()
Types:

This = wxSizerItem()

Is this item a spacer?

isWindow(This) -> boolean()
Types:

This = wxSizerItem()

Is this item a window?

setBorder(This, Border) -> ok
Types:

This = wxSizerItem()
Border = integer()

Set the border item attribute.

setDimension(This, Pos, Size) -> ok
Types:

This = wxSizerItem()
Pos = {X :: integer(), Y :: integer()}
Size = {W :: integer(), H :: integer()}

Set the position and size of the space allocated to the sizer, and adjust the position and size of the item to be within that space taking alignment and borders into account.

setFlag(This, Flag) -> ok
Types:

This = wxSizerItem()
Flag = integer()

Set the flag item attribute.

setInitSize(This, X, Y) -> ok
Types:

This = wxSizerItem()
X = Y = integer()

Sets the minimum size to be allocated for this item.

This is identical to setMinSize/3, prefer to use the other function, as its name is more clear.

setMinSize(This, Size) -> ok
Types:

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

Sets the minimum size to be allocated for this item.

If this item is a window, the size is also passed to wxWindow:setMinSize/2.

setMinSize(This, X, Y) -> ok
Types:

This = wxSizerItem()
X = Y = integer()

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

setProportion(This, Proportion) -> ok
Types:

This = wxSizerItem()
Proportion = integer()

Set the proportion item attribute.

setRatio(This, Ratio) -> ok
setRatio(This, Size) -> ok
Types:

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

setRatio(This, Width, Height) -> ok
Types:

This = wxSizerItem()
Width = Height = integer()

Set the ratio item attribute.

assignSizer(This, Sizer) -> ok
Types:

This = wxSizerItem()
Sizer = wxSizer:wxSizer()

Set the sizer tracked by this item.

Old sizer, if any, is deleted.

assignSpacer(This, Size) -> ok
Types:

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

Set the size of the spacer tracked by this item.

Old spacer, if any, is deleted.

assignSpacer(This, W, H) -> ok
Types:

This = wxSizerItem()
W = H = integer()

assignWindow(This, Window) -> ok
Types:

This = wxSizerItem()
Window = wxWindow:wxWindow()

Set the window to be tracked by this item.

Note: This is a low-level method which is dangerous if used incorrectly, avoid using it if possible, i.e. if higher level methods such as wxSizer:replace/4 can be used instead.

If the sizer item previously contained a window, it is dissociated from the sizer containing this sizer item (if any), but this object doesn't have the pointer to the containing sizer and so it's the caller's responsibility to call wxWindow:setContainingSizer/2 on window. Failure to do this can result in memory corruption when the window is destroyed later, so it is crucial to not forget to do it.

Also note that the previously contained window is not deleted, so it's also the callers responsibility to do it, if necessary.

show(This, Show) -> ok
Types:

This = wxSizerItem()
Show = boolean()

Set the show item attribute, which sizers use to determine if the item is to be made part of the layout or not.

If the item is tracking a window then it is shown or hidden as needed.

Info

wx 2.4.1 wxWidgets team. Erlang Module Definition