Sha256: a7cb3480968d156102ba0adcd41b79e733a8c7141f3aa45db3a21b594eab8adf
Contents?: true
Size: 1.04 KB
Versions: 2
Compression:
Stored size: 1.04 KB
Contents
# :stopdoc: # Copyright (c) 2023 M.J.N. Corino, The Netherlands # # This software is released under the MIT license. # :startdoc: module Wx class Event # Constructor # @param [Integer] evt_type # @param [Integer] id # @param [Wx::EventPropagation] prop_level def initialize(evt_type = Wx::EVT_NULL, id = 0, prop_level = Wx::EVENT_PROPAGATE_NONE) end # Returns a copy of the event. # Any event that is posted to the wxRuby event system for later action (via {Wx::EvtHandler#add_pending_event}, # {Wx::EvtHandler#queue_event} or {Wx::EvtHandler#post_event}) must implement this method. # All standard wxRuby events fully implement this method and wxRuby has taken care of correctly handling this # for any user defined event classes derived from either Wx::Event or Wx::CommandEvent. # Creating user defined event classes derived for other classes than Wx::Event or Wx::CommandEvent is currently # *not* supported in wxRuby. # @return [Wx::Event] def clone; end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
wxruby3-0.9.2-x64-mingw-ucrt | lib/wx/doc/event.rb |
wxruby3-0.9.1-x64-mingw-ucrt | lib/wx/doc/event.rb |