.TH wxShowEvent 3erl "wx 2.4.1" "wxWidgets team." "Erlang Module Definition" .SH NAME wxShowEvent \- Functions for wxShowEvent class .SH DESCRIPTION .LP An event being sent when the window is shown or hidden\&. The event is triggered by calls to \fIwxWindow:show/2\fR\&, 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\&. .LP See: Overview events, \fIwxWindow:show/2\fR\&, \fIwxWindow:isShown/1\fR\& .LP This class is derived (and can use functions) from: \fIwxEvent\fR\& .LP wxWidgets docs: wxShowEvent .SH "EVENTS" .LP Use \fIwxEvtHandler:connect/3\fR\& with \fIwxShowEventType\fR\& to subscribe to events of this type\&. .SH DATA TYPES .nf \fBwxShowEvent()\fR\& = wx:wx_object() .br .fi .nf \fBwxShow()\fR\& = .br #wxShow{type = wxShowEvent:wxShowEventType(), .br show = boolean()} .br .fi .nf \fBwxShowEventType()\fR\& = show .br .fi .SH EXPORTS .LP .nf .B setShow(This, Show) -> ok .br .fi .br .RS .LP Types: .RS 3 This = wxShowEvent() .br Show = boolean() .br .RE .RE .RS .LP Set whether the windows was shown or hidden\&. .RE .LP .nf .B isShown(This) -> boolean() .br .fi .br .RS .LP Types: .RS 3 This = wxShowEvent() .br .RE .RE .RS .LP Return true if the window has been shown, false if it has been hidden\&. .RE