Codebase list ruby-fxruby / 6a3bc375-f65d-4a5f-9572-148c411aee7b/upstream rdoc-sources / FXDragCorner.rb
6a3bc375-f65d-4a5f-9572-148c411aee7b/upstream

Tree @6a3bc375-f65d-4a5f-9572-148c411aee7b/upstream (Download .tar.gz)

FXDragCorner.rb @6a3bc375-f65d-4a5f-9572-148c411aee7b/upstreamraw · 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