Codebase list ruby-fxruby / 5c2d0227-fc30-4ad3-b307-ed5ef791dacb/upstream rdoc-sources / FXMenuSeparator.rb
5c2d0227-fc30-4ad3-b307-ed5ef791dacb/upstream

Tree @5c2d0227-fc30-4ad3-b307-ed5ef791dacb/upstream (Download .tar.gz)

FXMenuSeparator.rb @5c2d0227-fc30-4ad3-b307-ed5ef791dacb/upstreamraw · history · blame

module Fox
  #
  # The menu separator is a simple decorative groove
  # used to delineate items in a popup menu.
  #
  class FXMenuSeparator < FXWindow

    # Highlight color {FXColor}
    attr_accessor :hiliteColor

    # Shadow color {FXColor}
    attr_accessor :shadowColor

    #
    # Construct a menu separator
    #
    def initialize(parent, opts=0) # :yields: theMenuSeparator
    end
  end
end