Codebase list ruby-fxruby / 26d430eb-818e-465d-b650-12ea01565136/main rdoc-sources / FXMenuSeparator.rb
26d430eb-818e-465d-b650-12ea01565136/main

Tree @26d430eb-818e-465d-b650-12ea01565136/main (Download .tar.gz)

FXMenuSeparator.rb @26d430eb-818e-465d-b650-12ea01565136/mainraw · 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