Sha256: 6a2aeedaaba4bff6c57caafebfdb4073c6e3e56c0431791997c07c9ff478831d
Contents?: true
Size: 1.22 KB
Versions: 3
Compression:
Stored size: 1.22 KB
Contents
# :stopdoc: # This file is automatically generated by the WXRuby3 documentation # generator. Do not alter this file. # :startdoc: module Wx # connected event EVT_DIALUP_CONNECTED = 10199 # disconnected event EVT_DIALUP_DISCONNECTED = 10200 # This is the event class for the dialup events sent by {Wx::DialUpManager}. # # Category: {Wx::Events} # # @wxrb_require USE_DIALUP_MANAGER class DialUpEvent < Event # Constructor is only used by {Wx::DialUpManager}. # @param isConnected [Boolean] # @param isOwnEvent [Boolean] # @return [Wx::DialUpEvent] def initialize(isConnected, isOwnEvent) end # Is this a CONNECTED or DISCONNECTED event? In other words, does it notify about transition from offline to online state or vice versa? # @return [Boolean] def is_connected_event; end alias_method :connected_event?, :is_connected_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)? # @return [Boolean] def is_own_event; end alias_method :own_event?, :is_own_event end # DialUpEvent end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
wxruby3-0.9.5-x64-mingw-ucrt | lib/wx/doc/gen/dial_up_event.rb |
wxruby3-0.9.4-x64-mingw-ucrt | lib/wx/doc/gen/dial_up_event.rb |
wxruby3-0.9.3-x64-mingw-ucrt | lib/wx/doc/gen/dial_up_event.rb |