Class: Wx::DialUpEvent
- Defined in:
- lib/wx/doc/gen/dial_up_event.rb
Overview
This is the event class for the dialup events sent by DialUpManager.
Category: Events
Instance Method Summary collapse
-
#initialize(isConnected, isOwnEvent) ⇒ Wx::DialUpEvent
constructor
Constructor is only used by DialUpManager.
-
#is_connected_event ⇒ Boolean
(also: #connected_event?)
Is this a CONNECTED or DISCONNECTED event? In other words, does it notify about transition from offline to online state or vice versa?.
-
#is_own_event ⇒ Boolean
(also: #own_event?)
Does this event come from Wx::DialUpManager#dial or from some external process (i.e.
Methods inherited from Event
#clone, #get_event_category, #get_event_object, #get_event_type, #get_id, #get_skipped, #get_timestamp, #is_command_event, #resume_propagation, #set_event_object, #set_event_type, #set_id, #set_timestamp, #should_propagate, #skip, #stop_propagation
Methods inherited from Object
#clone, #dup, #is_same_as, #un_share
Constructor Details
#initialize(isConnected, isOwnEvent) ⇒ Wx::DialUpEvent
Constructor is only used by Wx::DialUpManager.
26 |
# File 'lib/wx/doc/gen/dial_up_event.rb', line 26 def initialize(isConnected, isOwnEvent) end |
Instance Method Details
#is_connected_event ⇒ Boolean Also known as: connected_event?
Is this a CONNECTED or DISCONNECTED event? In other words, does it notify about transition from offline to online state or vice versa?
30 |
# File 'lib/wx/doc/gen/dial_up_event.rb', line 30 def is_connected_event; end |
#is_own_event ⇒ Boolean Also known as: own_event?
Does this event come from Wx::DialUpManager#dial or from some external process (i.e.
does it result from our own attempt to establish the connection)?
37 |
# File 'lib/wx/doc/gen/dial_up_event.rb', line 37 def is_own_event; end |