Codebase list ruby-fxruby / 9f4456fc-32ad-43a9-a608-20ce7e4383cd/upstream rdoc-sources / FXMenuSeparator.rb
9f4456fc-32ad-43a9-a608-20ce7e4383cd/upstream

Tree @9f4456fc-32ad-43a9-a608-20ce7e4383cd/upstream (Download .tar.gz)

FXMenuSeparator.rb @9f4456fc-32ad-43a9-a608-20ce7e4383cd/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