Erlang logo
User's Guide
Reference Manual
Release Notes
PDF
Top

wxErlang
Reference Manual
Version 1.1


Expand All
Contract All

Table of Contents

wxStatusBar

MODULE

wxStatusBar

MODULE SUMMARY

See external documentation: wxStatusBar.

DESCRIPTION

See external documentation: wxStatusBar.

This class is derived (and can use functions) from:
wxWindow
wxEvtHandler

DATA TYPES

wxStatusBar()

An object reference, The representation is internal and can be changed without notice. It can't be used for comparsion stored on disc or distributed for use on other nodes.

EXPORTS

new() -> wxStatusBar()

new(Parent) -> wxStatusBar()

Types:

Parent = wxWindow() (see module wxWindow)

Equivalent to new(Parent, []).

new(Parent, Option::[Option]) -> wxStatusBar()

Types:

Parent = wxWindow() (see module wxWindow)
Option = {winid, integer()} | {style, integer()}

create(This, Parent) -> boolean()

Types:

This = wxStatusBar()
Parent = wxWindow() (see module wxWindow)

Equivalent to create(This, Parent, []).

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

Types:

This = wxStatusBar()
Parent = wxWindow() (see module wxWindow)
Option = {winid, integer()} | {style, integer()}

getFieldRect(This, I) -> Result

Types:

Result = {Res::boolean(), Rect::{X::integer(), Y::integer(), W::integer(), H::integer()}}
This = wxStatusBar()
I = integer()

getFieldsCount(This) -> integer()

Types:

This = wxStatusBar()

getStatusText(This) -> charlist() (see module unicode)

Types:

This = wxStatusBar()

Equivalent to getStatusText(This, []).

getStatusText(This, Option::[Option]) -> charlist() (see module unicode)

Types:

This = wxStatusBar()
Option = {number, integer()}

popStatusText(This) -> ok

Types:

This = wxStatusBar()

Equivalent to popStatusText(This, []).

popStatusText(This, Option::[Option]) -> ok

Types:

This = wxStatusBar()
Option = {number, integer()}

pushStatusText(This, Text) -> ok

Types:

This = wxStatusBar()
Text = chardata() (see module unicode)

pushStatusText(This, Text, Option::[Option]) -> ok

Types:

This = wxStatusBar()
Text = chardata() (see module unicode)
Option = {number, integer()}

setFieldsCount(This, Number) -> ok

Types:

This = wxStatusBar()
Number = integer()

setFieldsCount(This, Number, Option::[Option]) -> ok

Types:

This = wxStatusBar()
Number = integer()
Option = {widths, [integer()]}

setMinHeight(This, Height) -> ok

Types:

This = wxStatusBar()
Height = integer()

setStatusText(This, Text) -> ok

Types:

This = wxStatusBar()
Text = chardata() (see module unicode)

setStatusText(This, Text, Option::[Option]) -> ok

Types:

This = wxStatusBar()
Text = chardata() (see module unicode)
Option = {number, integer()}

setStatusWidths(This, Widths_field) -> ok

Types:

This = wxStatusBar()
Widths_field = [integer()]

setStatusStyles(This, Styles) -> ok

Types:

This = wxStatusBar()
Styles = [integer()]

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

Destroys this object, do not use object again