wxErlang

Reference Manual

Version 2.0

Table of Contents

wxShowEvent

Module

wxShowEvent

Module Summary

Functions for wxShowEvent class

Description

An event being sent when the window is shown or hidden. The event is triggered by calls to wxWindow:show/2, and any user action showing a previously hidden window or vice versa (if allowed by the current platform and/or window manager). Notice that the event is not triggered when the application is iconized (minimized) or restored under wxMSW.

See: Overview events, wxWindow:show/2, wxWindow:isShown/1

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

wxWidgets docs: wxShowEvent

Events

Use wxEvtHandler:connect/3 with wxShowEventType to subscribe to events of this type.

Data Types

wxShow() =
    #wxShow{type = wxShowEvent:wxShowEventType(),
            show = boolean()}

setShow(This, Show) -> ok

Types

Show = boolean()

Set whether the windows was shown or hidden.

isShown(This) -> boolean()

Types

Return true if the window has been shown, false if it has been hidden.