Sha256: 4cf79a23f90e1c74645d4ac767d20acfff19375206b445187ceebf0a933005cf

Contents?: true

Size: 869 Bytes

Versions: 13

Compression:

Stored size: 869 Bytes

Contents

module Fox
  #
  # The FXMenuCheck widget is used to change a state in the application from a menu.
  # Menu checks may reflect the state of the application by graying out, becoming
  # hidden, or by a check mark.
  #
  # === Events
  #
  # The following messages are sent by FXMenuCheck to its target:
  #
  # +SEL_KEYPRESS+::		sent when a key goes down; the message data is an FXEvent instance.
  # +SEL_KEYRELEASE+::		sent when a key goes up; the message data is an FXEvent instance.
  # +SEL_COMMAND+::		sent when the command is activated
  #
  class FXMenuCheck < FXMenuCommand

    # Check state, one of +TRUE+, +FALSE+ or +MAYBE+
    attr_accessor :check
    
    # Box background color [FXColor]
    attr_accessor :boxColor

    #
    # Construct a menu check
    #
    def initialize(p, text, tgt=nil, sel=0, opts=0) # :yields: theMenuCheck
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
fxruby-1.2.3 rdoc-sources/FXMenuCheck.rb
fxruby-1.2.2 rdoc-sources/FXMenuCheck.rb
fxruby-1.2.4 rdoc-sources/FXMenuCheck.rb
fxruby-1.2.5 rdoc-sources/FXMenuCheck.rb
fxruby-1.2.6 rdoc-sources/FXMenuCheck.rb
fxruby-1.4.0 rdoc-sources/FXMenuCheck.rb
fxruby-1.4.2 rdoc-sources/FXMenuCheck.rb
fxruby-1.4.1 rdoc-sources/FXMenuCheck.rb
fxruby-1.4.3 rdoc-sources/FXMenuCheck.rb
fxruby-1.4.4 rdoc-sources/FXMenuCheck.rb
fxruby-1.4.5 rdoc-sources/FXMenuCheck.rb
fxruby-1.4.6 rdoc-sources/FXMenuCheck.rb
fxruby-1.4.7 rdoc-sources/FXMenuCheck.rb