wxPickerBase

wxPickerBase

wxPickerBase
Functions for wxPickerBase class

Base abstract class for all pickers which support an auxiliary text control.

This class handles all positioning and sizing of the text control like a an horizontal wxBoxSizer would do, with the text control on the left of the picker button.

The proportion (see wxSizer documentation for more info about proportion values) of the picker control defaults to 1 when there isn't a text control associated (see wxPB_USE_TEXTCTRL style) and to 0 otherwise.

Styles

This class supports the following styles:

See: wxColourPickerCtrl

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

wxWidgets docs: wxPickerBase

Types

Margin = integer()

Sets the margin (in pixel) between the picker and the text control.

This function can be used only when hasTextCtrl/1 returns true.

Types

Returns the margin (in pixel) between the picker and the text control.

This function can be used only when hasTextCtrl/1 returns true.

Types

Prop = integer()

Sets the proportion value of the text control.

Look at the detailed description of wxPickerBase for more info.

This function can be used only when hasTextCtrl/1 returns true.

Types

Prop = integer()

Sets the proportion value of the picker.

Look at the detailed description of wxPickerBase for more info.

Types

Returns the proportion value of the text control.

This function can be used only when hasTextCtrl/1 returns true.

Types

Returns the proportion value of the picker.

Types

Returns true if this window has a valid text control (i.e. if the wxPB_USE_TEXTCTRL style was given when creating this control).

Types

Returns a pointer to the text control handled by this window or NULL if the wxPB_USE_TEXTCTRL style was not specified when this control was created.

Remark: The contents of the text control could be an invalid representation of the entity which can be chosen through the picker (e.g. when the user enters an invalid colour syntax because of a typo). Thus you should never parse the content of the textctrl to get the user's input; rather use the derived-class getter (e.g. wxColourPickerCtrl:getColour/1, wxFilePickerCtrl:getPath/1, etc).

Types

Option = {grow, boolean()}

Sets the picker control as growable when grow is true.

Types

Option = {grow, boolean()}

Sets the text control as growable when grow is true.

This function can be used only when hasTextCtrl/1 returns true.

Types

Returns true if the picker control is growable.