Codebase list ruby-fxruby / run/530a6e8f-4133-47b1-8a38-1ec1435bd9bf/main rdoc-sources / FXDragCorner.rb
run/530a6e8f-4133-47b1-8a38-1ec1435bd9bf/main

Tree @run/530a6e8f-4133-47b1-8a38-1ec1435bd9bf/main (Download .tar.gz)

FXDragCorner.rb @run/530a6e8f-4133-47b1-8a38-1ec1435bd9bf/mainraw · history · blame

module Fox
  #
  # A drag corner widget may be placed in the bottom right corner
  # so as to allow the window to be resized more easily.
  #
  class FXDragCorner < FXWindow

    # Highlight color {FXColor}
    attr_accessor :hiliteColor

    # Shadow color {FXColor}
    attr_accessor :shadowColor

    # Construct a drag corner
    def initialize(p) # :yields: theDragCorner
    end
  end
end