Codebase list ruby-fxruby / f762db3d-88aa-4cf6-acc2-33e3fa65a958/upstream/1.6.45+git20230102.1.821f5a9 rdoc-sources / FXDragCorner.rb
f762db3d-88aa-4cf6-acc2-33e3fa65a958/upstream/1.6.45+git20230102.1.821f5a9

Tree @f762db3d-88aa-4cf6-acc2-33e3fa65a958/upstream/1.6.45+git20230102.1.821f5a9 (Download .tar.gz)

FXDragCorner.rb @f762db3d-88aa-4cf6-acc2-33e3fa65a958/upstream/1.6.45+git20230102.1.821f5a9raw · 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