Sha256: 742bd11a62875e09c281c207448bdf671095405edde6db22101bb630f131a9a9
Contents?: true
Size: 1.19 KB
Versions: 1
Compression:
Stored size: 1.19 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} # 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
wxruby3-0.9.1-x64-mingw-ucrt | lib/wx/doc/gen/dial_up_event.rb |