1wxShowEvent(3) Erlang Module Definition wxShowEvent(3)
2
3
4
6 wxShowEvent - Functions for wxShowEvent class
7
9 An event being sent when the window is shown or hidden. The event is
10 triggered by calls to wxWindow:show/2, and any user action showing a
11 previously hidden window or vice versa (if allowed by the current plat‐
12 form and/or window manager). Notice that the event is not triggered
13 when the application is iconized (minimized) or restored under wxMSW.
14
15 See: Overview events, wxWindow:show/2, wxWindow:isShown/1
16
17 This class is derived (and can use functions) from: wxEvent
18
19 wxWidgets docs: wxShowEvent
20
22 Use wxEvtHandler:connect/3 with wxShowEventType to subscribe to events
23 of this type.
24
26 wxShowEvent() = wx:wx_object()
27
28 wxShow() =
29 #wxShow{type = wxShowEvent:wxShowEventType(),
30 show = boolean()}
31
32 wxShowEventType() = show
33
35 setShow(This, Show) -> ok
36
37 Types:
38
39 This = wxShowEvent()
40 Show = boolean()
41
42 Set whether the windows was shown or hidden.
43
44 isShown(This) -> boolean()
45
46 Types:
47
48 This = wxShowEvent()
49
50 Return true if the window has been shown, false if it has been
51 hidden.
52
53
54
55wxWidgets team. wx 2.2.2 wxShowEvent(3)